CfnSoftwarePackageVersionProps

class aws_cdk.aws_iot.CfnSoftwarePackageVersionProps(*, package_name, attributes=None, description=None, tags=None, version_name=None)

Bases: object

Properties for defining a CfnSoftwarePackageVersion.

Parameters:
  • package_name (str) –

  • attributes (Union[IResolvable, Mapping[str, str], None]) –

  • description (Optional[str]) –

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – An array of key-value pairs to apply to this resource.

  • version_name (Optional[str]) –

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackageversion.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_iot as iot

cfn_software_package_version_props = iot.CfnSoftwarePackageVersionProps(
    package_name="packageName",

    # the properties below are optional
    attributes={
        "attributes_key": "attributes"
    },
    description="description",
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    version_name="versionName"
)

Attributes

attributes

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackageversion.html#cfn-iot-softwarepackageversion-attributes

Type:

see

description

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackageversion.html#cfn-iot-softwarepackageversion-description

Type:

see

package_name

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

Type:

see

tags

An array of key-value pairs to apply to this resource.

See:

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

version_name

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackageversion.html#cfn-iot-softwarepackageversion-versionname

Type:

see