interface CfnVectorBucketProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.S3Vectors.CfnVectorBucketProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3vectors#CfnVectorBucketProps |
Java | software.amazon.awscdk.services.s3vectors.CfnVectorBucketProps |
Python | aws_cdk.aws_s3vectors.CfnVectorBucketProps |
TypeScript | aws-cdk-lib » aws_s3vectors » CfnVectorBucketProps |
Properties for defining a CfnVectorBucket.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_s3vectors as s3vectors } from 'aws-cdk-lib';
const cfnVectorBucketProps: s3vectors.CfnVectorBucketProps = {
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