interface S3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.KafkaConnect.CfnCustomPluginPropsMixin.S3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awskafkaconnect#CfnCustomPluginPropsMixin_S3LocationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.kafkaconnect.CfnCustomPluginPropsMixin.S3LocationProperty |
Python | aws_cdk.cfn_property_mixins.aws_kafkaconnect.CfnCustomPluginPropsMixin.S3LocationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_kafkaconnect » 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 { aws_kafkaconnect as kafkaconnect } from '@aws-cdk/cfn-property-mixins';
const s3LocationProperty: kafkaconnect.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