Interface OperationSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<OperationSummary.Builder,OperationSummary>,SdkBuilder<OperationSummary.Builder,OperationSummary>,SdkPojo
- Enclosing class:
- OperationSummary
public static interface OperationSummary.Builder extends SdkPojo, CopyableBuilder<OperationSummary.Builder,OperationSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OperationSummary.BuilderendedAt(Instant endedAt)The time when the operation ended.OperationSummary.Builderid(String id)A unique ID of this operation.OperationSummary.BuilderstartedAt(Instant startedAt)The time when the operation started.OperationSummary.Builderstatus(String status)The current state of the operation.OperationSummary.Builderstatus(OperationStatus status)The current state of the operation.OperationSummary.BuildertargetArn(String targetArn)The Amazon Resource Name (ARN) of the resource that the operation acted on (for example, an App Runner service).OperationSummary.Buildertype(String type)The type of operation.OperationSummary.Buildertype(OperationType type)The type of operation.OperationSummary.BuilderupdatedAt(Instant updatedAt)The time when the operation 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
-
id
OperationSummary.Builder id(String id)
A unique ID of this operation. It's unique in the scope of the App Runner service.
- Parameters:
id- A unique ID of this operation. It's unique in the scope of the App Runner service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
OperationSummary.Builder type(String type)
The type of operation. It indicates a specific action that occured.
- Parameters:
type- The type of operation. It indicates a specific action that occured.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OperationType,OperationType
-
type
OperationSummary.Builder type(OperationType type)
The type of operation. It indicates a specific action that occured.
- Parameters:
type- The type of operation. It indicates a specific action that occured.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OperationType,OperationType
-
status
OperationSummary.Builder status(String status)
The current state of the operation.
- Parameters:
status- The current state of the operation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OperationStatus,OperationStatus
-
status
OperationSummary.Builder status(OperationStatus status)
The current state of the operation.
- Parameters:
status- The current state of the operation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OperationStatus,OperationStatus
-
targetArn
OperationSummary.Builder targetArn(String targetArn)
The Amazon Resource Name (ARN) of the resource that the operation acted on (for example, an App Runner service).
- Parameters:
targetArn- The Amazon Resource Name (ARN) of the resource that the operation acted on (for example, an App Runner service).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startedAt
OperationSummary.Builder startedAt(Instant startedAt)
The time when the operation started. It's in the Unix time stamp format.
- Parameters:
startedAt- The time when the operation started. It's in the Unix time stamp format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endedAt
OperationSummary.Builder endedAt(Instant endedAt)
The time when the operation ended. It's in the Unix time stamp format.
- Parameters:
endedAt- The time when the operation ended. It's in the Unix time stamp format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
updatedAt
OperationSummary.Builder updatedAt(Instant updatedAt)
The time when the operation was last updated. It's in the Unix time stamp format.
- Parameters:
updatedAt- The time when the operation was last updated. It's in the Unix time stamp format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-