Class IntegrationTrait.Builder
java.lang.Object
software.amazon.smithy.model.traits.AbstractTraitBuilder<IntegrationTrait,IntegrationTrait.Builder>
software.amazon.smithy.aws.apigateway.traits.IntegrationTrait.Builder
- All Implemented Interfaces:
SmithyBuilder<IntegrationTrait>
- Enclosing class:
- IntegrationTrait
public static final class IntegrationTrait.Builder
extends AbstractTraitBuilder<IntegrationTrait,IntegrationTrait.Builder>
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionaddCacheKeyParameter
(String cacheKeyParameter) Adds a cache key parameter.build()
Creates an immutable object that is created from the properties that have been set on the builder.cacheKeyParameters
(List<String> cacheKeyParameters) Sets a list of request parameters whose values are to be cached.cacheNamespace
(String cacheNamespace) Set an API-specific tag group of related cached parameters.Clears all cache key parameters.connectionId
(String connectionId) Sets the ID of a VpcLink when using a private integration.connectionType
(String connectionType) Sets the connection type.contentHandling
(String contentHandling) Set the Request payload encoding conversion types.credentials
(String credentials) Specifies the credentials used by the integration, if any.httpMethod
(String httpMethod) Specifies the integration's HTTP method type.passThroughBehavior
(String passThroughBehavior) Configures the pass through behavior of the integration.payloadFormatVersion
(String payloadFormatVersion) Sets the payload format version.putRequestParameter
(String input, String output) Adds a request parameter.putRequestTemplate
(String mimeType, String template) Adds a request template.putResponse
(String statusCodeRegex, IntegrationResponse integrationResponse) Adds a response for the given response regex.removeCacheKeyParameter
(String cacheKeyParameter) Removes a specific cache key parameter.removeRequestParameter
(String expression) Remove a request parameter by expression.removeRequestTemplate
(String mimeType) Removes a request template by MIME type.removeResponse
(String statusCodeRegex) Removes a response by status code regex.requestParameters
(Map<String, String> requestParameters) Sets request parameters.requestTemplates
(Map<String, String> requestTemplates) Sets request templates.responses
(Map<String, IntegrationResponse> responses) Sets responses for the given response regular expressions.timeoutInMillis
(Integer timeoutInMillis) Set the timeout in milliseconds.Sets the integration type.Sets the URI of the integration endpoint.Methods inherited from class software.amazon.smithy.model.traits.AbstractTraitBuilder
getSourceLocation, sourceLocation
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Description copied from interface:SmithyBuilder
Creates an immutable object that is created from the properties that have been set on the builder.- Returns:
- an instance of T
-
type
Sets the integration type.- Parameters:
type
- Type to set (aws, aws_proxy, http, http_proxy).- Returns:
- Returns the builder.
-
uri
Sets the URI of the integration endpoint.- Parameters:
uri
- The URI of the integration.- Returns:
- Returns the builder.
-
credentials
Specifies the credentials used by the integration, if any.- Parameters:
credentials
- Credentials to use.- Returns:
- Returns the builder.
-
httpMethod
Specifies the integration's HTTP method type.- Parameters:
httpMethod
- HTTP method to use.- Returns:
- Returns the builder.
-
passThroughBehavior
Configures the pass through behavior of the integration.- Parameters:
passThroughBehavior
- Pass through behavior setting.- Returns:
- Returns the builder.
- See Also:
-
contentHandling
Set the Request payload encoding conversion types.Valid values are:
- CONVERT_TO_TEXT, for converting a binary payload into a Base64-encoded string or converting a text payload into a utf-8-encoded string or passing through the text payload natively without modification
- CONVERT_TO_BINARY, for converting a text payload into Base64-decoded blob or passing through a binary payload natively without modification.
- Parameters:
contentHandling
- Content handling property.- Returns:
- Returns the builder.
-
timeoutInMillis
Set the timeout in milliseconds.Integration timeouts between 50 ms and 29,000 ms. The default setting used by API Gateway is 29,000 (or, 29 seconds).
- Parameters:
timeoutInMillis
- Timeout in milliseconds.- Returns:
- Returns the builder.
-
connectionId
Sets the ID of a VpcLink when using a private integration.- Parameters:
connectionId
- VPC link ID.- Returns:
- Returns the builder.
-
connectionType
Sets the connection type.- Parameters:
connectionType
- Connection type to set.- Returns:
- Returns the builder.
-
cacheNamespace
Set an API-specific tag group of related cached parameters.- Parameters:
cacheNamespace
- Cache namespace to set.- Returns:
- Returns the builder.
-
payloadFormatVersion
Sets the payload format version. Required for HTTP APIs.- Parameters:
payloadFormatVersion
- Payload format version to set.- Returns:
- Returns the builder.
-
addCacheKeyParameter
Adds a cache key parameter.- Parameters:
cacheKeyParameter
- Parameter to add.- Returns:
- Returns the builder.
-
cacheKeyParameters
Sets a list of request parameters whose values are to be cached.- Parameters:
cacheKeyParameters
- Parameters to use in the cache.- Returns:
- Returns the builder.
-
removeCacheKeyParameter
Removes a specific cache key parameter.- Parameters:
cacheKeyParameter
- Parameter to remove.- Returns:
- Returns the builder.
-
clearCacheKeyParameters
Clears all cache key parameters.- Returns:
- Returns the builder.
-
putRequestParameter
Adds a request parameter.- Parameters:
input
- Input request expression.output
- Output request expression.- Returns:
- Returns the builder.
- See Also:
-
requestParameters
Sets request parameters.- Parameters:
requestParameters
- Map of parameters to add.- Returns:
- Returns the builder.
- See Also:
-
removeRequestParameter
Remove a request parameter by expression.- Parameters:
expression
- Expression to remove.- Returns:
- Returns the builder.
-
putRequestTemplate
Adds a request template.- Parameters:
mimeType
- MIME type of the request template to set.template
- Request template to set.- Returns:
- Returns the builder.
- See Also:
-
requestTemplates
Sets request templates.- Parameters:
requestTemplates
- Map of MIME types to the corresponding template.- Returns:
- Returns the builder.
- See Also:
-
removeRequestTemplate
Removes a request template by MIME type.- Parameters:
mimeType
- MIME type to remove.- Returns:
- Returns the builder.
-
putResponse
public IntegrationTrait.Builder putResponse(String statusCodeRegex, IntegrationResponse integrationResponse) Adds a response for the given response regex.- Parameters:
statusCodeRegex
- Status code regular expression.integrationResponse
- Integration response to set.- Returns:
- Returns the builder.
- See Also:
-
responses
Sets responses for the given response regular expressions.- Parameters:
responses
- Map of regular expressions to responses.- Returns:
- Returns the builder.
- See Also:
-
removeResponse
Removes a response by status code regex.- Parameters:
statusCodeRegex
- Status code regular expression to remove.- Returns:
- Returns the builder.
-