Interface BucketProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
BucketProps.Jsii$Proxy
Bucket sourceBucket = Bucket.Builder.create(this, "MyBucket")
.versioned(true)
.build();
Pipeline pipeline = new Pipeline(this, "MyPipeline");
Artifact sourceOutput = new Artifact();
S3SourceAction sourceAction = S3SourceAction.Builder.create()
.actionName("S3Source")
.bucket(sourceBucket)
.bucketKey("path/to/file.zip")
.output(sourceOutput)
.build();
pipeline.addStage(StageOptions.builder()
.stageName("Source")
.actions(List.of(sourceAction))
.build());
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forBucketPropsstatic final classAn implementation forBucketProps -
Method Summary
Modifier and TypeMethodDescriptionstatic BucketProps.Builderbuilder()default BucketAccessControlSpecifies a canned ACL that grants predefined permissions to the bucket.default BooleanWhether all objects should be automatically deleted when the bucket is removed from the stack or when the stack is deleted.default BlockPublicAccessThe block public access configuration of this bucket.default BooleanSpecifies whether Amazon S3 should use an S3 Bucket Key with server-side encryption using KMS (SSE-KMS) for new objects in the bucket.default StringPhysical name of this bucket.getCors()The CORS configuration of this bucket.default BucketEncryptionThe kind of server-side encryption to apply to this bucket.default IKeyExternal KMS key to use for bucket encryption.default BooleanEnforces SSL for requests.default BooleanWhether this bucket should send notifications to Amazon EventBridge or not.default List<IntelligentTieringConfiguration>Inteligent Tiering Configurations.The inventory configuration of the bucket.default List<LifecycleRule>Rules that define how Amazon S3 manages objects during their lifetime.default List<BucketMetrics>The metrics configuration of this bucket.default IRoleThe role to be used by the notifications handler.default ObjectOwnershipThe objectOwnership of the bucket.default BooleanGrants public read access to all objects in the bucket.default RemovalPolicyPolicy to apply when the bucket is removed from this stack.default IBucketDestination bucket for the server access logs.default StringOptional log file prefix to use for the bucket's access logs.default BooleanWhether this bucket should have transfer acceleration turned on or not.default BooleanWhether this bucket should have versioning turned on or not.default StringThe name of the error document (e.g.default StringThe name of the index document (e.g.default RedirectTargetSpecifies the redirect behavior of all requests to a website endpoint of a bucket.default List<RoutingRule>Rules that define when a redirect is applied and the redirect behavior.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccessControl
Specifies a canned ACL that grants predefined permissions to the bucket.Default: BucketAccessControl.PRIVATE
-
getAutoDeleteObjects
Whether all objects should be automatically deleted when the bucket is removed from the stack or when the stack is deleted.Requires the
removalPolicyto be set toRemovalPolicy.DESTROY.Warning if you have deployed a bucket with
autoDeleteObjects: true, switching this tofalsein a CDK version before1.126.0will lead to all objects in the bucket being deleted. Be sure to update your bucket resources by deploying with CDK version1.126.0or later before switching this value tofalse.Default: false
-
getBlockPublicAccess
The block public access configuration of this bucket.Default: - CloudFormation defaults will apply. New buckets and objects don't allow public access, but users can modify bucket policies or object permissions to allow public access
-
getBucketKeyEnabled
Specifies whether Amazon S3 should use an S3 Bucket Key with server-side encryption using KMS (SSE-KMS) for new objects in the bucket.Only relevant, when Encryption is set to
BucketEncryption.KMSDefault: - false
-
getBucketName
Physical name of this bucket.Default: - Assigned by CloudFormation (recommended).
-
getCors
The CORS configuration of this bucket.Default: - No CORS configuration.
-
getEncryption
The kind of server-side encryption to apply to this bucket.If you choose KMS, you can specify a KMS key via
encryptionKey. If encryption key is not specified, a key will automatically be created.Default: - `Kms` if `encryptionKey` is specified, or `Unencrypted` otherwise.
-
getEncryptionKey
External KMS key to use for bucket encryption.The 'encryption' property must be either not specified or set to "Kms". An error will be emitted if encryption is set to "Unencrypted" or "Managed".
Default: - If encryption is set to "Kms" and this property is undefined, a new KMS key will be created and associated with this bucket.
-
getEnforceSSL
Enforces SSL for requests.S3.5 of the AWS Foundational Security Best Practices Regarding S3.
Default: false
-
getEventBridgeEnabled
Whether this bucket should send notifications to Amazon EventBridge or not.Default: false
-
getIntelligentTieringConfigurations
@Stability(Stable) @Nullable default List<IntelligentTieringConfiguration> getIntelligentTieringConfigurations()Inteligent Tiering Configurations.Default: No Intelligent Tiiering Configurations.
-
getInventories
The inventory configuration of the bucket.Default: - No inventory configuration
-
getLifecycleRules
Rules that define how Amazon S3 manages objects during their lifetime.Default: - No lifecycle rules.
-
getMetrics
The metrics configuration of this bucket.Default: - No metrics configuration.
-
getNotificationsHandlerRole
The role to be used by the notifications handler.Default: - a new role will be created.
-
getObjectOwnership
The objectOwnership of the bucket.Default: - No ObjectOwnership configuration, uploading account will own the object.
-
getPublicReadAccess
Grants public read access to all objects in the bucket.Similar to calling
bucket.grantPublicAccess()Default: false
-
getRemovalPolicy
Policy to apply when the bucket is removed from this stack.Default: - The bucket will be orphaned.
-
getServerAccessLogsBucket
Destination bucket for the server access logs.Default: - If "serverAccessLogsPrefix" undefined - access logs disabled, otherwise - log to current bucket.
-
getServerAccessLogsPrefix
Optional log file prefix to use for the bucket's access logs.If defined without "serverAccessLogsBucket", enables access logs to current bucket with this prefix.
Default: - No log file prefix
-
getTransferAcceleration
Whether this bucket should have transfer acceleration turned on or not.Default: false
-
getVersioned
Whether this bucket should have versioning turned on or not.Default: false
-
getWebsiteErrorDocument
The name of the error document (e.g. "404.html") for the website.websiteIndexDocumentmust also be set if this is set.Default: - No error document.
-
getWebsiteIndexDocument
The name of the index document (e.g. "index.html") for the website. Enables static website hosting for this bucket.Default: - No index document.
-
getWebsiteRedirect
Specifies the redirect behavior of all requests to a website endpoint of a bucket.If you specify this property, you can't specify "websiteIndexDocument", "websiteErrorDocument" nor , "websiteRoutingRules".
Default: - No redirection.
-
getWebsiteRoutingRules
Rules that define when a redirect is applied and the redirect behavior.Default: - No redirection rules.
-
builder
- Returns:
- a
BucketProps.BuilderofBucketProps
-