Class: Aws::Panorama::Types::ManifestOverridesPayload
- Inherits:
-
Struct
- Object
- Struct
- Aws::Panorama::Types::ManifestOverridesPayload
- Includes:
- Structure, Structure::Union
- Defined in:
- 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
Defined Under Namespace
Classes: PayloadData, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#payload_data ⇒ String
The overrides document.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#payload_data ⇒ String
The overrides document.
1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 |
# File '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 |
#unknown ⇒ Object
Returns the value of attribute unknown
1881 1882 1883 |
# File 'lib/aws-sdk-panorama/types.rb', line 1881 def unknown @unknown end |