interface S3ConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Timestream.Mixins.CfnTablePropsMixin.S3ConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstimestream/mixins#CfnTablePropsMixin_S3ConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.timestream.mixins.CfnTablePropsMixin.S3ConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_timestream.mixins.CfnTablePropsMixin.S3ConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_timestream » mixins » CfnTablePropsMixin » S3ConfigurationProperty |
The configuration that specifies an S3 location.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as timestream_mixins } from '@aws-cdk/mixins-preview/aws-timestream';
const s3ConfigurationProperty: timestream_mixins.CfnTablePropsMixin.S3ConfigurationProperty = {
bucketName: 'bucketName',
encryptionOption: 'encryptionOption',
kmsKeyId: 'kmsKeyId',
objectKeyPrefix: 'objectKeyPrefix',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | The bucket name of the customer S3 bucket. |
| encryption | string | The encryption option for the customer S3 location. |
| kms | string | The AWS key ID for the customer S3 location when encrypting with an AWS managed key. |
| object | string | The object key preview for the customer S3 location. |
bucketName?
Type:
string
(optional)
The bucket name of the customer S3 bucket.
encryptionOption?
Type:
string
(optional)
The encryption option for the customer S3 location.
Options are S3 server-side encryption with an S3 managed key or AWS managed key.
kmsKeyId?
Type:
string
(optional)
The AWS key ID for the customer S3 location when encrypting with an AWS managed key.
objectKeyPrefix?
Type:
string
(optional)
The object key preview for the customer S3 location.

.NET
Go
Java
Python
TypeScript