CfnPackageProps

class aws_cdk.aws_panorama.CfnPackageProps(*, package_name, storage_location=None, tags=None)

Bases: object

Properties for defining a CfnPackage.

Parameters:
  • package_name (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 import 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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-panorama-package.html#cfn-panorama-package-packagename

storage_location

A storage location.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-panorama-package.html#cfn-panorama-package-storagelocation

tags

Tags for the package.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-panorama-package.html#cfn-panorama-package-tags