Interface S3LogDestinationParameters.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<S3LogDestinationParameters.Builder,S3LogDestinationParameters>,SdkBuilder<S3LogDestinationParameters.Builder,S3LogDestinationParameters>,SdkPojo
- Enclosing class:
- S3LogDestinationParameters
public static interface S3LogDestinationParameters.Builder extends SdkPojo, CopyableBuilder<S3LogDestinationParameters.Builder,S3LogDestinationParameters>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description S3LogDestinationParameters.BuilderbucketName(String bucketName)Specifies the name of the Amazon S3 bucket to which EventBridge delivers the log records for the pipe.S3LogDestinationParameters.BuilderbucketOwner(String bucketOwner)Specifies the Amazon Web Services account that owns the Amazon S3 bucket to which EventBridge delivers the log records for the pipe.S3LogDestinationParameters.BuilderoutputFormat(String outputFormat)How EventBridge should format the log records.S3LogDestinationParameters.BuilderoutputFormat(S3OutputFormat outputFormat)How EventBridge should format the log records.S3LogDestinationParameters.Builderprefix(String prefix)Specifies any prefix text with which to begin Amazon S3 log object names.-
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
S3LogDestinationParameters.Builder bucketName(String bucketName)
Specifies the name of the Amazon S3 bucket to which EventBridge delivers the log records for the pipe.
- Parameters:
bucketName- Specifies the name of the Amazon S3 bucket to which EventBridge delivers the log records for the pipe.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bucketOwner
S3LogDestinationParameters.Builder bucketOwner(String bucketOwner)
Specifies the Amazon Web Services account that owns the Amazon S3 bucket to which EventBridge delivers the log records for the pipe.
- Parameters:
bucketOwner- Specifies the Amazon Web Services account that owns the Amazon S3 bucket to which EventBridge delivers the log records for the pipe.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outputFormat
S3LogDestinationParameters.Builder outputFormat(String outputFormat)
How EventBridge should format the log records.
-
json: JSON -
plain: Plain text
- Parameters:
outputFormat- How EventBridge should format the log records.-
json: JSON -
plain: Plain text
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
S3OutputFormat,S3OutputFormat
-
-
outputFormat
S3LogDestinationParameters.Builder outputFormat(S3OutputFormat outputFormat)
How EventBridge should format the log records.
-
json: JSON -
plain: Plain text
- Parameters:
outputFormat- How EventBridge should format the log records.-
json: JSON -
plain: Plain text
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
S3OutputFormat,S3OutputFormat
-
-
prefix
S3LogDestinationParameters.Builder prefix(String prefix)
Specifies any prefix text with which to begin Amazon S3 log object names.
You can use prefixes to organize the data that you store in Amazon S3 buckets. A prefix is a string of characters at the beginning of the object key name. A prefix can be any length, subject to the maximum length of the object key name (1,024 bytes). For more information, see Organizing objects using prefixes in the Amazon Simple Storage Service User Guide.
- Parameters:
prefix- Specifies any prefix text with which to begin Amazon S3 log object names.You can use prefixes to organize the data that you store in Amazon S3 buckets. A prefix is a string of characters at the beginning of the object key name. A prefix can be any length, subject to the maximum length of the object key name (1,024 bytes). For more information, see Organizing objects using prefixes in the Amazon Simple Storage Service User Guide.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-