Table of Contents

Interface IRequestValidatorProps

Namespace
Amazon.CDK.AWS.APIGateway
Assembly
Amazon.CDK.AWS.APIGateway.dll
public interface IRequestValidatorProps : IRequestValidatorOptions
Inherited Members

Examples

// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.APIGateway;

            RestApi restApi;

            var requestValidatorProps = new RequestValidatorProps {
                RestApi = restApi,

                // the properties below are optional
                RequestValidatorName = "requestValidatorName",
                ValidateRequestBody = false,
                ValidateRequestParameters = false
            };

Remarks

ExampleMetadata: fixture=_generated

Properties

RestApi

The rest API that this model is part of.

IRestApi RestApi { get; }

Property Value

IRestApi

Remarks

The reason we need the RestApi object itself and not just the ID is because the model is being tracked by the top-level RestApi object for the purpose of calculating it's hash to determine the ID of the deployment. This allows us to automatically update the deployment when the model of the REST API changes.