Interface ReceivedMetadata.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ReceivedMetadata.Builder,ReceivedMetadata>,SdkBuilder<ReceivedMetadata.Builder,ReceivedMetadata>,SdkPojo
- Enclosing class:
- ReceivedMetadata
public static interface ReceivedMetadata.Builder extends SdkPojo, CopyableBuilder<ReceivedMetadata.Builder,ReceivedMetadata>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ReceivedMetadata.BuilderallowedOperations(Collection<AllowedOperation> allowedOperations)Allowed operations.ReceivedMetadata.BuilderallowedOperations(AllowedOperation... allowedOperations)Allowed operations.ReceivedMetadata.BuilderallowedOperationsWithStrings(String... allowedOperations)Allowed operations.ReceivedMetadata.BuilderallowedOperationsWithStrings(Collection<String> allowedOperations)Allowed operations.ReceivedMetadata.BuilderreceivedStatus(String receivedStatus)Received status.ReceivedMetadata.BuilderreceivedStatus(ReceivedStatus receivedStatus)Received status.ReceivedMetadata.BuilderreceivedStatusReason(String receivedStatusReason)Received status reason.-
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
-
receivedStatus
ReceivedMetadata.Builder receivedStatus(String receivedStatus)
Received status.
- Parameters:
receivedStatus- Received status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ReceivedStatus,ReceivedStatus
-
receivedStatus
ReceivedMetadata.Builder receivedStatus(ReceivedStatus receivedStatus)
Received status.
- Parameters:
receivedStatus- Received status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ReceivedStatus,ReceivedStatus
-
receivedStatusReason
ReceivedMetadata.Builder receivedStatusReason(String receivedStatusReason)
Received status reason.
- Parameters:
receivedStatusReason- Received status reason.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
allowedOperationsWithStrings
ReceivedMetadata.Builder allowedOperationsWithStrings(Collection<String> allowedOperations)
Allowed operations.
- Parameters:
allowedOperations- Allowed operations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
allowedOperationsWithStrings
ReceivedMetadata.Builder allowedOperationsWithStrings(String... allowedOperations)
Allowed operations.
- Parameters:
allowedOperations- Allowed operations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
allowedOperations
ReceivedMetadata.Builder allowedOperations(Collection<AllowedOperation> allowedOperations)
Allowed operations.
- Parameters:
allowedOperations- Allowed operations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
allowedOperations
ReceivedMetadata.Builder allowedOperations(AllowedOperation... allowedOperations)
Allowed operations.
- Parameters:
allowedOperations- Allowed operations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-