Interface GetGatewayResponsesResponse.Builder
-
- All Superinterfaces:
ApiGatewayResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<GetGatewayResponsesResponse.Builder,GetGatewayResponsesResponse>,SdkBuilder<GetGatewayResponsesResponse.Builder,GetGatewayResponsesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetGatewayResponsesResponse
public static interface GetGatewayResponsesResponse.Builder extends ApiGatewayResponse.Builder, SdkPojo, CopyableBuilder<GetGatewayResponsesResponse.Builder,GetGatewayResponsesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetGatewayResponsesResponse.Builderitems(Collection<GatewayResponse> items)Returns the entire collection, because of no pagination support.GetGatewayResponsesResponse.Builderitems(Consumer<GatewayResponse.Builder>... items)Returns the entire collection, because of no pagination support.GetGatewayResponsesResponse.Builderitems(GatewayResponse... items)Returns the entire collection, because of no pagination support.GetGatewayResponsesResponse.Builderposition(String position)Sets the value of the Position property for this object.-
Methods inherited from interface software.amazon.awssdk.services.apigateway.model.ApiGatewayResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
position
GetGatewayResponsesResponse.Builder position(String position)
Sets the value of the Position property for this object.- Parameters:
position- The new value for the Position property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
GetGatewayResponsesResponse.Builder items(Collection<GatewayResponse> items)
Returns the entire collection, because of no pagination support.
- Parameters:
items- Returns the entire collection, because of no pagination support.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
GetGatewayResponsesResponse.Builder items(GatewayResponse... items)
Returns the entire collection, because of no pagination support.
- Parameters:
items- Returns the entire collection, because of no pagination support.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
GetGatewayResponsesResponse.Builder items(Consumer<GatewayResponse.Builder>... items)
Returns the entire collection, because of no pagination support.
This is a convenience method that creates an instance of theGatewayResponse.Builderavoiding the need to create one manually viaGatewayResponse.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#items(List.) - Parameters:
items- a consumer that will call methods onGatewayResponse.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection)
-
-