Interface CfnMicrosoftADProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMicrosoftADProps.Jsii$Proxy
CfnMicrosoftAD
.
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.*; CfnMicrosoftADProps cfnMicrosoftADProps = CfnMicrosoftADProps.builder() .name("name") .password("password") .vpcSettings(VpcSettingsProperty.builder() .subnetIds(List.of("subnetIds")) .vpcId("vpcId") .build()) // the properties below are optional .createAlias(false) .edition("edition") .enableSso(false) .shortName("shortName") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnMicrosoftADProps
static final class
An implementation forCfnMicrosoftADProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnMicrosoftADProps.Builder
builder()
default Object
Specifies an alias for a directory and assigns the alias to the directory.default String
AWS Managed Microsoft AD is available in two editions:Standard
andEnterprise
.default Object
Whether to enable single sign-on for a Microsoft Active Directory in AWS .getName()
The fully qualified domain name for the AWS Managed Microsoft AD directory, such ascorp.example.com
.The password for the default administrative user namedAdmin
.default String
The NetBIOS name for your domain, such asCORP
.Specifies the VPC settings of the Microsoft AD directory server in AWS .Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The fully qualified domain name for the AWS Managed Microsoft AD directory, such ascorp.example.com
. This name will resolve inside your VPC only. It does not need to be publicly resolvable. -
getPassword
The password for the default administrative user namedAdmin
.If you need to change the password for the administrator account, see the ResetUserPassword API call in the AWS Directory Service API Reference .
-
getVpcSettings
Specifies the VPC settings of the Microsoft AD directory server in AWS . -
getCreateAlias
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, AWS CloudFormation does not create an alias.After an alias has been created, it cannot be deleted or reused, so this operation should only be used when absolutely necessary.
-
getEdition
AWS Managed Microsoft AD is available in two editions:Standard
andEnterprise
.Enterprise
is the default. -
getEnableSso
Whether to enable single sign-on for a Microsoft Active Directory in AWS .Single sign-on allows users in your directory to access certain AWS services from a computer joined to the directory without having to enter their credentials separately. If you don't specify a value, AWS CloudFormation disables single sign-on by default.
-
getShortName
The NetBIOS name for your domain, such asCORP
.If you don't specify a NetBIOS name, it will default to the first part of your directory DNS. For example,
CORP
for the directory DNScorp.example.com
. -
builder
- Returns:
- a
CfnMicrosoftADProps.Builder
ofCfnMicrosoftADProps
-