interface S3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT.CfnSoftwarePackageVersion.S3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiot#CfnSoftwarePackageVersion_S3LocationProperty |
Java | software.amazon.awscdk.services.iot.CfnSoftwarePackageVersion.S3LocationProperty |
Python | aws_cdk.aws_iot.CfnSoftwarePackageVersion.S3LocationProperty |
TypeScript | aws-cdk-lib » aws_iot » CfnSoftwarePackageVersion » S3LocationProperty |
The Amazon S3 location.
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 s3LocationProperty: iot.CfnSoftwarePackageVersion.S3LocationProperty = {
bucket: 'bucket',
key: 'key',
version: 'version',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | The S3 bucket. |
| key | string | The S3 key. |
| version | string | The S3 version. |
bucket
Type:
string
The S3 bucket.
key
Type:
string
The S3 key.
version
Type:
string
The S3 version.

.NET
Go
Java
Python
TypeScript