Interface GetDocumentationPartsResponse.Builder
-
- All Superinterfaces:
ApiGatewayResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<GetDocumentationPartsResponse.Builder,GetDocumentationPartsResponse>,SdkBuilder<GetDocumentationPartsResponse.Builder,GetDocumentationPartsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetDocumentationPartsResponse
public static interface GetDocumentationPartsResponse.Builder extends ApiGatewayResponse.Builder, SdkPojo, CopyableBuilder<GetDocumentationPartsResponse.Builder,GetDocumentationPartsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetDocumentationPartsResponse.Builderitems(Collection<DocumentationPart> items)The current page of elements from this collection.GetDocumentationPartsResponse.Builderitems(Consumer<DocumentationPart.Builder>... items)The current page of elements from this collection.GetDocumentationPartsResponse.Builderitems(DocumentationPart... items)The current page of elements from this collection.GetDocumentationPartsResponse.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
GetDocumentationPartsResponse.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
GetDocumentationPartsResponse.Builder items(Collection<DocumentationPart> items)
The current page of elements from this collection.
- Parameters:
items- The current page of elements from this collection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
GetDocumentationPartsResponse.Builder items(DocumentationPart... items)
The current page of elements from this collection.
- Parameters:
items- The current page of elements from this collection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
GetDocumentationPartsResponse.Builder items(Consumer<DocumentationPart.Builder>... items)
The current page of elements from this collection.
This is a convenience method that creates an instance of theDocumentationPart.Builderavoiding the need to create one manually viaDocumentationPart.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 onDocumentationPart.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection)
-
-