Class: Aws::MigrationHubConfig::Types::Target
- Inherits:
-
Struct
- Object
- Struct
- Aws::MigrationHubConfig::Types::Target
- Defined in:
- gems/aws-sdk-migrationhubconfig/lib/aws-sdk-migrationhubconfig/types.rb
Overview
The target parameter specifies the identifier to which the home region
is applied, which is always an ACCOUNT. It applies the home region
to the current ACCOUNT.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The
TargetIDis a 12-character identifier of theACCOUNTfor which the control was created. -
#type ⇒ String
The target type is always an
ACCOUNT.
Instance Attribute Details
#id ⇒ String
The TargetID is a 12-character identifier of the ACCOUNT for
which the control was created. (This must be the current account.)
264 265 266 267 268 269 |
# File 'gems/aws-sdk-migrationhubconfig/lib/aws-sdk-migrationhubconfig/types.rb', line 264 class Target < Struct.new( :type, :id) SENSITIVE = [] include Aws::Structure end |