Interface ApiGatewayIntegrationResponse
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ApiGatewayIntegrationResponse.Jsii$Proxy
@Generated(value="jsii-pacmak/1.71.0 (build f1f58ae)", date="2022-12-01T04:12:24.757Z") @Stability(Experimental) public interface ApiGatewayIntegrationResponse extends software.amazon.jsii.JsiiSerializable
(experimental) API Gateway integration response.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classApiGatewayIntegrationResponse.BuilderA builder forApiGatewayIntegrationResponsestatic classApiGatewayIntegrationResponse.Jsii$ProxyAn implementation forApiGatewayIntegrationResponse
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static ApiGatewayIntegrationResponse.Builderbuilder()default StringgetContentHandling()(experimental) Response payload encoding conversion types.Map<String,String>getResponseParameters()(experimental) Specifies parameter mappings for the response.Map<String,String>getResponseTemplates()(experimental) Specifies MIME type-specific mapping templates for the response’s payload.StringgetStatusCode()(experimental) HTTP status code for the method response.
-
-
-
Method Detail
-
getResponseParameters
@Stability(Experimental) @NotNull Map<String,String> getResponseParameters()
(experimental) Specifies parameter mappings for the response.
-
getResponseTemplates
@Stability(Experimental) @NotNull Map<String,String> getResponseTemplates()
(experimental) Specifies MIME type-specific mapping templates for the response’s payload.
-
getStatusCode
@Stability(Experimental) @NotNull String getStatusCode()
(experimental) HTTP status code for the method response.
-
getContentHandling
@Stability(Experimental) @Nullable default String getContentHandling()
(experimental) Response payload encoding conversion types.Valid values are 1) 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, and 2) CONVERT_TO_BINARY, for converting a text payload into a base64-decoded blob or passing through a binary payload natively without modification.
-
builder
@Stability(Experimental) static ApiGatewayIntegrationResponse.Builder builder()
-
-