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 | The name of the vector bucket. |
encryptionConfiguration?
Type:
IResolvable | Encryption
(optional)
The encryption configuration for the vector bucket.
vectorBucketName?
Type:
string
(optional)
The name of the vector bucket.

.NET
Go
Java
Python
TypeScript