Show / Hide Table of Contents

Class CfnDirectoryConfig.ServiceAccountCredentialsProperty

The credentials for the service account used by the streaming instance to connect to the directory.

Inheritance
object
CfnDirectoryConfig.ServiceAccountCredentialsProperty
Implements
CfnDirectoryConfig.IServiceAccountCredentialsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.AppStream
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDirectoryConfig.ServiceAccountCredentialsProperty : CfnDirectoryConfig.IServiceAccountCredentialsProperty
Syntax (vb)
Public Class CfnDirectoryConfig.ServiceAccountCredentialsProperty Implements CfnDirectoryConfig.IServiceAccountCredentialsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.AppStream;

             var serviceAccountCredentialsProperty = new ServiceAccountCredentialsProperty {
                 AccountName = "accountName",
                 AccountPassword = "accountPassword"
             };

Synopsis

Constructors

ServiceAccountCredentialsProperty()

The credentials for the service account used by the streaming instance to connect to the directory.

Properties

AccountName

The user name of the account.

AccountPassword

The password for the account.

Constructors

ServiceAccountCredentialsProperty()

The credentials for the service account used by the streaming instance to connect to the directory.

public ServiceAccountCredentialsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-directoryconfig-serviceaccountcredentials.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.AppStream;

             var serviceAccountCredentialsProperty = new ServiceAccountCredentialsProperty {
                 AccountName = "accountName",
                 AccountPassword = "accountPassword"
             };

Properties

AccountName

The user name of the account.

public string AccountName { get; set; }
Property Value

string

Remarks

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.

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

AccountPassword

The password for the account.

public string AccountPassword { get; set; }
Property Value

string

Remarks

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

Implements

CfnDirectoryConfig.IServiceAccountCredentialsProperty
Back to top Generated by DocFX