interface S3ConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Timestream.CfnTablePropsMixin.S3ConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awstimestream#CfnTablePropsMixin_S3ConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.timestream.CfnTablePropsMixin.S3ConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_timestream.CfnTablePropsMixin.S3ConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_timestream » 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 { aws_timestream as timestream } from '@aws-cdk/cfn-property-mixins';
const s3ConfigurationProperty: timestream.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 | IKey | 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 | IKey
(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