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

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

Overview

Describes the credentials for the service account used by the fleet or image builder to connect to the directory.

Constant Summary collapse

SENSITIVE =
[:account_name, :account_password]

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)


4405
4406
4407
4408
4409
4410
# File 'lib/aws-sdk-appstream/types.rb', line 4405

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

#account_passwordString

The password for the account.

Returns:

  • (String)


4405
4406
4407
4408
4409
4410
# File 'lib/aws-sdk-appstream/types.rb', line 4405

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