interface S3ConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnInstanceStorageConfigPropsMixin.S3ConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnInstanceStorageConfigPropsMixin_S3ConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnInstanceStorageConfigPropsMixin.S3ConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnInstanceStorageConfigPropsMixin.S3ConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » CfnInstanceStorageConfigPropsMixin » 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/cfn-property-mixins';
const s3ConfigProperty: connect.CfnInstanceStorageConfigPropsMixin.S3ConfigProperty = {
bucketName: 'bucketName',
bucketPrefix: 'bucketPrefix',
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
(optional)
The S3 bucket name.
bucketPrefix?
Type:
string
(optional)
The S3 bucket prefix.
encryptionConfig?
Type:
IResolvable | Encryption
(optional)
The Amazon S3 encryption configuration.

.NET
Go
Java
Python
TypeScript