interface CfnApiGatewayManagedOverridesMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ApiGatewayV2.Mixins.CfnApiGatewayManagedOverridesMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapigatewayv2/mixins#CfnApiGatewayManagedOverridesMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.apigatewayv2.mixins.CfnApiGatewayManagedOverridesMixinProps |
Python | aws_cdk.mixins_preview.aws_apigatewayv2.mixins.CfnApiGatewayManagedOverridesMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_apigatewayv2 » mixins » CfnApiGatewayManagedOverridesMixinProps |
Properties for CfnApiGatewayManagedOverridesPropsMixin.
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';
declare const routeSettings: any;
declare const stageVariables: any;
const cfnApiGatewayManagedOverridesMixinProps: apigatewayv2_mixins.CfnApiGatewayManagedOverridesMixinProps = {
apiId: 'apiId',
integration: {
description: 'description',
integrationMethod: 'integrationMethod',
payloadFormatVersion: 'payloadFormatVersion',
timeoutInMillis: 123,
},
route: {
authorizationScopes: ['authorizationScopes'],
authorizationType: 'authorizationType',
authorizerId: 'authorizerId',
operationName: 'operationName',
target: 'target',
},
stage: {
accessLogSettings: {
destinationArn: 'destinationArn',
format: 'format',
},
autoDeploy: false,
defaultRouteSettings: {
dataTraceEnabled: false,
detailedMetricsEnabled: false,
loggingLevel: 'loggingLevel',
throttlingBurstLimit: 123,
throttlingRateLimit: 123,
},
description: 'description',
routeSettings: routeSettings,
stageVariables: stageVariables,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| api | string | The ID of the API for which to override the configuration of API Gateway-managed resources. |
| integration? | IResolvable | Integration | Overrides the integration configuration for an API Gateway-managed integration. |
| route? | IResolvable | Route | Overrides the route configuration for an API Gateway-managed route. |
| stage? | IResolvable | Stage | Overrides the stage configuration for an API Gateway-managed stage. |
apiId?
Type:
string
(optional)
The ID of the API for which to override the configuration of API Gateway-managed resources.
integration?
Type:
IResolvable | Integration
(optional)
Overrides the integration configuration for an API Gateway-managed integration.
route?
Type:
IResolvable | Route
(optional)
Overrides the route configuration for an API Gateway-managed route.
stage?
Type:
IResolvable | Stage
(optional)
Overrides the stage configuration for an API Gateway-managed stage.

.NET
Go
Java
Python
TypeScript