CfnDirectoryConfigMixinProps

class aws_cdk.mixins_preview.aws_appstream.mixins.CfnDirectoryConfigMixinProps(*, certificate_based_auth_properties=None, directory_name=None, organizational_unit_distinguished_names=None, service_account_credentials=None)

Bases: object

Properties for CfnDirectoryConfigPropsMixin.

Parameters:
  • certificate_based_auth_properties (Union[IResolvable, CertificateBasedAuthPropertiesProperty, Dict[str, Any], None]) – The certificate-based authentication properties used to authenticate SAML 2.0 Identity Provider (IdP) user identities to Active Directory domain-joined streaming instances.

  • directory_name (Optional[str]) – The fully qualified name of the directory (for example, corp.example.com).

  • organizational_unit_distinguished_names (Optional[Sequence[str]]) – The distinguished names of the organizational units for computer accounts.

  • service_account_credentials (Union[IResolvable, ServiceAccountCredentialsProperty, Dict[str, Any], None]) – 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 with noEcho as shown in the Parameters . For best practices information, see Do Not Embed Credentials in Your Templates .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_appstream import mixins as appstream_mixins

cfn_directory_config_mixin_props = appstream_mixins.CfnDirectoryConfigMixinProps(
    certificate_based_auth_properties=appstream_mixins.CfnDirectoryConfigPropsMixin.CertificateBasedAuthPropertiesProperty(
        certificate_authority_arn="certificateAuthorityArn",
        status="status"
    ),
    directory_name="directoryName",
    organizational_unit_distinguished_names=["organizationalUnitDistinguishedNames"],
    service_account_credentials=appstream_mixins.CfnDirectoryConfigPropsMixin.ServiceAccountCredentialsProperty(
        account_name="accountName",
        account_password="accountPassword"
    )
)

Attributes

certificate_based_auth_properties

The certificate-based authentication properties used to authenticate SAML 2.0 Identity Provider (IdP) user identities to Active Directory domain-joined streaming instances.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html#cfn-appstream-directoryconfig-certificatebasedauthproperties

directory_name

The fully qualified name of the directory (for example, corp.example.com).

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html#cfn-appstream-directoryconfig-directoryname

organizational_unit_distinguished_names

The distinguished names of the organizational units for computer accounts.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html#cfn-appstream-directoryconfig-organizationalunitdistinguishednames

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 with noEcho as shown in the Parameters . For best practices information, see Do Not Embed Credentials in Your Templates .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.html#cfn-appstream-directoryconfig-serviceaccountcredentials