interface ResponseParameterMapProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ApiGatewayV2.Mixins.CfnIntegrationPropsMixin.ResponseParameterMapProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapigatewayv2/mixins#CfnIntegrationPropsMixin_ResponseParameterMapProperty |
Java | software.amazon.awscdk.mixins.preview.services.apigatewayv2.mixins.CfnIntegrationPropsMixin.ResponseParameterMapProperty |
Python | aws_cdk.mixins_preview.aws_apigatewayv2.mixins.CfnIntegrationPropsMixin.ResponseParameterMapProperty |
TypeScript | @aws-cdk/mixins-preview » aws_apigatewayv2 » mixins » CfnIntegrationPropsMixin » ResponseParameterMapProperty |
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 { mixins as apigatewayv2_mixins } from '@aws-cdk/mixins-preview/aws-apigatewayv2';
const responseParameterMapProperty: apigatewayv2_mixins.CfnIntegrationPropsMixin.ResponseParameterMapProperty = {
responseParameters: [{
destination: 'destination',
source: 'source',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| response | IResolvable | (IResolvable | Response)[] | list of response parameters. |
responseParameters?
Type:
IResolvable | (IResolvable | Response)[]
(optional)
list of response parameters.

.NET
Go
Java
Python
TypeScript