Interface CfnSimpleADMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSimpleADMixinProps.Jsii$Proxy
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.directoryservice.*;
CfnSimpleADMixinProps cfnSimpleADMixinProps = CfnSimpleADMixinProps.builder()
.createAlias(false)
.description("description")
.enableSso(false)
.name("name")
.password("password")
.shortName("shortName")
.size("size")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.vpcSettings(VpcSettingsProperty.builder()
.subnetIds(List.of("subnetIds"))
.vpcId("vpcId")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSimpleADMixinPropsstatic final classAn implementation forCfnSimpleADMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectIf set totrue, specifies an alias for a directory and assigns the alias to the directory.default StringA description for the directory.default ObjectWhether to enable single sign-on for a directory.default StringgetName()The fully qualified name for the directory, such ascorp.example.com.default StringThe password for the directory administrator.default StringThe NetBIOS name of the directory, such asCORP.default StringgetSize()The size of the directory.getTags()default ObjectA DirectoryVpcSettings object that contains additional information for the operation.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCreateAlias
If set totrue, specifies an alias for a directory and assigns the alias to the directory.The alias is used to construct the access URL for the directory, such as
http://<alias>.awsapps.com. By default, this property is set tofalse.After an alias has been created, it cannot be deleted or reused, so this operation should only be used when absolutely necessary.
Returns union: either
BooleanorIResolvable- See Also:
-
getDescription
A description for the directory.- See Also:
-
getEnableSso
Whether to enable single sign-on for a directory.If you don't specify a value, CloudFormation disables single sign-on by default.
Returns union: either
BooleanorIResolvable- See Also:
-
getName
The fully qualified name for the directory, such ascorp.example.com.- See Also:
-
getPassword
The password for the directory administrator.The directory creation process creates a directory administrator account with the user name
Administratorand this password.If you need to change the password for the administrator account, see the ResetUserPassword API call in the Directory Service API Reference .
- See Also:
-
getShortName
The NetBIOS name of the directory, such asCORP.- See Also:
-
getSize
The size of the directory.For valid values, see CreateDirectory in the Directory Service API Reference .
- See Also:
-
getTags
- See Also:
-
getVpcSettings
A DirectoryVpcSettings object that contains additional information for the operation.Returns union: either
IResolvableorCfnSimpleADPropsMixin.VpcSettingsProperty- See Also:
-
builder
- Returns:
- a
CfnSimpleADMixinProps.BuilderofCfnSimpleADMixinProps
-