interface S3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KafkaConnect.Mixins.CfnCustomPluginPropsMixin.S3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskafkaconnect/mixins#CfnCustomPluginPropsMixin_S3LocationProperty |
Java | software.amazon.awscdk.mixins.preview.services.kafkaconnect.mixins.CfnCustomPluginPropsMixin.S3LocationProperty |
Python | aws_cdk.mixins_preview.aws_kafkaconnect.mixins.CfnCustomPluginPropsMixin.S3LocationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kafkaconnect » mixins » CfnCustomPluginPropsMixin » S3LocationProperty |
The location of an object in Amazon S3.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as kafkaconnect_mixins } from '@aws-cdk/mixins-preview/aws-kafkaconnect';
const s3LocationProperty: kafkaconnect_mixins.CfnCustomPluginPropsMixin.S3LocationProperty = {
bucketArn: 'bucketArn',
fileKey: 'fileKey',
objectVersion: 'objectVersion',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | The Amazon Resource Name (ARN) of an S3 bucket. |
| file | string | The file key for an object in an S3 bucket. |
| object | string | The version of an object in an S3 bucket. |
bucketArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of an S3 bucket.
fileKey?
Type:
string
(optional)
The file key for an object in an S3 bucket.
objectVersion?
Type:
string
(optional)
The version of an object in an S3 bucket.

.NET
Go
Java
Python
TypeScript