interface CfnSoftwarePackageMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnSoftwarePackageMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnSoftwarePackageMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnSoftwarePackageMixinProps |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnSoftwarePackageMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnSoftwarePackageMixinProps |
Properties for CfnSoftwarePackagePropsMixin.
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 { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const cfnSoftwarePackageMixinProps: iot_mixins.CfnSoftwarePackageMixinProps = {
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