Class: Aws::Panorama::Types::ManifestOverridesPayload

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

Overview

Note:

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

Note:

ManifestOverridesPayload is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ManifestOverridesPayload corresponding to the set member.

Parameter overrides for an application instance. This is a JSON document that has a single key (PayloadData) where the value is an escaped string representation of the overrides document.

Direct Known Subclasses

PayloadData, Unknown

Defined Under Namespace

Classes: PayloadData, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#payload_dataString

The overrides document.

Returns:

  • (String)


1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
# File 'gems/aws-sdk-panorama/lib/aws-sdk-panorama/types.rb', line 1881

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

  class PayloadData < ManifestOverridesPayload; end
  class Unknown < ManifestOverridesPayload; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1881
1882
1883
# File 'gems/aws-sdk-panorama/lib/aws-sdk-panorama/types.rb', line 1881

def unknown
  @unknown
end