Class: Aws::DataZone::Types::Region
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::Region
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-datazone/types.rb
Overview
Note:
Region is a union - when making an API calls you must set exactly one of the members.
Note:
Region is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Region corresponding to the set member.
The Amazon Web Services Region.
Direct Known Subclasses
Defined Under Namespace
Classes: RegionName, RegionNamePath, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#region_name ⇒ String
The Amazon Web Services Region name.
-
#region_name_path ⇒ String
The region name path.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#region_name ⇒ String
The Amazon Web Services Region name.
16376 16377 16378 16379 16380 16381 16382 16383 16384 16385 16386 16387 |
# File 'lib/aws-sdk-datazone/types.rb', line 16376 class Region < Struct.new( :region_name, :region_name_path, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class RegionName < Region; end class RegionNamePath < Region; end class Unknown < Region; end end |
#region_name_path ⇒ String
The region name path.
16376 16377 16378 16379 16380 16381 16382 16383 16384 16385 16386 16387 |
# File 'lib/aws-sdk-datazone/types.rb', line 16376 class Region < Struct.new( :region_name, :region_name_path, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class RegionName < Region; end class RegionNamePath < Region; end class Unknown < Region; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
16376 16377 16378 |
# File 'lib/aws-sdk-datazone/types.rb', line 16376 def unknown @unknown end |