interface S3ConfigurationProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Timestream.CfnTable.S3ConfigurationProperty |
![]() | software.amazon.awscdk.services.timestream.CfnTable.S3ConfigurationProperty |
![]() | aws_cdk.aws_timestream.CfnTable.S3ConfigurationProperty |
![]() | @aws-cdk/aws-timestream » CfnTable » 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 * as timestream from '@aws-cdk/aws-timestream';
const s3ConfigurationProperty: timestream.CfnTable.S3ConfigurationProperty = {
bucketName: 'bucketName',
encryptionOption: 'encryptionOption',
// the properties below are optional
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 KMS 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
The bucket name of the customer S3 bucket.
encryptionOption
Type:
string
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 KMS 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.