Interface CfnIntegration.ResponseParameterListProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnIntegration.ResponseParameterListProperty.Jsii$Proxy
Enclosing class:
CfnIntegration

@Stability(Stable) public static interface CfnIntegration.ResponseParameterListProperty extends software.amazon.jsii.JsiiSerializable
Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.apigatewayv2.*;
 ResponseParameterListProperty responseParameterListProperty = ResponseParameterListProperty.builder()
         .responseParameters(List.of(ResponseParameterProperty.builder()
                 .destination("destination")
                 .source("source")
                 .build()))
         .build();
 

See Also: