interface CfnVectorBucketMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3Vectors.Mixins.CfnVectorBucketMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3vectors/mixins#CfnVectorBucketMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.s3vectors.mixins.CfnVectorBucketMixinProps |
Python | aws_cdk.mixins_preview.aws_s3vectors.mixins.CfnVectorBucketMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_s3vectors » mixins » CfnVectorBucketMixinProps |
Properties for CfnVectorBucketPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as s3vectors_mixins } from '@aws-cdk/mixins-preview/aws-s3vectors';
const cfnVectorBucketMixinProps: s3vectors_mixins.CfnVectorBucketMixinProps = {
encryptionConfiguration: {
kmsKeyArn: 'kmsKeyArn',
sseType: 'sseType',
},
vectorBucketName: 'vectorBucketName',
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption | IResolvable | Encryption | The encryption configuration for the vector bucket. |
| vector | string | A name for the vector bucket. |
encryptionConfiguration?
Type:
IResolvable | Encryption
(optional)
The encryption configuration for the vector bucket.
vectorBucketName?
Type:
string
(optional)
A name for the vector bucket.
The bucket name must contain only lowercase letters, numbers, and hyphens (-). The bucket name must be unique in the same AWS account for each AWS Region. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the bucket name.
The bucket name must be between 3 and 63 characters long and must not contain uppercase characters or underscores.
If you specify a name, you can't perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you need to replace the resource, specify a new name.

.NET
Go
Java
Python
TypeScript