Interface CfnIntegrationPropsMixin.ResponseParameterMapProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIntegrationPropsMixin.ResponseParameterMapProperty.Jsii$Proxy
- Enclosing class:
CfnIntegrationPropsMixin
@Stability(Stable)
public static interface CfnIntegrationPropsMixin.ResponseParameterMapProperty
extends software.amazon.jsii.JsiiSerializable
map of response parameter lists.
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.apigatewayv2.*;
ResponseParameterMapProperty responseParameterMapProperty = ResponseParameterMapProperty.builder()
.responseParameters(List.of(ResponseParameterProperty.builder()
.destination("destination")
.source("source")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIntegrationPropsMixin.ResponseParameterMapPropertystatic final classAn implementation forCfnIntegrationPropsMixin.ResponseParameterMapProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getResponseParameters
list of response parameters.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnIntegrationPropsMixin.ResponseParameterProperty>- See Also:
-
builder
-