Class: Aws::DataZone::Types::Region

Inherits:
Struct
  • Object
show all
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

RegionName, RegionNamePath, Unknown

Defined Under Namespace

Classes: RegionName, RegionNamePath, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#region_nameString

The Amazon Web Services Region name.

Returns:

  • (String)


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_pathString

The region name path.

Returns:

  • (String)


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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



16376
16377
16378
# File 'lib/aws-sdk-datazone/types.rb', line 16376

def unknown
  @unknown
end