Interface QueueSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<QueueSummary.Builder,QueueSummary>,SdkBuilder<QueueSummary.Builder,QueueSummary>,SdkPojo
- Enclosing class:
- QueueSummary
public static interface QueueSummary.Builder extends SdkPojo, CopyableBuilder<QueueSummary.Builder,QueueSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QueueSummary.Builderarn(String arn)The unique Amazon Resource Name (ARN) of the queue.QueueSummary.BuilderclusterId(String clusterId)The ID of the cluster of the queue.QueueSummary.BuildercreatedAt(Instant createdAt)The date and time the resource was created.QueueSummary.Builderid(String id)The generated unique ID of the queue.QueueSummary.BuildermodifiedAt(Instant modifiedAt)The date and time the resource was modified.QueueSummary.Buildername(String name)The name that identifies the queue.QueueSummary.Builderstatus(String status)The provisioning status of the queue.QueueSummary.Builderstatus(QueueStatus status)The provisioning status of the queue.-
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
-
name
QueueSummary.Builder name(String name)
The name that identifies the queue.
- Parameters:
name- The name that identifies the queue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
id
QueueSummary.Builder id(String id)
The generated unique ID of the queue.
- Parameters:
id- The generated unique ID of the queue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
QueueSummary.Builder arn(String arn)
The unique Amazon Resource Name (ARN) of the queue.
- Parameters:
arn- The unique Amazon Resource Name (ARN) of the queue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clusterId
QueueSummary.Builder clusterId(String clusterId)
The ID of the cluster of the queue.
- Parameters:
clusterId- The ID of the cluster of the queue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdAt
QueueSummary.Builder createdAt(Instant createdAt)
The date and time the resource was created.
- Parameters:
createdAt- The date and time the resource was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
modifiedAt
QueueSummary.Builder modifiedAt(Instant modifiedAt)
The date and time the resource was modified.
- Parameters:
modifiedAt- The date and time the resource was modified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
QueueSummary.Builder status(String status)
The provisioning status of the queue.
The provisioning status doesn't indicate the overall health of the queue.
- Parameters:
status- The provisioning status of the queue.The provisioning status doesn't indicate the overall health of the queue.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
QueueStatus,QueueStatus
-
status
QueueSummary.Builder status(QueueStatus status)
The provisioning status of the queue.
The provisioning status doesn't indicate the overall health of the queue.
- Parameters:
status- The provisioning status of the queue.The provisioning status doesn't indicate the overall health of the queue.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
QueueStatus,QueueStatus
-
-