Interface ServiceDeploymentAlarms.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ServiceDeploymentAlarms.Builder,ServiceDeploymentAlarms>,SdkBuilder<ServiceDeploymentAlarms.Builder,ServiceDeploymentAlarms>,SdkPojo
- Enclosing class:
- ServiceDeploymentAlarms
public static interface ServiceDeploymentAlarms.Builder extends SdkPojo, CopyableBuilder<ServiceDeploymentAlarms.Builder,ServiceDeploymentAlarms>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServiceDeploymentAlarms.BuilderalarmNames(String... alarmNames)The name of the CloudWatch alarms that determine when a service deployment failed.ServiceDeploymentAlarms.BuilderalarmNames(Collection<String> alarmNames)The name of the CloudWatch alarms that determine when a service deployment failed.ServiceDeploymentAlarms.Builderstatus(String status)The status of the alarms check.ServiceDeploymentAlarms.Builderstatus(ServiceDeploymentRollbackMonitorsStatus status)The status of the alarms check.ServiceDeploymentAlarms.BuildertriggeredAlarmNames(String... triggeredAlarmNames)One or more CloudWatch alarm names that have been triggered during the service deployment.ServiceDeploymentAlarms.BuildertriggeredAlarmNames(Collection<String> triggeredAlarmNames)One or more CloudWatch alarm names that have been triggered during the service deployment.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
status
ServiceDeploymentAlarms.Builder status(String status)
The status of the alarms check. Amazon ECS is not using alarms for service deployment failures when the status is
DISABLED.- Parameters:
status- The status of the alarms check. Amazon ECS is not using alarms for service deployment failures when the status isDISABLED.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ServiceDeploymentRollbackMonitorsStatus,ServiceDeploymentRollbackMonitorsStatus
-
status
ServiceDeploymentAlarms.Builder status(ServiceDeploymentRollbackMonitorsStatus status)
The status of the alarms check. Amazon ECS is not using alarms for service deployment failures when the status is
DISABLED.- Parameters:
status- The status of the alarms check. Amazon ECS is not using alarms for service deployment failures when the status isDISABLED.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ServiceDeploymentRollbackMonitorsStatus,ServiceDeploymentRollbackMonitorsStatus
-
alarmNames
ServiceDeploymentAlarms.Builder alarmNames(Collection<String> alarmNames)
The name of the CloudWatch alarms that determine when a service deployment failed. A "," separates the alarms.
- Parameters:
alarmNames- The name of the CloudWatch alarms that determine when a service deployment failed. A "," separates the alarms.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
alarmNames
ServiceDeploymentAlarms.Builder alarmNames(String... alarmNames)
The name of the CloudWatch alarms that determine when a service deployment failed. A "," separates the alarms.
- Parameters:
alarmNames- The name of the CloudWatch alarms that determine when a service deployment failed. A "," separates the alarms.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
triggeredAlarmNames
ServiceDeploymentAlarms.Builder triggeredAlarmNames(Collection<String> triggeredAlarmNames)
One or more CloudWatch alarm names that have been triggered during the service deployment. A "," separates the alarm names.
- Parameters:
triggeredAlarmNames- One or more CloudWatch alarm names that have been triggered during the service deployment. A "," separates the alarm names.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
triggeredAlarmNames
ServiceDeploymentAlarms.Builder triggeredAlarmNames(String... triggeredAlarmNames)
One or more CloudWatch alarm names that have been triggered during the service deployment. A "," separates the alarm names.
- Parameters:
triggeredAlarmNames- One or more CloudWatch alarm names that have been triggered during the service deployment. A "," separates the alarm names.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-