Documentation
¶
Index ¶
- func CfnMicrosoftAD_CFN_RESOURCE_TYPE_NAME() *string
- func CfnMicrosoftAD_IsCfnElement(x interface{}) *bool
- func CfnMicrosoftAD_IsCfnResource(construct constructs.IConstruct) *bool
- func CfnMicrosoftAD_IsConstruct(x interface{}) *bool
- func CfnSimpleAD_CFN_RESOURCE_TYPE_NAME() *string
- func CfnSimpleAD_IsCfnElement(x interface{}) *bool
- func CfnSimpleAD_IsCfnResource(construct constructs.IConstruct) *bool
- func CfnSimpleAD_IsConstruct(x interface{}) *bool
- func NewCfnMicrosoftAD_Override(c CfnMicrosoftAD, scope constructs.Construct, id *string, ...)
- func NewCfnSimpleAD_Override(c CfnSimpleAD, scope constructs.Construct, id *string, props *CfnSimpleADProps)
- type CfnMicrosoftAD
- type CfnMicrosoftADProps
- type CfnMicrosoftAD_VpcSettingsProperty
- type CfnSimpleAD
- type CfnSimpleADProps
- type CfnSimpleAD_VpcSettingsProperty
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CfnMicrosoftAD_CFN_RESOURCE_TYPE_NAME ¶
func CfnMicrosoftAD_CFN_RESOURCE_TYPE_NAME() *string
func CfnMicrosoftAD_IsCfnElement ¶
func CfnMicrosoftAD_IsCfnElement(x interface{}) *bool
Returns `true` if a construct is a stack element (i.e. part of the synthesized cloudformation template).
Uses duck-typing instead of `instanceof` to allow stack elements from different versions of this library to be included in the same stack.
Returns: The construct as a stack element or undefined if it is not a stack element.
func CfnMicrosoftAD_IsCfnResource ¶
func CfnMicrosoftAD_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource.
func CfnMicrosoftAD_IsConstruct ¶
func CfnMicrosoftAD_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Returns: true if `x` is an object created from a class which extends `Construct`. Deprecated: use `x instanceof Construct` instead
func CfnSimpleAD_CFN_RESOURCE_TYPE_NAME ¶
func CfnSimpleAD_CFN_RESOURCE_TYPE_NAME() *string
func CfnSimpleAD_IsCfnElement ¶
func CfnSimpleAD_IsCfnElement(x interface{}) *bool
Returns `true` if a construct is a stack element (i.e. part of the synthesized cloudformation template).
Uses duck-typing instead of `instanceof` to allow stack elements from different versions of this library to be included in the same stack.
Returns: The construct as a stack element or undefined if it is not a stack element.
func CfnSimpleAD_IsCfnResource ¶
func CfnSimpleAD_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource.
func CfnSimpleAD_IsConstruct ¶
func CfnSimpleAD_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Returns: true if `x` is an object created from a class which extends `Construct`. Deprecated: use `x instanceof Construct` instead
func NewCfnMicrosoftAD_Override ¶
func NewCfnMicrosoftAD_Override(c CfnMicrosoftAD, scope constructs.Construct, id *string, props *CfnMicrosoftADProps)
Create a new `AWS::DirectoryService::MicrosoftAD`.
func NewCfnSimpleAD_Override ¶
func NewCfnSimpleAD_Override(c CfnSimpleAD, scope constructs.Construct, id *string, props *CfnSimpleADProps)
Create a new `AWS::DirectoryService::SimpleAD`.
Types ¶
type CfnMicrosoftAD ¶
type CfnMicrosoftAD interface {
awscdk.CfnResource
awscdk.IInspectable
AttrAlias() *string
AttrDnsIpAddresses() *[]*string
CfnOptions() awscdk.ICfnResourceOptions
CfnProperties() *map[string]interface{}
CfnResourceType() *string
CreateAlias() interface{}
SetCreateAlias(val interface{})
CreationStack() *[]*string
Edition() *string
SetEdition(val *string)
EnableSso() interface{}
SetEnableSso(val interface{})
LogicalId() *string
Name() *string
SetName(val *string)
Node() constructs.Node
Password() *string
SetPassword(val *string)
Ref() *string
ShortName() *string
SetShortName(val *string)
Stack() awscdk.Stack
UpdatedProperites() *map[string]interface{}
VpcSettings() interface{}
SetVpcSettings(val interface{})
AddDeletionOverride(path *string)
AddDependsOn(target awscdk.CfnResource)
AddMetadata(key *string, value interface{})
AddOverride(path *string, value interface{})
AddPropertyDeletionOverride(propertyPath *string)
AddPropertyOverride(propertyPath *string, value interface{})
ApplyRemovalPolicy(policy awscdk.RemovalPolicy, options *awscdk.RemovalPolicyOptions)
GetAtt(attributeName *string) awscdk.Reference
GetMetadata(key *string) interface{}
Inspect(inspector awscdk.TreeInspector)
OverrideLogicalId(newLogicalId *string)
RenderProperties(props *map[string]interface{}) *map[string]interface{}
ShouldSynthesize() *bool
ToString() *string
ValidateProperties(_properties interface{})
}
A CloudFormation `AWS::DirectoryService::MicrosoftAD`.
TODO: EXAMPLE
func NewCfnMicrosoftAD ¶
func NewCfnMicrosoftAD(scope constructs.Construct, id *string, props *CfnMicrosoftADProps) CfnMicrosoftAD
Create a new `AWS::DirectoryService::MicrosoftAD`.
type CfnMicrosoftADProps ¶
type CfnMicrosoftADProps struct {
// `AWS::DirectoryService::MicrosoftAD.CreateAlias`.
CreateAlias interface{} `json:"createAlias"`
// `AWS::DirectoryService::MicrosoftAD.Edition`.
Edition *string `json:"edition"`
// `AWS::DirectoryService::MicrosoftAD.EnableSso`.
EnableSso interface{} `json:"enableSso"`
// `AWS::DirectoryService::MicrosoftAD.Name`.
Name *string `json:"name"`
// `AWS::DirectoryService::MicrosoftAD.Password`.
Password *string `json:"password"`
// `AWS::DirectoryService::MicrosoftAD.ShortName`.
ShortName *string `json:"shortName"`
// `AWS::DirectoryService::MicrosoftAD.VpcSettings`.
VpcSettings interface{} `json:"vpcSettings"`
}
Properties for defining a `AWS::DirectoryService::MicrosoftAD`.
TODO: EXAMPLE
type CfnMicrosoftAD_VpcSettingsProperty ¶
type CfnMicrosoftAD_VpcSettingsProperty struct {
// `CfnMicrosoftAD.VpcSettingsProperty.SubnetIds`.
SubnetIds *[]*string `json:"subnetIds"`
// `CfnMicrosoftAD.VpcSettingsProperty.VpcId`.
VpcId *string `json:"vpcId"`
}
TODO: EXAMPLE
type CfnSimpleAD ¶
type CfnSimpleAD interface {
awscdk.CfnResource
awscdk.IInspectable
AttrAlias() *string
AttrDnsIpAddresses() *[]*string
CfnOptions() awscdk.ICfnResourceOptions
CfnProperties() *map[string]interface{}
CfnResourceType() *string
CreateAlias() interface{}
SetCreateAlias(val interface{})
CreationStack() *[]*string
Description() *string
SetDescription(val *string)
EnableSso() interface{}
SetEnableSso(val interface{})
LogicalId() *string
Name() *string
SetName(val *string)
Node() constructs.Node
Password() *string
SetPassword(val *string)
Ref() *string
ShortName() *string
SetShortName(val *string)
Size() *string
SetSize(val *string)
Stack() awscdk.Stack
UpdatedProperites() *map[string]interface{}
VpcSettings() interface{}
SetVpcSettings(val interface{})
AddDeletionOverride(path *string)
AddDependsOn(target awscdk.CfnResource)
AddMetadata(key *string, value interface{})
AddOverride(path *string, value interface{})
AddPropertyDeletionOverride(propertyPath *string)
AddPropertyOverride(propertyPath *string, value interface{})
ApplyRemovalPolicy(policy awscdk.RemovalPolicy, options *awscdk.RemovalPolicyOptions)
GetAtt(attributeName *string) awscdk.Reference
GetMetadata(key *string) interface{}
Inspect(inspector awscdk.TreeInspector)
OverrideLogicalId(newLogicalId *string)
RenderProperties(props *map[string]interface{}) *map[string]interface{}
ShouldSynthesize() *bool
ToString() *string
ValidateProperties(_properties interface{})
}
A CloudFormation `AWS::DirectoryService::SimpleAD`.
TODO: EXAMPLE
func NewCfnSimpleAD ¶
func NewCfnSimpleAD(scope constructs.Construct, id *string, props *CfnSimpleADProps) CfnSimpleAD
Create a new `AWS::DirectoryService::SimpleAD`.
type CfnSimpleADProps ¶
type CfnSimpleADProps struct {
// `AWS::DirectoryService::SimpleAD.CreateAlias`.
CreateAlias interface{} `json:"createAlias"`
// `AWS::DirectoryService::SimpleAD.Description`.
Description *string `json:"description"`
// `AWS::DirectoryService::SimpleAD.EnableSso`.
EnableSso interface{} `json:"enableSso"`
// `AWS::DirectoryService::SimpleAD.Name`.
Name *string `json:"name"`
// `AWS::DirectoryService::SimpleAD.Password`.
Password *string `json:"password"`
// `AWS::DirectoryService::SimpleAD.ShortName`.
ShortName *string `json:"shortName"`
// `AWS::DirectoryService::SimpleAD.Size`.
Size *string `json:"size"`
// `AWS::DirectoryService::SimpleAD.VpcSettings`.
VpcSettings interface{} `json:"vpcSettings"`
}
Properties for defining a `AWS::DirectoryService::SimpleAD`.
TODO: EXAMPLE
type CfnSimpleAD_VpcSettingsProperty ¶
type CfnSimpleAD_VpcSettingsProperty struct {
// `CfnSimpleAD.VpcSettingsProperty.SubnetIds`.
SubnetIds *[]*string `json:"subnetIds"`
// `CfnSimpleAD.VpcSettingsProperty.VpcId`.
VpcId *string `json:"vpcId"`
}
TODO: EXAMPLE