Interface CloudWatchLoggingOptions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CloudWatchLoggingOptions.Builder,CloudWatchLoggingOptions>,SdkBuilder<CloudWatchLoggingOptions.Builder,CloudWatchLoggingOptions>,SdkPojo
- Enclosing class:
- CloudWatchLoggingOptions
public static interface CloudWatchLoggingOptions.Builder extends SdkPojo, CopyableBuilder<CloudWatchLoggingOptions.Builder,CloudWatchLoggingOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CloudWatchLoggingOptions.Builderenabled(Boolean enabled)Enables or disables CloudWatch logging.CloudWatchLoggingOptions.BuilderlogGroupName(String logGroupName)The CloudWatch group name for logging.CloudWatchLoggingOptions.BuilderlogStreamName(String logStreamName)The CloudWatch log stream name for logging.-
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
-
enabled
CloudWatchLoggingOptions.Builder enabled(Boolean enabled)
Enables or disables CloudWatch logging.
- Parameters:
enabled- Enables or disables CloudWatch logging.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
logGroupName
CloudWatchLoggingOptions.Builder logGroupName(String logGroupName)
The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.
- Parameters:
logGroupName- The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
logStreamName
CloudWatchLoggingOptions.Builder logStreamName(String logStreamName)
The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.
- Parameters:
logStreamName- The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-