Interface S3Configuration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<S3Configuration.Builder,S3Configuration>,SdkBuilder<S3Configuration.Builder,S3Configuration>,SdkPojo
- Enclosing class:
- S3Configuration
public static interface S3Configuration.Builder extends SdkPojo, CopyableBuilder<S3Configuration.Builder,S3Configuration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description S3Configuration.BuilderbucketName(String bucketName)The name of the S3 bucket to deliver logs to.S3Configuration.Builderenabled(Boolean enabled)Indicates whether log delivery to the S3 bucket is enabled.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
bucketName
S3Configuration.Builder bucketName(String bucketName)
The name of the S3 bucket to deliver logs to.
- Parameters:
bucketName- The name of the S3 bucket to deliver logs to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
enabled
S3Configuration.Builder enabled(Boolean enabled)
Indicates whether log delivery to the S3 bucket is enabled.
- Parameters:
enabled- Indicates whether log delivery to the S3 bucket is enabled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-