Class: Aws::AppStream::Types::ServiceAccountCredentials

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-appstream/types.rb

Overview

Note:

When making an API call, you may pass ServiceAccountCredentials data as a hash:

{
  account_name: "AccountName", # required
  account_password: "AccountPassword", # required
}

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

Instance Attribute Summary collapse

Instance Attribute Details

#account_nameString

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.

Returns:

  • (String)


2320
2321
2322
2323
2324
# File 'lib/aws-sdk-appstream/types.rb', line 2320

class ServiceAccountCredentials < Struct.new(
  :account_name,
  :account_password)
  include Aws::Structure
end

#account_passwordString

The password for the account.

Returns:

  • (String)


2320
2321
2322
2323
2324
# File 'lib/aws-sdk-appstream/types.rb', line 2320

class ServiceAccountCredentials < Struct.new(
  :account_name,
  :account_password)
  include Aws::Structure
end