Interface CfnApiGatewayManagedOverrides.IntegrationOverridesProperty

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

@Stability(Stable) public static interface CfnApiGatewayManagedOverrides.IntegrationOverridesProperty extends software.amazon.jsii.JsiiSerializable
The IntegrationOverrides property overrides the integration settings for an API Gateway-managed integration.

If you remove this property, API Gateway restores the default values.

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.*;
 IntegrationOverridesProperty integrationOverridesProperty = IntegrationOverridesProperty.builder()
         .description("description")
         .integrationMethod("integrationMethod")
         .payloadFormatVersion("payloadFormatVersion")
         .timeoutInMillis(123)
         .build();
 

See Also: