interface SoftwarePackageReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.IoT.SoftwarePackageReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsiot#SoftwarePackageReference |
Java | software.amazon.awscdk.interfaces.iot.SoftwarePackageReference |
Python | aws_cdk.interfaces.aws_iot.SoftwarePackageReference |
TypeScript | aws-cdk-lib » interfaces » aws_iot » SoftwarePackageReference |
A reference to a SoftwarePackage 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 interfaces_aws_iot } from 'aws-cdk-lib/interfaces';
const softwarePackageReference: interfaces_aws_iot.SoftwarePackageReference = {
packageName: 'packageName',
};
Properties
| Name | Type | Description |
|---|---|---|
| package | string | The PackageName of the SoftwarePackage resource. |
packageName
Type:
string
The PackageName of the SoftwarePackage resource.

.NET
Go
Java
Python
TypeScript