interface CfnSoftwarePackageProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT.CfnSoftwarePackageProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiot#CfnSoftwarePackageProps |
Java | software.amazon.awscdk.services.iot.CfnSoftwarePackageProps |
Python | aws_cdk.aws_iot.CfnSoftwarePackageProps |
TypeScript | aws-cdk-lib » aws_iot » CfnSoftwarePackageProps |
Properties for defining a CfnSoftwarePackage.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackage.html
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 cfnSoftwarePackageProps: iot.CfnSoftwarePackageProps = {
description: 'description',
packageName: 'packageName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A summary of the package being created. |
| package | string | The name of the new software package. |
| tags? | Cfn[] | Metadata that can be used to manage the package. |
description?
Type:
string
(optional)
A summary of the package being created.
This can be used to outline the package's contents or purpose.
packageName?
Type:
string
(optional)
The name of the new software package.
tags?
Type:
Cfn[]
(optional)
Metadata that can be used to manage the package.

.NET
Go
Java
Python
TypeScript