Interface GroupStatusDetail.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<GroupStatusDetail.Builder,GroupStatusDetail>,SdkBuilder<GroupStatusDetail.Builder,GroupStatusDetail>,SdkPojo
- Enclosing class:
- GroupStatusDetail
public static interface GroupStatusDetail.Builder extends SdkPojo, CopyableBuilder<GroupStatusDetail.Builder,GroupStatusDetail>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default GroupStatusDetail.BuildererrorDetail(Consumer<ErrorDetail.Builder> errorDetail)The details of an error associated a group status.GroupStatusDetail.BuildererrorDetail(ErrorDetail errorDetail)The details of an error associated a group status.GroupStatusDetail.BuilderlastUpdatedAt(Instant lastUpdatedAt)The Unix timestamp when the Amazon Q application was last updated.GroupStatusDetail.Builderstatus(String status)The status of a group.GroupStatusDetail.Builderstatus(GroupStatus status)The status of a group.-
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
-
errorDetail
GroupStatusDetail.Builder errorDetail(ErrorDetail errorDetail)
The details of an error associated a group status.
- Parameters:
errorDetail- The details of an error associated a group status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorDetail
default GroupStatusDetail.Builder errorDetail(Consumer<ErrorDetail.Builder> errorDetail)
The details of an error associated a group status.
This is a convenience method that creates an instance of theErrorDetail.Builderavoiding the need to create one manually viaErrorDetail.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toerrorDetail(ErrorDetail).- Parameters:
errorDetail- a consumer that will call methods onErrorDetail.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
errorDetail(ErrorDetail)
-
lastUpdatedAt
GroupStatusDetail.Builder lastUpdatedAt(Instant lastUpdatedAt)
The Unix timestamp when the Amazon Q application was last updated.
- Parameters:
lastUpdatedAt- The Unix timestamp when the Amazon Q application was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
GroupStatusDetail.Builder status(String status)
The status of a group.
- Parameters:
status- The status of a group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
GroupStatus,GroupStatus
-
status
GroupStatusDetail.Builder status(GroupStatus status)
The status of a group.
- Parameters:
status- The status of a group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
GroupStatus,GroupStatus
-
-