Class: Aws::AppStream::Types::ServiceAccountCredentials
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppStream::Types::ServiceAccountCredentials
- 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
-
#account_name ⇒ String
The user name of the account.
-
#account_password ⇒ String
The password for the account.
Instance Attribute Details
#account_name ⇒ String
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.
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_password ⇒ String
The password for the account.
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 |