interface CfnSoftwarePackageVersionProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.IoT.CfnSoftwarePackageVersionProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsiot#CfnSoftwarePackageVersionProps |
![]() | software.amazon.awscdk.services.iot.CfnSoftwarePackageVersionProps |
![]() | aws_cdk.aws_iot.CfnSoftwarePackageVersionProps |
![]() | aws-cdk-lib » aws_iot » CfnSoftwarePackageVersionProps |
Properties for defining a CfnSoftwarePackageVersion
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iot as iot } from 'aws-cdk-lib';
const cfnSoftwarePackageVersionProps: iot.CfnSoftwarePackageVersionProps = {
packageName: 'packageName',
// the properties below are optional
attributes: {
attributesKey: 'attributes',
},
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
versionName: 'versionName',
};
Properties
Name | Type | Description |
---|---|---|
package | string | The name of the associated software package. |
attributes? | { [string]: string } | IResolvable | Metadata that can be used to define a package version’s configuration. |
description? | string | A summary of the package version being created. |
tags? | Cfn [] | Metadata that can be used to manage the package version. |
version | string | The name of the new package version. |
packageName
Type:
string
The name of the associated software package.
attributes?
Type:
{ [string]: string } |
IResolvable
(optional)
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?
Type:
string
(optional)
A summary of the package version being created.
This can be used to outline the package's contents or purpose.
tags?
Type:
Cfn
[]
(optional)
Metadata that can be used to manage the package version.
versionName?
Type:
string
(optional)
The name of the new package version.