interface ServiceAccountCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppStream.Mixins.CfnDirectoryConfigPropsMixin.ServiceAccountCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappstream/mixins#CfnDirectoryConfigPropsMixin_ServiceAccountCredentialsProperty |
Java | software.amazon.awscdk.mixins.preview.services.appstream.mixins.CfnDirectoryConfigPropsMixin.ServiceAccountCredentialsProperty |
Python | aws_cdk.mixins_preview.aws_appstream.mixins.CfnDirectoryConfigPropsMixin.ServiceAccountCredentialsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appstream » mixins » CfnDirectoryConfigPropsMixin » ServiceAccountCredentialsProperty |
The credentials for the service account used by the streaming instance to connect to the directory.
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 serviceAccountCredentialsProperty: appstream_mixins.CfnDirectoryConfigPropsMixin.ServiceAccountCredentialsProperty = {
accountName: 'accountName',
accountPassword: 'accountPassword',
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string | The user name of the account. |
| account | string | The password for the account. |
accountName?
Type:
string
(optional)
The user name of the account.
This account must have the following privileges: create computer objects, join computers to the domain, and change/reset the password on descendant computer objects for the organizational units specified.
accountPassword?
Type:
string
(optional)
The password for the account.

.NET
Go
Java
Python
TypeScript