interface CfnDirectoryConfigMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppStream.Mixins.CfnDirectoryConfigMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappstream/mixins#CfnDirectoryConfigMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.appstream.mixins.CfnDirectoryConfigMixinProps |
Python | aws_cdk.mixins_preview.aws_appstream.mixins.CfnDirectoryConfigMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_appstream » mixins » CfnDirectoryConfigMixinProps |
Properties for CfnDirectoryConfigPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as appstream_mixins } from '@aws-cdk/mixins-preview/aws-appstream';
const cfnDirectoryConfigMixinProps: appstream_mixins.CfnDirectoryConfigMixinProps = {
certificateBasedAuthProperties: {
certificateAuthorityArn: 'certificateAuthorityArn',
status: 'status',
},
directoryName: 'directoryName',
organizationalUnitDistinguishedNames: ['organizationalUnitDistinguishedNames'],
serviceAccountCredentials: {
accountName: 'accountName',
accountPassword: 'accountPassword',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate | IResolvable | Certificate | The certificate-based authentication properties used to authenticate SAML 2.0 Identity Provider (IdP) user identities to Active Directory domain-joined streaming instances. |
| directory | string | The fully qualified name of the directory (for example, corp.example.com). |
| organizational | string[] | The distinguished names of the organizational units for computer accounts. |
| service | IResolvable | Service | The credentials for the service account used by the streaming instance to connect to the directory. |
certificateBasedAuthProperties?
Type:
IResolvable | Certificate
(optional)
The certificate-based authentication properties used to authenticate SAML 2.0 Identity Provider (IdP) user identities to Active Directory domain-joined streaming instances.
directoryName?
Type:
string
(optional)
The fully qualified name of the directory (for example, corp.example.com).
organizationalUnitDistinguishedNames?
Type:
string[]
(optional)
The distinguished names of the organizational units for computer accounts.
serviceAccountCredentials?
Type:
IResolvable | Service
(optional)
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 .

.NET
Go
Java
Python
TypeScript