interface S3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoT.CfnStream.S3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiot#CfnStream_S3LocationProperty |
Java | software.amazon.awscdk.services.iot.CfnStream.S3LocationProperty |
Python | aws_cdk.aws_iot.CfnStream.S3LocationProperty |
TypeScript | aws-cdk-lib » aws_iot » CfnStream » S3LocationProperty |
The location of the file in S3.
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.CfnStream.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 bucket version. |
bucket?
Type:
string
(optional)
The S3 bucket.
key?
Type:
string
(optional)
The S3 key.
version?
Type:
string
(optional)
The S3 bucket version.

.NET
Go
Java
Python
TypeScript