CfnPackageProps
- class aws_cdk.aws_panorama.CfnPackageProps(*, package_name, storage_location=None, tags=None)
Bases:
objectProperties for defining a
CfnPackage.- Parameters:
package_name (
str) – A name for the package.storage_location (
Union[IResolvable,StorageLocationProperty,Dict[str,Any],None]) –AWS::Panorama::Package.StorageLocation.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Tags for the package.
- Link:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-panorama-package.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_panorama as panorama cfn_package_props = panorama.CfnPackageProps( package_name="packageName", # the properties below are optional storage_location=panorama.CfnPackage.StorageLocationProperty( binary_prefix_location="binaryPrefixLocation", bucket="bucket", generated_prefix_location="generatedPrefixLocation", manifest_prefix_location="manifestPrefixLocation", repo_prefix_location="repoPrefixLocation" ), tags=[CfnTag( key="key", value="value" )] )
Attributes
- package_name
A name for the package.
- storage_location
AWS::Panorama::Package.StorageLocation.
- tags
Tags for the package.