Interface FlowSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FlowSummary.Builder,FlowSummary>,SdkBuilder<FlowSummary.Builder,FlowSummary>,SdkPojo
- Enclosing class:
- FlowSummary
public static interface FlowSummary.Builder extends SdkPojo, CopyableBuilder<FlowSummary.Builder,FlowSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FlowSummary.Builderarn(String arn)The Amazon Resource Name (ARN) of the flow.FlowSummary.BuildercreatedAt(Instant createdAt)The time at which the flow was created.FlowSummary.Builderdescription(String description)A description of the flow.FlowSummary.Builderid(String id)The unique identifier of the flow.FlowSummary.Buildername(String name)The name of the flow.FlowSummary.Builderstatus(String status)The status of the flow.FlowSummary.Builderstatus(FlowStatus status)The status of the flow.FlowSummary.BuilderupdatedAt(Instant updatedAt)The time at which the flow was last updated.FlowSummary.Builderversion(String version)The latest version of the flow.-
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
-
arn
FlowSummary.Builder arn(String arn)
The Amazon Resource Name (ARN) of the flow.
- Parameters:
arn- The Amazon Resource Name (ARN) of the flow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdAt
FlowSummary.Builder createdAt(Instant createdAt)
The time at which the flow was created.
- Parameters:
createdAt- The time at which the flow was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
FlowSummary.Builder description(String description)
A description of the flow.
- Parameters:
description- A description of the flow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
id
FlowSummary.Builder id(String id)
The unique identifier of the flow.
- Parameters:
id- The unique identifier of the flow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
FlowSummary.Builder name(String name)
The name of the flow.
- Parameters:
name- The name of the flow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
FlowSummary.Builder status(String status)
The status of the flow. The following statuses are possible:
-
NotPrepared – The flow has been created or updated, but hasn't been prepared. If you just created the flow, you can't test it. If you updated the flow, the
DRAFTversion won't contain the latest changes for testing. Send a PrepareFlow request to package the latest changes into theDRAFTversion. -
Preparing – The flow is being prepared so that the
DRAFTversion contains the latest changes for testing. -
Prepared – The flow is prepared and the
DRAFTversion contains the latest changes for testing. -
Failed – The last API operation that you invoked on the flow failed. Send a GetFlow request and check the error message in the
validationsfield.
- Parameters:
status- The status of the flow. The following statuses are possible:-
NotPrepared – The flow has been created or updated, but hasn't been prepared. If you just created the flow, you can't test it. If you updated the flow, the
DRAFTversion won't contain the latest changes for testing. Send a PrepareFlow request to package the latest changes into theDRAFTversion. -
Preparing – The flow is being prepared so that the
DRAFTversion contains the latest changes for testing. -
Prepared – The flow is prepared and the
DRAFTversion contains the latest changes for testing. -
Failed – The last API operation that you invoked on the flow failed. Send a GetFlow request and check the error message in the
validationsfield.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FlowStatus,FlowStatus
-
-
status
FlowSummary.Builder status(FlowStatus status)
The status of the flow. The following statuses are possible:
-
NotPrepared – The flow has been created or updated, but hasn't been prepared. If you just created the flow, you can't test it. If you updated the flow, the
DRAFTversion won't contain the latest changes for testing. Send a PrepareFlow request to package the latest changes into theDRAFTversion. -
Preparing – The flow is being prepared so that the
DRAFTversion contains the latest changes for testing. -
Prepared – The flow is prepared and the
DRAFTversion contains the latest changes for testing. -
Failed – The last API operation that you invoked on the flow failed. Send a GetFlow request and check the error message in the
validationsfield.
- Parameters:
status- The status of the flow. The following statuses are possible:-
NotPrepared – The flow has been created or updated, but hasn't been prepared. If you just created the flow, you can't test it. If you updated the flow, the
DRAFTversion won't contain the latest changes for testing. Send a PrepareFlow request to package the latest changes into theDRAFTversion. -
Preparing – The flow is being prepared so that the
DRAFTversion contains the latest changes for testing. -
Prepared – The flow is prepared and the
DRAFTversion contains the latest changes for testing. -
Failed – The last API operation that you invoked on the flow failed. Send a GetFlow request and check the error message in the
validationsfield.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FlowStatus,FlowStatus
-
-
updatedAt
FlowSummary.Builder updatedAt(Instant updatedAt)
The time at which the flow was last updated.
- Parameters:
updatedAt- The time at which the flow was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
version
FlowSummary.Builder version(String version)
The latest version of the flow.
- Parameters:
version- The latest version of the flow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-