Interface ServiceDeploymentBrief.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ServiceDeploymentBrief.Builder,ServiceDeploymentBrief>,SdkBuilder<ServiceDeploymentBrief.Builder,ServiceDeploymentBrief>,SdkPojo
- Enclosing class:
- ServiceDeploymentBrief
public static interface ServiceDeploymentBrief.Builder extends SdkPojo, CopyableBuilder<ServiceDeploymentBrief.Builder,ServiceDeploymentBrief>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServiceDeploymentBrief.BuilderclusterArn(String clusterArn)The ARN of the cluster that hosts the service.ServiceDeploymentBrief.BuildercreatedAt(Instant createdAt)The time that the service deployment was created.ServiceDeploymentBrief.BuilderfinishedAt(Instant finishedAt)The time that the service deployment completed.ServiceDeploymentBrief.BuilderserviceArn(String serviceArn)The ARN of the service for this service deployment.ServiceDeploymentBrief.BuilderserviceDeploymentArn(String serviceDeploymentArn)The ARN of the service deployment.ServiceDeploymentBrief.BuilderstartedAt(Instant startedAt)The time that the service deployment statred.ServiceDeploymentBrief.Builderstatus(String status)The status of the service deploymentServiceDeploymentBrief.Builderstatus(ServiceDeploymentStatus status)The status of the service deploymentServiceDeploymentBrief.BuilderstatusReason(String statusReason)Information about why the service deployment is in the current status.ServiceDeploymentBrief.BuildertargetServiceRevisionArn(String targetServiceRevisionArn)The ARN of the service revision being deplyed.-
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
-
serviceDeploymentArn
ServiceDeploymentBrief.Builder serviceDeploymentArn(String serviceDeploymentArn)
The ARN of the service deployment.
- Parameters:
serviceDeploymentArn- The ARN of the service deployment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
serviceArn
ServiceDeploymentBrief.Builder serviceArn(String serviceArn)
The ARN of the service for this service deployment.
- Parameters:
serviceArn- The ARN of the service for this service deployment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clusterArn
ServiceDeploymentBrief.Builder clusterArn(String clusterArn)
The ARN of the cluster that hosts the service.
- Parameters:
clusterArn- The ARN of the cluster that hosts the service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startedAt
ServiceDeploymentBrief.Builder startedAt(Instant startedAt)
The time that the service deployment statred. The format is yyyy-MM-dd HH:mm:ss.SSSSSS.
- Parameters:
startedAt- The time that the service deployment statred. The format is yyyy-MM-dd HH:mm:ss.SSSSSS.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdAt
ServiceDeploymentBrief.Builder createdAt(Instant createdAt)
The time that the service deployment was created. The format is yyyy-MM-dd HH:mm:ss.SSSSSS.
- Parameters:
createdAt- The time that the service deployment was created. The format is yyyy-MM-dd HH:mm:ss.SSSSSS.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
finishedAt
ServiceDeploymentBrief.Builder finishedAt(Instant finishedAt)
The time that the service deployment completed. The format is yyyy-MM-dd HH:mm:ss.SSSSSS.
- Parameters:
finishedAt- The time that the service deployment completed. The format is yyyy-MM-dd HH:mm:ss.SSSSSS.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targetServiceRevisionArn
ServiceDeploymentBrief.Builder targetServiceRevisionArn(String targetServiceRevisionArn)
The ARN of the service revision being deplyed.
- Parameters:
targetServiceRevisionArn- The ARN of the service revision being deplyed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
ServiceDeploymentBrief.Builder status(String status)
The status of the service deployment
- Parameters:
status- The status of the service deployment- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ServiceDeploymentStatus,ServiceDeploymentStatus
-
status
ServiceDeploymentBrief.Builder status(ServiceDeploymentStatus status)
The status of the service deployment
- Parameters:
status- The status of the service deployment- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ServiceDeploymentStatus,ServiceDeploymentStatus
-
statusReason
ServiceDeploymentBrief.Builder statusReason(String statusReason)
Information about why the service deployment is in the current status. For example, the circuit breaker detected a deployment failure.
- Parameters:
statusReason- Information about why the service deployment is in the current status. For example, the circuit breaker detected a deployment failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-