Interface ServerSideEncryptionRule.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<ServerSideEncryptionRule.Builder,,ServerSideEncryptionRule> SdkBuilder<ServerSideEncryptionRule.Builder,,ServerSideEncryptionRule> SdkPojo
- Enclosing class:
ServerSideEncryptionRule
-
Method Summary
Modifier and TypeMethodDescriptiondefault ServerSideEncryptionRule.BuilderapplyServerSideEncryptionByDefault(Consumer<ServerSideEncryptionByDefault.Builder> applyServerSideEncryptionByDefault) Specifies the default server-side encryption to apply to new objects in the bucket.applyServerSideEncryptionByDefault(ServerSideEncryptionByDefault applyServerSideEncryptionByDefault) Specifies the default server-side encryption to apply to new objects in the bucket.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.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Method Details
-
applyServerSideEncryptionByDefault
ServerSideEncryptionRule.Builder applyServerSideEncryptionByDefault(ServerSideEncryptionByDefault applyServerSideEncryptionByDefault) Specifies the default server-side encryption to apply to new objects in the bucket. If a PUT Object request doesn't specify any server-side encryption, this default encryption will be applied.
- Parameters:
applyServerSideEncryptionByDefault- Specifies the default server-side encryption to apply to new objects in the bucket. If a PUT Object request doesn't specify any server-side encryption, this default encryption will be applied.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applyServerSideEncryptionByDefault
default ServerSideEncryptionRule.Builder applyServerSideEncryptionByDefault(Consumer<ServerSideEncryptionByDefault.Builder> applyServerSideEncryptionByDefault) Specifies the default server-side encryption to apply to new objects in the bucket. If a PUT Object request doesn't specify any server-side encryption, this default encryption will be applied.
This is a convenience method that creates an instance of theServerSideEncryptionByDefault.Builderavoiding the need to create one manually viaServerSideEncryptionByDefault.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toapplyServerSideEncryptionByDefault(ServerSideEncryptionByDefault).- Parameters:
applyServerSideEncryptionByDefault- a consumer that will call methods onServerSideEncryptionByDefault.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
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. Existing objects are not affected. Setting the
BucketKeyEnabledelement totruecauses Amazon S3 to use an S3 Bucket Key. By default, S3 Bucket Key is not enabled.For more information, see Amazon S3 Bucket Keys in the Amazon S3 User Guide.
- 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. Existing objects are not affected. Setting theBucketKeyEnabledelement totruecauses Amazon S3 to use an S3 Bucket Key. By default, S3 Bucket Key is not enabled.For more information, see Amazon S3 Bucket Keys in the Amazon S3 User Guide.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-