interface ManifestPayloadProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Panorama.CfnApplicationInstance.ManifestPayloadProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awspanorama#CfnApplicationInstance_ManifestPayloadProperty |
Java | software.amazon.awscdk.services.panorama.CfnApplicationInstance.ManifestPayloadProperty |
Python | aws_cdk.aws_panorama.CfnApplicationInstance.ManifestPayloadProperty |
TypeScript | aws-cdk-lib » aws_panorama » CfnApplicationInstance » ManifestPayloadProperty |
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 { aws_panorama as panorama } from 'aws-cdk-lib';
const manifestPayloadProperty: panorama.CfnApplicationInstance.ManifestPayloadProperty = {
payloadData: 'payloadData',
};
Properties
| Name | Type | Description |
|---|---|---|
| payload | string | The application manifest. |
payloadData?
Type:
string
(optional)
The application manifest.

.NET
Go
Java
Python
TypeScript