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

.NET
Go
Java
Python
TypeScript