Class: Aws::Panorama::Types::ManifestPayload
- Inherits:
-
Struct
- Object
- Struct
- Aws::Panorama::Types::ManifestPayload
- 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
Defined Under Namespace
Classes: PayloadData, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#payload_data ⇒ String
The application manifest.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#payload_data ⇒ String
The application manifest.
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 |
#unknown ⇒ Object
Returns the value of attribute unknown
1907 1908 1909 |
# File 'gems/aws-sdk-panorama/lib/aws-sdk-panorama/types.rb', line 1907 def unknown @unknown end |