interface S3ConfigProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Connect.CfnInstanceStorageConfig.S3ConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnInstanceStorageConfig_S3ConfigProperty |
Java | software.amazon.awscdk.services.connect.CfnInstanceStorageConfig.S3ConfigProperty |
Python | aws_cdk.aws_connect.CfnInstanceStorageConfig.S3ConfigProperty |
TypeScript | aws-cdk-lib » aws_connect » CfnInstanceStorageConfig » S3ConfigProperty |
Information about the Amazon Simple Storage Service (Amazon S3) storage type.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as connect } from 'aws-cdk-lib';
const s3ConfigProperty: connect.CfnInstanceStorageConfig.S3ConfigProperty = {
bucketName: 'bucketName',
bucketPrefix: 'bucketPrefix',
// the properties below are optional
encryptionConfig: {
encryptionType: 'encryptionType',
keyId: 'keyId',
},
};
Properties
Name | Type | Description |
---|---|---|
bucket | string | The S3 bucket name. |
bucket | string | The S3 bucket prefix. |
encryption | IResolvable | Encryption | The Amazon S3 encryption configuration. |
bucketName
Type:
string
The S3 bucket name.
bucketPrefix
Type:
string
The S3 bucket prefix.
encryptionConfig?
Type:
IResolvable
|
Encryption
(optional)
The Amazon S3 encryption configuration.