Class: Aws::CloudWatchOmni::Types::SpaceCredentialRequestContext
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchOmni::Types::SpaceCredentialRequestContext
- Defined in:
- gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb
Overview
Identifies what the credentials are for: either an existing space, or a target account in a domain. Specify spaceId, or both domainId and targetAccountId.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain_id ⇒ String
The ID of the domain, when returning credentials for a target account that does not yet have a space.
-
#space_id ⇒ String
The ID of an existing space to return credentials for.
-
#target_account_id ⇒ String
The ID of the target member account.
Instance Attribute Details
#domain_id ⇒ String
The ID of the domain, when returning credentials for a target account that does not yet have a space.
4589 4590 4591 4592 4593 4594 4595 |
# File 'gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb', line 4589 class SpaceCredentialRequestContext < Struct.new( :space_id, :domain_id, :target_account_id) SENSITIVE = [] include Aws::Structure end |
#space_id ⇒ String
The ID of an existing space to return credentials for.
4589 4590 4591 4592 4593 4594 4595 |
# File 'gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb', line 4589 class SpaceCredentialRequestContext < Struct.new( :space_id, :domain_id, :target_account_id) SENSITIVE = [] include Aws::Structure end |
#target_account_id ⇒ String
The ID of the target member account. Required when domainId is set.
4589 4590 4591 4592 4593 4594 4595 |
# File 'gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb', line 4589 class SpaceCredentialRequestContext < Struct.new( :space_id, :domain_id, :target_account_id) SENSITIVE = [] include Aws::Structure end |