CfnPackageMixinProps
- class aws_cdk.mixins_preview.aws_panorama.mixins.CfnPackageMixinProps(*, package_name=None, storage_location=None, tags=None)
Bases:
objectProperties for CfnPackagePropsMixin.
- Parameters:
package_name (
Optional[str]) – A name for the package.storage_location (
Union[IResolvable,StorageLocationProperty,Dict[str,Any],None]) – A storage location.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Tags for the package.
- See:
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. from aws_cdk.mixins_preview.aws_panorama import mixins as panorama_mixins cfn_package_mixin_props = panorama_mixins.CfnPackageMixinProps( package_name="packageName", storage_location=panorama_mixins.CfnPackagePropsMixin.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
A storage location.
- tags
Tags for the package.