Interface CfnGatewayResponseMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGatewayResponseMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:55.460Z")
@Stability(Stable)
public interface CfnGatewayResponseMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnGatewayResponsePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.apigateway.*;
CfnGatewayResponseMixinProps cfnGatewayResponseMixinProps = CfnGatewayResponseMixinProps.builder()
.responseParameters(Map.of(
"responseParametersKey", "responseParameters"))
.responseTemplates(Map.of(
"responseTemplatesKey", "responseTemplates"))
.responseType("responseType")
.restApiId("restApiId")
.statusCode("statusCode")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGatewayResponseMixinPropsstatic final classAn implementation forCfnGatewayResponseMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectResponse parameters (paths, query strings and headers) of the GatewayResponse as a string-to-string map of key-value pairs.default ObjectResponse templates of the GatewayResponse as a string-to-string map of key-value pairs.default StringThe response type of the associated GatewayResponse.default ObjectThe string identifier of the associated RestApi.default StringThe HTTP status code for this GatewayResponse.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getResponseParameters
Response parameters (paths, query strings and headers) of the GatewayResponse as a string-to-string map of key-value pairs.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
getResponseTemplates
Response templates of the GatewayResponse as a string-to-string map of key-value pairs.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
getResponseType
The response type of the associated GatewayResponse.- See Also:
-
getRestApiId
The string identifier of the associated RestApi.Returns union: either
StringorIRestApiRef- See Also:
-
getStatusCode
The HTTP status code for this GatewayResponse.- See Also:
-
builder
-