Class: Aws::Account::Types::Region
- Inherits:
-
Struct
- Object
- Struct
- Aws::Account::Types::Region
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-account/types.rb
Overview
This is a structure that expresses the Region for a given account, consisting of a name and opt-in status.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#region_name ⇒ String
The Region code of a given Region (for example, ‘us-east-1`).
-
#region_opt_status ⇒ String
One of potential statuses a Region can undergo (Enabled, Enabling, Disabled, Disabling, Enabled_By_Default).
Instance Attribute Details
#region_name ⇒ String
The Region code of a given Region (for example, ‘us-east-1`).
831 832 833 834 835 836 |
# File 'lib/aws-sdk-account/types.rb', line 831 class Region < Struct.new( :region_name, :region_opt_status) SENSITIVE = [] include Aws::Structure end |
#region_opt_status ⇒ String
One of potential statuses a Region can undergo (Enabled, Enabling, Disabled, Disabling, Enabled_By_Default).
831 832 833 834 835 836 |
# File 'lib/aws-sdk-account/types.rb', line 831 class Region < Struct.new( :region_name, :region_opt_status) SENSITIVE = [] include Aws::Structure end |