CfnDirectoryConfigProps¶
-
class
aws_cdk.aws_appstream.
CfnDirectoryConfigProps
(*, directory_name, organizational_unit_distinguished_names, service_account_credentials)¶ Bases:
object
Properties for defining a
CfnDirectoryConfig
.- Parameters
directory_name (
str
) – The fully qualified name of the directory (for example, corp.example.com).organizational_unit_distinguished_names (
Sequence
[str
]) – The distinguished names of the organizational units for computer accounts.service_account_credentials (
Union
[IResolvable
,ServiceAccountCredentialsProperty
]) – The credentials for the service account used by the streaming instance to connect to the directory. Do not use this parameter directly. UseServiceAccountCredentials
as an input parameter withnoEcho
as shown in the Parameters . For best practices information, see Do Not Embed Credentials in Your Templates .
- Link
- ExampleMetadata
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appstream as appstream cfn_directory_config_props = appstream.CfnDirectoryConfigProps( directory_name="directoryName", organizational_unit_distinguished_names=["organizationalUnitDistinguishedNames"], service_account_credentials=appstream.CfnDirectoryConfig.ServiceAccountCredentialsProperty( account_name="accountName", account_password="accountPassword" ) )
Attributes
-
directory_name
¶ The fully qualified name of the directory (for example, corp.example.com).
-
organizational_unit_distinguished_names
¶ The distinguished names of the organizational units for computer accounts.
-
service_account_credentials
¶ The credentials for the service account used by the streaming instance to connect to the directory.
Do not use this parameter directly. Use
ServiceAccountCredentials
as an input parameter withnoEcho
as shown in the Parameters . For best practices information, see Do Not Embed Credentials in Your Templates .