@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.625Z") @Stability(value=Stable) public interface CfnDirectoryConfigProps 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.appstream.*;
CfnDirectoryConfigProps cfnDirectoryConfigProps = CfnDirectoryConfigProps.builder()
.directoryName("directoryName")
.organizationalUnitDistinguishedNames(List.of("organizationalUnitDistinguishedNames"))
.serviceAccountCredentials(ServiceAccountCredentialsProperty.builder()
.accountName("accountName")
.accountPassword("accountPassword")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDirectoryConfigProps.Builder
A builder for
CfnDirectoryConfigProps |
static class |
CfnDirectoryConfigProps.Jsii$Proxy
An implementation for
CfnDirectoryConfigProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnDirectoryConfigProps.Builder |
builder() |
String |
getDirectoryName()
The fully qualified name of the directory (for example, corp.example.com).
|
List<String> |
getOrganizationalUnitDistinguishedNames()
The distinguished names of the organizational units for computer accounts.
|
Object |
getServiceAccountCredentials()
The credentials for the service account used by the streaming instance to connect to the directory.
|
@Stability(value=Stable) @NotNull String getDirectoryName()
@Stability(value=Stable) @NotNull List<String> getOrganizationalUnitDistinguishedNames()
@Stability(value=Stable) @NotNull Object getServiceAccountCredentials()
Do not use this parameter directly. Use ServiceAccountCredentials as an input parameter with noEcho as shown in the Parameters . For best practices information, see Do Not Embed Credentials in Your Templates .
@Stability(value=Stable) static CfnDirectoryConfigProps.Builder builder()
CfnDirectoryConfigProps.Builder of CfnDirectoryConfigPropsCopyright © 2022. All rights reserved.