Class: Aws::MainframeModernization::Types::ExternalLocation

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-mainframemodernization/lib/aws-sdk-mainframemodernization/types.rb

Overview

Note:

ExternalLocation is a union - when making an API calls you must set exactly one of the members.

Defines an external storage location.

Direct Known Subclasses

S3Location, Unknown

Defined Under Namespace

Classes: S3Location, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#s3_locationString

The URI of the Amazon S3 bucket.

Returns:

  • (String)


1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
# File 'gems/aws-sdk-mainframemodernization/lib/aws-sdk-mainframemodernization/types.rb', line 1168

class ExternalLocation < Struct.new(
  :s3_location,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class S3Location < ExternalLocation; end
  class Unknown < ExternalLocation; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1168
1169
1170
# File 'gems/aws-sdk-mainframemodernization/lib/aws-sdk-mainframemodernization/types.rb', line 1168

def unknown
  @unknown
end