Interface ConnectionLogOptions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ConnectionLogOptions.Builder,ConnectionLogOptions>,SdkBuilder<ConnectionLogOptions.Builder,ConnectionLogOptions>,SdkPojo
- Enclosing class:
- ConnectionLogOptions
public static interface ConnectionLogOptions.Builder extends SdkPojo, CopyableBuilder<ConnectionLogOptions.Builder,ConnectionLogOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConnectionLogOptions.BuildercloudwatchLogGroup(String cloudwatchLogGroup)The name of the CloudWatch Logs log group.ConnectionLogOptions.BuildercloudwatchLogStream(String cloudwatchLogStream)The name of the CloudWatch Logs log stream to which the connection data is published.ConnectionLogOptions.Builderenabled(Boolean enabled)Indicates whether connection logging 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
-
enabled
ConnectionLogOptions.Builder enabled(Boolean enabled)
Indicates whether connection logging is enabled.
- Parameters:
enabled- Indicates whether connection logging is enabled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cloudwatchLogGroup
ConnectionLogOptions.Builder cloudwatchLogGroup(String cloudwatchLogGroup)
The name of the CloudWatch Logs log group. Required if connection logging is enabled.
- Parameters:
cloudwatchLogGroup- The name of the CloudWatch Logs log group. Required if connection logging is enabled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cloudwatchLogStream
ConnectionLogOptions.Builder cloudwatchLogStream(String cloudwatchLogStream)
The name of the CloudWatch Logs log stream to which the connection data is published.
- Parameters:
cloudwatchLogStream- The name of the CloudWatch Logs log stream to which the connection data is published.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-