Class: Aws::Panorama::Types::ManifestPayload

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

Overview

Note:

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

Note:

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

A application verion's manifest file. This is a JSON document that has a single key (PayloadData) where the value is an escaped string representation of the application manifest (graph.json). This file is located in the graphs folder in your application source.

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 application manifest.

Returns:

  • (String)


1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
# File 'gems/aws-sdk-panorama/lib/aws-sdk-panorama/types.rb', line 1907

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

  class PayloadData < ManifestPayload; end
  class Unknown < ManifestPayload; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1907
1908
1909
# File 'gems/aws-sdk-panorama/lib/aws-sdk-panorama/types.rb', line 1907

def unknown
  @unknown
end