Interface CfnVectorBucketProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVectorBucketProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:17.281Z")
@Stability(Stable)
public interface CfnVectorBucketProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.s3vectors.*;
CfnVectorBucketProps cfnVectorBucketProps = CfnVectorBucketProps.builder()
.encryptionConfiguration(EncryptionConfigurationProperty.builder()
.kmsKeyArn("kmsKeyArn")
.sseType("sseType")
.build())
.vectorBucketName("vectorBucketName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnVectorBucketPropsstatic final classAn implementation forCfnVectorBucketProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnVectorBucketProps.Builderbuilder()default ObjectThe encryption configuration for the vector bucket.default StringA name for the vector bucket.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEncryptionConfiguration
The encryption configuration for the vector bucket.Returns union: either
IResolvableorCfnVectorBucket.EncryptionConfigurationProperty- See Also:
-
getVectorBucketName
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.
- See Also:
-
builder
- Returns:
- a
CfnVectorBucketProps.BuilderofCfnVectorBucketProps
-