Interface ServiceSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ServiceSummary.Builder,ServiceSummary>,SdkBuilder<ServiceSummary.Builder,ServiceSummary>,SdkPojo
- Enclosing class:
- ServiceSummary
public static interface ServiceSummary.Builder extends SdkPojo, CopyableBuilder<ServiceSummary.Builder,ServiceSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServiceSummary.BuildercreatedAt(Instant createdAt)The time when the App Runner service was created.ServiceSummary.BuilderserviceArn(String serviceArn)The Amazon Resource Name (ARN) of this service.ServiceSummary.BuilderserviceId(String serviceId)An ID that App Runner generated for this service.ServiceSummary.BuilderserviceName(String serviceName)The customer-provided service name.ServiceSummary.BuilderserviceUrl(String serviceUrl)A subdomain URL that App Runner generated for this service.ServiceSummary.Builderstatus(String status)The current state of the App Runner service.ServiceSummary.Builderstatus(ServiceStatus status)The current state of the App Runner service.ServiceSummary.BuilderupdatedAt(Instant updatedAt)The time when the App Runner service was last updated.-
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
-
serviceName
ServiceSummary.Builder serviceName(String serviceName)
The customer-provided service name.
- Parameters:
serviceName- The customer-provided service name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
serviceId
ServiceSummary.Builder serviceId(String serviceId)
An ID that App Runner generated for this service. It's unique within the Amazon Web Services Region.
- Parameters:
serviceId- An ID that App Runner generated for this service. It's unique within the Amazon Web Services Region.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
serviceArn
ServiceSummary.Builder serviceArn(String serviceArn)
The Amazon Resource Name (ARN) of this service.
- Parameters:
serviceArn- The Amazon Resource Name (ARN) of this service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
serviceUrl
ServiceSummary.Builder serviceUrl(String serviceUrl)
A subdomain URL that App Runner generated for this service. You can use this URL to access your service web application.
- Parameters:
serviceUrl- A subdomain URL that App Runner generated for this service. You can use this URL to access your service web application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdAt
ServiceSummary.Builder createdAt(Instant createdAt)
The time when the App Runner service was created. It's in the Unix time stamp format.
- Parameters:
createdAt- The time when the App Runner service was created. It's in the Unix time stamp format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
updatedAt
ServiceSummary.Builder updatedAt(Instant updatedAt)
The time when the App Runner service was last updated. It's in theUnix time stamp format.
- Parameters:
updatedAt- The time when the App Runner service was last updated. It's in theUnix time stamp format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
ServiceSummary.Builder status(String status)
The current state of the App Runner service. These particular values mean the following.
-
CREATE_FAILED– The service failed to create. The failed service isn't usable, and still counts towards your service quota. To troubleshoot this failure, read the failure events and logs, change any parameters that need to be fixed, and rebuild your service usingUpdateService. -
DELETE_FAILED– The service failed to delete and can't be successfully recovered. Retry the service deletion call to ensure that all related resources are removed.
- Parameters:
status- The current state of the App Runner service. These particular values mean the following.-
CREATE_FAILED– The service failed to create. The failed service isn't usable, and still counts towards your service quota. To troubleshoot this failure, read the failure events and logs, change any parameters that need to be fixed, and rebuild your service usingUpdateService. -
DELETE_FAILED– The service failed to delete and can't be successfully recovered. Retry the service deletion call to ensure that all related resources are removed.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ServiceStatus,ServiceStatus
-
-
status
ServiceSummary.Builder status(ServiceStatus status)
The current state of the App Runner service. These particular values mean the following.
-
CREATE_FAILED– The service failed to create. The failed service isn't usable, and still counts towards your service quota. To troubleshoot this failure, read the failure events and logs, change any parameters that need to be fixed, and rebuild your service usingUpdateService. -
DELETE_FAILED– The service failed to delete and can't be successfully recovered. Retry the service deletion call to ensure that all related resources are removed.
- Parameters:
status- The current state of the App Runner service. These particular values mean the following.-
CREATE_FAILED– The service failed to create. The failed service isn't usable, and still counts towards your service quota. To troubleshoot this failure, read the failure events and logs, change any parameters that need to be fixed, and rebuild your service usingUpdateService. -
DELETE_FAILED– The service failed to delete and can't be successfully recovered. Retry the service deletion call to ensure that all related resources are removed.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ServiceStatus,ServiceStatus
-
-
-