interface CfnPackageProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Panorama.CfnPackageProps |
Java | software.amazon.awscdk.services.panorama.CfnPackageProps |
Python | aws_cdk.aws_panorama.CfnPackageProps |
TypeScript | @aws-cdk/aws-panorama » CfnPackageProps |
Properties for defining a CfnPackage.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as panorama from '@aws-cdk/aws-panorama';
const cfnPackageProps: panorama.CfnPackageProps = {
packageName: 'packageName',
// the properties below are optional
storageLocation: {
binaryPrefixLocation: 'binaryPrefixLocation',
bucket: 'bucket',
generatedPrefixLocation: 'generatedPrefixLocation',
manifestPrefixLocation: 'manifestPrefixLocation',
repoPrefixLocation: 'repoPrefixLocation',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| package | string | A name for the package. |
| storage | IResolvable | Storage | AWS::Panorama::Package.StorageLocation. |
| tags? | Cfn[] | Tags for the package. |
packageName
Type:
string
A name for the package.
storageLocation?
Type:
IResolvable | Storage
(optional)
AWS::Panorama::Package.StorageLocation.
tags?
Type:
Cfn[]
(optional)
Tags for the package.

.NET
Java
Python
TypeScript