Interface ApprovalResult.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ApprovalResult.Builder,ApprovalResult>,SdkBuilder<ApprovalResult.Builder,ApprovalResult>,SdkPojo
- Enclosing class:
- ApprovalResult
public static interface ApprovalResult.Builder extends SdkPojo, CopyableBuilder<ApprovalResult.Builder,ApprovalResult>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApprovalResult.Builderstatus(String status)The response submitted by a reviewer assigned to an approval action request.ApprovalResult.Builderstatus(ApprovalStatus status)The response submitted by a reviewer assigned to an approval action request.ApprovalResult.Buildersummary(String summary)The summary of the current status of the approval request.-
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
-
summary
ApprovalResult.Builder summary(String summary)
The summary of the current status of the approval request.
- Parameters:
summary- The summary of the current status of the approval request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
ApprovalResult.Builder status(String status)
The response submitted by a reviewer assigned to an approval action request.
- Parameters:
status- The response submitted by a reviewer assigned to an approval action request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ApprovalStatus,ApprovalStatus
-
status
ApprovalResult.Builder status(ApprovalStatus status)
The response submitted by a reviewer assigned to an approval action request.
- Parameters:
status- The response submitted by a reviewer assigned to an approval action request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ApprovalStatus,ApprovalStatus
-
-