Interface CfnDirectoryConfigMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDirectoryConfigMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:55.907Z")
@Stability(Stable)
public interface CfnDirectoryConfigMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnDirectoryConfigPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.appstream.*;
CfnDirectoryConfigMixinProps cfnDirectoryConfigMixinProps = CfnDirectoryConfigMixinProps.builder()
.certificateBasedAuthProperties(CertificateBasedAuthPropertiesProperty.builder()
.certificateAuthorityArn("certificateAuthorityArn")
.status("status")
.build())
.directoryName("directoryName")
.organizationalUnitDistinguishedNames(List.of("organizationalUnitDistinguishedNames"))
.serviceAccountCredentials(ServiceAccountCredentialsProperty.builder()
.accountName("accountName")
.accountPassword("accountPassword")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDirectoryConfigMixinPropsstatic final classAn implementation forCfnDirectoryConfigMixinProps -
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.default StringThe fully qualified name of the directory (for example, corp.example.com).The distinguished names of the organizational units for computer accounts.default ObjectThe 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
-
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
IResolvableorCfnDirectoryConfigPropsMixin.CertificateBasedAuthPropertiesProperty- See Also:
-
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
IResolvableorCfnDirectoryConfigPropsMixin.ServiceAccountCredentialsProperty- See Also:
-
builder
-