Class Bucket.Builder

java.lang.Object
software.amazon.awscdk.services.s3.Bucket.Builder
All Implemented Interfaces:
software.amazon.jsii.Builder<Bucket>
Enclosing class:
Bucket

@Stability(Stable) public static final class Bucket.Builder extends Object implements software.amazon.jsii.Builder<Bucket>
A fluent builder for Bucket.
  • Method Details

    • create

      @Stability(Stable) public static Bucket.Builder create(software.constructs.Construct scope, String id)
      Parameters:
      scope - This parameter is required.
      id - This parameter is required.
      Returns:
      a new instance of Bucket.Builder.
    • accessControl

      @Stability(Stable) public Bucket.Builder accessControl(BucketAccessControl accessControl)
      Specifies a canned ACL that grants predefined permissions to the bucket.

      Default: BucketAccessControl.PRIVATE

      Parameters:
      accessControl - Specifies a canned ACL that grants predefined permissions to the bucket. This parameter is required.
      Returns:
      this
    • autoDeleteObjects

      @Stability(Stable) public Bucket.Builder autoDeleteObjects(Boolean autoDeleteObjects)
      Whether all objects should be automatically deleted when the bucket is removed from the stack or when the stack is deleted.

      Requires the removalPolicy to be set to RemovalPolicy.DESTROY.

      Warning if you have deployed a bucket with autoDeleteObjects: true, switching this to false in a CDK version before 1.126.0 will lead to all objects in the bucket being deleted. Be sure to update your bucket resources by deploying with CDK version 1.126.0 or later before switching this value to false.

      Default: false

      Parameters:
      autoDeleteObjects - Whether all objects should be automatically deleted when the bucket is removed from the stack or when the stack is deleted. This parameter is required.
      Returns:
      this
    • blockPublicAccess

      @Stability(Stable) public Bucket.Builder blockPublicAccess(BlockPublicAccess blockPublicAccess)
      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

      Parameters:
      blockPublicAccess - The block public access configuration of this bucket. This parameter is required.
      Returns:
      this
      See Also:
    • bucketKeyEnabled

      @Stability(Stable) public Bucket.Builder bucketKeyEnabled(Boolean bucketKeyEnabled)
      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

      invalid @link
      BucketEncryption.KMS

      Default: - false

      Parameters:
      bucketKeyEnabled - Specifies whether Amazon S3 should use an S3 Bucket Key with server-side encryption using KMS (SSE-KMS) for new objects in the bucket. This parameter is required.
      Returns:
      this
    • bucketName

      @Stability(Stable) public Bucket.Builder bucketName(String bucketName)
      Physical name of this bucket.

      Default: - Assigned by CloudFormation (recommended).

      Parameters:
      bucketName - Physical name of this bucket. This parameter is required.
      Returns:
      this
    • cors

      @Stability(Stable) public Bucket.Builder cors(List<? extends CorsRule> cors)
      The CORS configuration of this bucket.

      Default: - No CORS configuration.

      Parameters:
      cors - The CORS configuration of this bucket. This parameter is required.
      Returns:
      this
      See Also:
    • encryption

      @Stability(Stable) public Bucket.Builder encryption(BucketEncryption encryption)
      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.

      Parameters:
      encryption - The kind of server-side encryption to apply to this bucket. This parameter is required.
      Returns:
      this
    • encryptionKey

      @Stability(Stable) public Bucket.Builder encryptionKey(IKey encryptionKey)
      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.

      Parameters:
      encryptionKey - External KMS key to use for bucket encryption. This parameter is required.
      Returns:
      this
    • enforceSsl

      @Stability(Stable) public Bucket.Builder enforceSsl(Boolean enforceSsl)
      Enforces SSL for requests.

      S3.5 of the AWS Foundational Security Best Practices Regarding S3.

      Default: false

      Parameters:
      enforceSsl - Enforces SSL for requests. This parameter is required.
      Returns:
      this
      See Also:
    • eventBridgeEnabled

      @Stability(Stable) public Bucket.Builder eventBridgeEnabled(Boolean eventBridgeEnabled)
      Whether this bucket should send notifications to Amazon EventBridge or not.

      Default: false

      Parameters:
      eventBridgeEnabled - Whether this bucket should send notifications to Amazon EventBridge or not. This parameter is required.
      Returns:
      this
    • intelligentTieringConfigurations

      @Stability(Stable) public Bucket.Builder intelligentTieringConfigurations(List<? extends IntelligentTieringConfiguration> intelligentTieringConfigurations)
      Inteligent Tiering Configurations.

      Default: No Intelligent Tiiering Configurations.

      Parameters:
      intelligentTieringConfigurations - Inteligent Tiering Configurations. This parameter is required.
      Returns:
      this
      See Also:
    • inventories

      @Stability(Stable) public Bucket.Builder inventories(List<? extends Inventory> inventories)
      The inventory configuration of the bucket.

      Default: - No inventory configuration

      Parameters:
      inventories - The inventory configuration of the bucket. This parameter is required.
      Returns:
      this
      See Also:
    • lifecycleRules

      @Stability(Stable) public Bucket.Builder lifecycleRules(List<? extends LifecycleRule> lifecycleRules)
      Rules that define how Amazon S3 manages objects during their lifetime.

      Default: - No lifecycle rules.

      Parameters:
      lifecycleRules - Rules that define how Amazon S3 manages objects during their lifetime. This parameter is required.
      Returns:
      this
    • metrics

      @Stability(Stable) public Bucket.Builder metrics(List<? extends BucketMetrics> metrics)
      The metrics configuration of this bucket.

      Default: - No metrics configuration.

      Parameters:
      metrics - The metrics configuration of this bucket. This parameter is required.
      Returns:
      this
      See Also:
    • notificationsHandlerRole

      @Stability(Stable) public Bucket.Builder notificationsHandlerRole(IRole notificationsHandlerRole)
      The role to be used by the notifications handler.

      Default: - a new role will be created.

      Parameters:
      notificationsHandlerRole - The role to be used by the notifications handler. This parameter is required.
      Returns:
      this
    • objectOwnership

      @Stability(Stable) public Bucket.Builder objectOwnership(ObjectOwnership objectOwnership)
      The objectOwnership of the bucket.

      Default: - No ObjectOwnership configuration, uploading account will own the object.

      Parameters:
      objectOwnership - The objectOwnership of the bucket. This parameter is required.
      Returns:
      this
      See Also:
    • publicReadAccess

      @Stability(Stable) public Bucket.Builder publicReadAccess(Boolean publicReadAccess)
      Grants public read access to all objects in the bucket.

      Similar to calling bucket.grantPublicAccess()

      Default: false

      Parameters:
      publicReadAccess - Grants public read access to all objects in the bucket. This parameter is required.
      Returns:
      this
    • removalPolicy

      @Stability(Stable) public Bucket.Builder removalPolicy(RemovalPolicy removalPolicy)
      Policy to apply when the bucket is removed from this stack.

      Default: - The bucket will be orphaned.

      Parameters:
      removalPolicy - Policy to apply when the bucket is removed from this stack. This parameter is required.
      Returns:
      this
    • serverAccessLogsBucket

      @Stability(Stable) public Bucket.Builder serverAccessLogsBucket(IBucket serverAccessLogsBucket)
      Destination bucket for the server access logs.

      Default: - If "serverAccessLogsPrefix" undefined - access logs disabled, otherwise - log to current bucket.

      Parameters:
      serverAccessLogsBucket - Destination bucket for the server access logs. This parameter is required.
      Returns:
      this
    • serverAccessLogsPrefix

      @Stability(Stable) public Bucket.Builder serverAccessLogsPrefix(String serverAccessLogsPrefix)
      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

      Parameters:
      serverAccessLogsPrefix - Optional log file prefix to use for the bucket's access logs. This parameter is required.
      Returns:
      this
    • transferAcceleration

      @Stability(Stable) public Bucket.Builder transferAcceleration(Boolean transferAcceleration)
      Whether this bucket should have transfer acceleration turned on or not.

      Default: false

      Parameters:
      transferAcceleration - Whether this bucket should have transfer acceleration turned on or not. This parameter is required.
      Returns:
      this
    • versioned

      @Stability(Stable) public Bucket.Builder versioned(Boolean versioned)
      Whether this bucket should have versioning turned on or not.

      Default: false

      Parameters:
      versioned - Whether this bucket should have versioning turned on or not. This parameter is required.
      Returns:
      this
    • websiteErrorDocument

      @Stability(Stable) public Bucket.Builder websiteErrorDocument(String websiteErrorDocument)
      The name of the error document (e.g. "404.html") for the website. websiteIndexDocument must also be set if this is set.

      Default: - No error document.

      Parameters:
      websiteErrorDocument - The name of the error document (e.g. "404.html") for the website. websiteIndexDocument must also be set if this is set. This parameter is required.
      Returns:
      this
    • websiteIndexDocument

      @Stability(Stable) public Bucket.Builder websiteIndexDocument(String websiteIndexDocument)
      The name of the index document (e.g. "index.html") for the website. Enables static website hosting for this bucket.

      Default: - No index document.

      Parameters:
      websiteIndexDocument - The name of the index document (e.g. "index.html") for the website. Enables static website hosting for this bucket. This parameter is required.
      Returns:
      this
    • websiteRedirect

      @Stability(Stable) public Bucket.Builder websiteRedirect(RedirectTarget websiteRedirect)
      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.

      Parameters:
      websiteRedirect - Specifies the redirect behavior of all requests to a website endpoint of a bucket. This parameter is required.
      Returns:
      this
    • websiteRoutingRules

      @Stability(Stable) public Bucket.Builder websiteRoutingRules(List<? extends RoutingRule> websiteRoutingRules)
      Rules that define when a redirect is applied and the redirect behavior.

      Default: - No redirection rules.

      Parameters:
      websiteRoutingRules - Rules that define when a redirect is applied and the redirect behavior. This parameter is required.
      Returns:
      this
    • build

      @Stability(Stable) public Bucket build()
      Specified by:
      build in interface software.amazon.jsii.Builder<Bucket>
      Returns:
      a newly built instance of Bucket.