Interface UpdateDocumentationPartResponse.Builder
-
- All Superinterfaces:
ApiGatewayResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<UpdateDocumentationPartResponse.Builder,UpdateDocumentationPartResponse>,SdkBuilder<UpdateDocumentationPartResponse.Builder,UpdateDocumentationPartResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- UpdateDocumentationPartResponse
public static interface UpdateDocumentationPartResponse.Builder extends ApiGatewayResponse.Builder, SdkPojo, CopyableBuilder<UpdateDocumentationPartResponse.Builder,UpdateDocumentationPartResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UpdateDocumentationPartResponse.Builderid(String id)The DocumentationPart identifier, generated by API Gateway when theDocumentationPartis created.default UpdateDocumentationPartResponse.Builderlocation(Consumer<DocumentationPartLocation.Builder> location)The location of the API entity to which the documentation applies.UpdateDocumentationPartResponse.Builderlocation(DocumentationPartLocation location)The location of the API entity to which the documentation applies.UpdateDocumentationPartResponse.Builderproperties(String properties)A content map of API-specific key-value pairs describing the targeted API entity.-
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
-
id
UpdateDocumentationPartResponse.Builder id(String id)
The DocumentationPart identifier, generated by API Gateway when the
DocumentationPartis created.- Parameters:
id- The DocumentationPart identifier, generated by API Gateway when theDocumentationPartis created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
location
UpdateDocumentationPartResponse.Builder location(DocumentationPartLocation location)
The location of the API entity to which the documentation applies. Valid fields depend on the targeted API entity type. All the valid location fields are not required. If not explicitly specified, a valid location field is treated as a wildcard and associated documentation content may be inherited by matching entities, unless overridden.
- Parameters:
location- The location of the API entity to which the documentation applies. Valid fields depend on the targeted API entity type. All the valid location fields are not required. If not explicitly specified, a valid location field is treated as a wildcard and associated documentation content may be inherited by matching entities, unless overridden.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
location
default UpdateDocumentationPartResponse.Builder location(Consumer<DocumentationPartLocation.Builder> location)
The location of the API entity to which the documentation applies. Valid fields depend on the targeted API entity type. All the valid location fields are not required. If not explicitly specified, a valid location field is treated as a wildcard and associated documentation content may be inherited by matching entities, unless overridden.
This is a convenience method that creates an instance of theDocumentationPartLocation.Builderavoiding the need to create one manually viaDocumentationPartLocation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tolocation(DocumentationPartLocation).- Parameters:
location- a consumer that will call methods onDocumentationPartLocation.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
location(DocumentationPartLocation)
-
properties
UpdateDocumentationPartResponse.Builder properties(String properties)
A content map of API-specific key-value pairs describing the targeted API entity. The map must be encoded as a JSON string, e.g.,
"{ \"description\": \"The API does ...\" }". Only OpenAPI-compliant documentation-related fields from the properties map are exported and, hence, published as part of the API entity definitions, while the original documentation parts are exported in a OpenAPI extension ofx-amazon-apigateway-documentation.- Parameters:
properties- A content map of API-specific key-value pairs describing the targeted API entity. The map must be encoded as a JSON string, e.g.,"{ \"description\": \"The API does ...\" }". Only OpenAPI-compliant documentation-related fields from the properties map are exported and, hence, published as part of the API entity definitions, while the original documentation parts are exported in a OpenAPI extension ofx-amazon-apigateway-documentation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-