Interface CloudWatchLogsConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CloudWatchLogsConfig.Builder,CloudWatchLogsConfig>,SdkBuilder<CloudWatchLogsConfig.Builder,CloudWatchLogsConfig>,SdkPojo
- Enclosing class:
- CloudWatchLogsConfig
public static interface CloudWatchLogsConfig.Builder extends SdkPojo, CopyableBuilder<CloudWatchLogsConfig.Builder,CloudWatchLogsConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CloudWatchLogsConfig.BuildergroupName(String groupName)The group name of the logs in CloudWatch Logs.CloudWatchLogsConfig.Builderstatus(String status)The current status of the logs in CloudWatch Logs for a build project.CloudWatchLogsConfig.Builderstatus(LogsConfigStatusType status)The current status of the logs in CloudWatch Logs for a build project.CloudWatchLogsConfig.BuilderstreamName(String streamName)The prefix of the stream name of the CloudWatch Logs.-
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
-
status
CloudWatchLogsConfig.Builder status(String status)
The current status of the logs in CloudWatch Logs for a build project. Valid values are:
-
ENABLED: CloudWatch Logs are enabled for this build project. -
DISABLED: CloudWatch Logs are not enabled for this build project.
- Parameters:
status- The current status of the logs in CloudWatch Logs for a build project. Valid values are:-
ENABLED: CloudWatch Logs are enabled for this build project. -
DISABLED: CloudWatch Logs are not enabled for this build project.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
LogsConfigStatusType,LogsConfigStatusType
-
-
status
CloudWatchLogsConfig.Builder status(LogsConfigStatusType status)
The current status of the logs in CloudWatch Logs for a build project. Valid values are:
-
ENABLED: CloudWatch Logs are enabled for this build project. -
DISABLED: CloudWatch Logs are not enabled for this build project.
- Parameters:
status- The current status of the logs in CloudWatch Logs for a build project. Valid values are:-
ENABLED: CloudWatch Logs are enabled for this build project. -
DISABLED: CloudWatch Logs are not enabled for this build project.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
LogsConfigStatusType,LogsConfigStatusType
-
-
groupName
CloudWatchLogsConfig.Builder groupName(String groupName)
The group name of the logs in CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.
- Parameters:
groupName- The group name of the logs in CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
streamName
CloudWatchLogsConfig.Builder streamName(String streamName)
The prefix of the stream name of the CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.
- Parameters:
streamName- The prefix of the stream name of the CloudWatch Logs. For more information, see Working with Log Groups and Log Streams.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-