Interface CfnDirectoryConfigProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDirectoryConfigProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:40:45.293Z")
@Stability(Stable)
public interface CfnDirectoryConfigProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnDirectoryConfig.
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())
// the properties below are optional
.certificateBasedAuthProperties(CertificateBasedAuthPropertiesProperty.builder()
.certificateAuthorityArn("certificateAuthorityArn")
.status("status")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDirectoryConfigPropsstatic final classAn implementation forCfnDirectoryConfigProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe certificate-based authentication properties used to authenticate SAML 2.0 Identity Provider (IdP) user identities to Active Directory domain-joined streaming instances.The fully qualified name of the directory (for example, corp.example.com).The distinguished names of the organizational units for computer accounts.The credentials for the service account used by the streaming instance to connect to the directory.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDirectoryName
The fully qualified name of the directory (for example, corp.example.com).- See Also:
-
getOrganizationalUnitDistinguishedNames
The distinguished names of the organizational units for computer accounts.- See Also:
-
getServiceAccountCredentials
The credentials for the service account used by the streaming instance to connect to the directory.Do not use this parameter directly. Use
ServiceAccountCredentialsas an input parameter withnoEchoas shown in the Parameters . For best practices information, see Do Not Embed Credentials in Your Templates .Returns union: either
IResolvableorCfnDirectoryConfig.ServiceAccountCredentialsProperty- See Also:
-
getCertificateBasedAuthProperties
The certificate-based authentication properties used to authenticate SAML 2.0 Identity Provider (IdP) user identities to Active Directory domain-joined streaming instances.Returns union: either
IResolvableorCfnDirectoryConfig.CertificateBasedAuthPropertiesProperty- See Also:
-
builder
- Returns:
- a
CfnDirectoryConfigProps.BuilderofCfnDirectoryConfigProps
-