Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

Class: Aws::Account::Types::Region

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-account/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

Instance Attribute Details

#region_nameString

The Region code of a given Region (for example, us-east-1).

Returns:

  • (String)

984
985
986
987
988
989
# File 'gems/aws-sdk-account/lib/aws-sdk-account/types.rb', line 984

class Region < Struct.new(
  :region_name,
  :region_opt_status)
  SENSITIVE = []
  include Aws::Structure
end

#region_opt_statusString

One of potential statuses a Region can undergo (Enabled, Enabling, Disabled, Disabling, Enabled_By_Default).

Returns:

  • (String)

984
985
986
987
988
989
# File 'gems/aws-sdk-account/lib/aws-sdk-account/types.rb', line 984

class Region < Struct.new(
  :region_name,
  :region_opt_status)
  SENSITIVE = []
  include Aws::Structure
end