Interface AlgorithmSummary.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<AlgorithmSummary.Builder,AlgorithmSummary>
,SdkBuilder<AlgorithmSummary.Builder,AlgorithmSummary>
,SdkPojo
- Enclosing class:
- AlgorithmSummary
public static interface AlgorithmSummary.Builder extends SdkPojo, CopyableBuilder<AlgorithmSummary.Builder,AlgorithmSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AlgorithmSummary.Builder
algorithmArn(String algorithmArn)
The Amazon Resource Name (ARN) of the algorithm.AlgorithmSummary.Builder
algorithmDescription(String algorithmDescription)
A brief description of the algorithm.AlgorithmSummary.Builder
algorithmName(String algorithmName)
The name of the algorithm that is described by the summary.AlgorithmSummary.Builder
algorithmStatus(String algorithmStatus)
The overall status of the algorithm.AlgorithmSummary.Builder
algorithmStatus(AlgorithmStatus algorithmStatus)
The overall status of the algorithm.AlgorithmSummary.Builder
creationTime(Instant creationTime)
A timestamp that shows when the algorithm was created.-
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
-
algorithmName
AlgorithmSummary.Builder algorithmName(String algorithmName)
The name of the algorithm that is described by the summary.
- Parameters:
algorithmName
- The name of the algorithm that is described by the summary.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
algorithmArn
AlgorithmSummary.Builder algorithmArn(String algorithmArn)
The Amazon Resource Name (ARN) of the algorithm.
- Parameters:
algorithmArn
- The Amazon Resource Name (ARN) of the algorithm.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
algorithmDescription
AlgorithmSummary.Builder algorithmDescription(String algorithmDescription)
A brief description of the algorithm.
- Parameters:
algorithmDescription
- A brief description of the algorithm.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTime
AlgorithmSummary.Builder creationTime(Instant creationTime)
A timestamp that shows when the algorithm was created.
- Parameters:
creationTime
- A timestamp that shows when the algorithm was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
algorithmStatus
AlgorithmSummary.Builder algorithmStatus(String algorithmStatus)
The overall status of the algorithm.
- Parameters:
algorithmStatus
- The overall status of the algorithm.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AlgorithmStatus
,AlgorithmStatus
-
algorithmStatus
AlgorithmSummary.Builder algorithmStatus(AlgorithmStatus algorithmStatus)
The overall status of the algorithm.
- Parameters:
algorithmStatus
- The overall status of the algorithm.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AlgorithmStatus
,AlgorithmStatus
-
-