interface CfnSoftwarePackageVersionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnSoftwarePackageVersionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnSoftwarePackageVersionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnSoftwarePackageVersionMixinProps |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnSoftwarePackageVersionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnSoftwarePackageVersionMixinProps |
Properties for CfnSoftwarePackageVersionPropsMixin.
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 cfnSoftwarePackageVersionMixinProps: iot_mixins.CfnSoftwarePackageVersionMixinProps = {
artifact: {
s3Location: {
bucket: 'bucket',
key: 'key',
version: 'version',
},
},
attributes: {
attributesKey: 'attributes',
},
description: 'description',
packageName: 'packageName',
recipe: 'recipe',
sbom: {
s3Location: {
bucket: 'bucket',
key: 'key',
version: 'version',
},
},
tags: [{
key: 'key',
value: 'value',
}],
versionName: 'versionName',
};
Properties
| Name | Type | Description |
|---|---|---|
| artifact? | IResolvable | Package | The artifact location of the package version. |
| 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. |
| package | string | The name of the associated software package. |
| recipe? | string | The inline json job document associated with a software package version. |
| sbom? | IResolvable | Sbom | The sbom zip archive location of the package version. |
| tags? | Cfn[] | Metadata that can be used to manage the package version. |
| version | string | The name of the new package version. |
artifact?
Type:
IResolvable | Package
(optional)
The artifact location of the package version.
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.
packageName?
Type:
string
(optional)
The name of the associated software package.
recipe?
Type:
string
(optional)
The inline json job document associated with a software package version.
sbom?
Type:
IResolvable | Sbom
(optional)
The sbom zip archive location of the package version.
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.

.NET
Go
Java
Python
TypeScript