Interface CfnSimpleADProps
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnSimpleADProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
           date="2023-06-19T16:29:56.275Z")
@Stability(Stable)
public interface CfnSimpleADProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a 
CfnSimpleAD.
 Example:
 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.directoryservice.*;
 CfnSimpleADProps cfnSimpleADProps = CfnSimpleADProps.builder()
         .name("name")
         .size("size")
         .vpcSettings(VpcSettingsProperty.builder()
                 .subnetIds(List.of("subnetIds"))
                 .vpcId("vpcId")
                 .build())
         // the properties below are optional
         .createAlias(false)
         .description("description")
         .enableSso(false)
         .password("password")
         .shortName("shortName")
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSimpleADPropsstatic final classAn implementation forCfnSimpleADProps
- 
Method SummaryModifier and TypeMethodDescriptionstatic CfnSimpleADProps.Builderbuilder()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.getName()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.getSize()The size of the directory.A DirectoryVpcSettings object that contains additional information for the operation.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getNameThe fully qualified name for the directory, such ascorp.example.com.
- 
getSizeThe size of the directory.For valid values, see CreateDirectory in the AWS Directory Service API Reference . 
- 
getVpcSettingsA DirectoryVpcSettings object that contains additional information for the operation.
- 
getCreateAliasIf 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. 
- 
getDescriptionA description for the directory.
- 
getEnableSsoWhether to enable single sign-on for a directory.If you don't specify a value, AWS CloudFormation disables single sign-on by default. 
- 
getPasswordThe 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 AWS Directory Service API Reference . 
- 
getShortNameThe NetBIOS name of the directory, such asCORP.
- 
builder- Returns:
- a CfnSimpleADProps.BuilderofCfnSimpleADProps
 
 
-