interface SoftwarePackageVersionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT.SoftwarePackageVersionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiot#SoftwarePackageVersionReference |
Java | software.amazon.awscdk.services.iot.SoftwarePackageVersionReference |
Python | aws_cdk.aws_iot.SoftwarePackageVersionReference |
TypeScript | aws-cdk-lib » aws_iot » SoftwarePackageVersionReference |
A reference to a SoftwarePackageVersion resource.
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 softwarePackageVersionReference: iot.SoftwarePackageVersionReference = {
packageName: 'packageName',
versionName: 'versionName',
};
Properties
| Name | Type | Description |
|---|---|---|
| package | string | The PackageName of the SoftwarePackageVersion resource. |
| version | string | The VersionName of the SoftwarePackageVersion resource. |
packageName
Type:
string
The PackageName of the SoftwarePackageVersion resource.
versionName
Type:
string
The VersionName of the SoftwarePackageVersion resource.

.NET
Go
Java
Python
TypeScript