Interface CfnApplicationInstance.ManifestPayloadProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationInstance.ManifestPayloadProperty.Jsii$Proxy
- Enclosing class:
- CfnApplicationInstance
@Stability(Stable)
public static interface CfnApplicationInstance.ManifestPayloadProperty
extends software.amazon.jsii.JsiiSerializable
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.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.panorama.*;
ManifestPayloadProperty manifestPayloadProperty = ManifestPayloadProperty.builder()
.payloadData("payloadData")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplicationInstance.ManifestPayloadPropertystatic final classAn implementation forCfnApplicationInstance.ManifestPayloadProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPayloadData
The application manifest. -
builder
-