CfnVectorBucketProps
- class aws_cdk.aws_s3vectors.CfnVectorBucketProps(*, encryption_configuration=None, vector_bucket_name=None)
Bases:
objectProperties for defining a
CfnVectorBucket.- Parameters:
encryption_configuration (
Union[IResolvable,EncryptionConfigurationProperty,Dict[str,Any],None]) – The encryption configuration for the vector bucket.vector_bucket_name (
Optional[str]) – The name of the vector bucket.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_s3vectors as s3vectors cfn_vector_bucket_props = s3vectors.CfnVectorBucketProps( encryption_configuration=s3vectors.CfnVectorBucket.EncryptionConfigurationProperty( kms_key_arn="kmsKeyArn", sse_type="sseType" ), vector_bucket_name="vectorBucketName" )
Attributes
- encryption_configuration
The encryption configuration for the vector bucket.
- vector_bucket_name
The name of the vector bucket.