interface ResponseParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ApiGatewayV2.Mixins.CfnIntegrationPropsMixin.ResponseParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapigatewayv2/mixins#CfnIntegrationPropsMixin_ResponseParameterProperty |
Java | software.amazon.awscdk.mixins.preview.services.apigatewayv2.mixins.CfnIntegrationPropsMixin.ResponseParameterProperty |
Python | aws_cdk.mixins_preview.aws_apigatewayv2.mixins.CfnIntegrationPropsMixin.ResponseParameterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_apigatewayv2 » mixins » CfnIntegrationPropsMixin » ResponseParameterProperty |
Supported only for HTTP APIs.
You use response parameters to transform the HTTP response from a backend integration before returning the response to clients. Specify a key-value map from a selection key to response parameters. The selection key must be a valid HTTP status code within the range of 200-599. Response parameters are a key-value map. The key must match the pattern <action>:<header>.<location> or overwrite.statuscode . The action can be append , overwrite or remove . The value can be a static value, or map to response data, stage variables, or context variables that are evaluated at runtime. To learn more, see Transforming API requests and responses .
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 responseParameterProperty: apigatewayv2_mixins.CfnIntegrationPropsMixin.ResponseParameterProperty = {
destination: 'destination',
source: 'source',
};
Properties
| Name | Type | Description |
|---|---|---|
| destination? | string | Specifies the location of the response to modify, and how to modify it. |
| source? | string | Specifies the data to update the parameter with. |
destination?
Type:
string
(optional)
Specifies the location of the response to modify, and how to modify it.
To learn more, see Transforming API requests and responses .
source?
Type:
string
(optional)
Specifies the data to update the parameter with.
To learn more, see Transforming API requests and responses .

.NET
Go
Java
Python
TypeScript