@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.928Z") @Stability(value=Stable) public interface CfnSimpleADProps extends software.amazon.jsii.JsiiSerializable
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")
.password("password")
.size("size")
.vpcSettings(VpcSettingsProperty.builder()
.subnetIds(List.of("subnetIds"))
.vpcId("vpcId")
.build())
// the properties below are optional
.createAlias(false)
.description("description")
.enableSso(false)
.shortName("shortName")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnSimpleADProps.Builder
A builder for
CfnSimpleADProps |
static class |
CfnSimpleADProps.Jsii$Proxy
An implementation for
CfnSimpleADProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnSimpleADProps.Builder |
builder() |
default Object |
getCreateAlias()
If set to `true` , specifies an alias for a directory and assigns the alias to the directory.
|
default String |
getDescription()
A description for the directory.
|
default Object |
getEnableSso()
Whether to enable single sign-on for a directory.
|
String |
getName()
The fully qualified name for the directory, such as `corp.example.com` .
|
String |
getPassword()
The password for the directory administrator.
|
default String |
getShortName()
The NetBIOS name of the directory, such as `CORP` .
|
String |
getSize()
The size of the directory.
|
Object |
getVpcSettings()
A [DirectoryVpcSettings](https://docs.aws.amazon.com/directoryservice/latest/devguide/API_DirectoryVpcSettings.html) object that contains additional information for the operation.
|
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull String getPassword()
The directory creation process creates a directory administrator account with the user name Administrator and 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 .
@Stability(value=Stable) @NotNull String getSize()
For valid values, see CreateDirectory in the AWS Directory Service API Reference .
@Stability(value=Stable) @NotNull Object getVpcSettings()
@Stability(value=Stable) @Nullable default Object getCreateAlias()
The alias is used to construct the access URL for the directory, such as http://<alias>.awsapps.com . By default, this property is set to false .
After an alias has been created, it cannot be deleted or reused, so this operation should only be used when absolutely necessary.
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default Object getEnableSso()
If you don't specify a value, AWS CloudFormation disables single sign-on by default.
@Stability(value=Stable) @Nullable default String getShortName()
@Stability(value=Stable) static CfnSimpleADProps.Builder builder()
CfnSimpleADProps.Builder of CfnSimpleADPropsCopyright © 2022. All rights reserved.