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
) – The name of the associated software package.attributes (
Union
[IResolvable
,Mapping
[str
,str
],None
]) – Metadata that can be used to define a package version’s configuration. For example, the S3 file location, configuration options that are being sent to the device or fleet. The combined size of all the attributes on a package version is limited to 3KB.description (
Optional
[str
]) – A summary of the package version being created. This can be used to outline the package’s contents or purpose.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – Metadata that can be used to manage the package version.version_name (
Optional
[str
]) – The name of the new package version.
- See:
- 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
Metadata that can be used to define a package version’s configuration.
For example, the S3 file location, configuration options that are being sent to the device or fleet.
The combined size of all the attributes on a package version is limited to 3KB.
- description
A summary of the package version being created.
This can be used to outline the package’s contents or purpose.
- package_name
The name of the associated software package.
- tags
Metadata that can be used to manage the package version.
- version_name
The name of the new package version.