| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.APIGateway.GetRequestValidator
Description
Gets a RequestValidator of a given RestApi.
Synopsis
- data GetRequestValidator = GetRequestValidator' {}
- newGetRequestValidator :: Text -> Text -> GetRequestValidator
- getRequestValidator_restApiId :: Lens' GetRequestValidator Text
- getRequestValidator_requestValidatorId :: Lens' GetRequestValidator Text
- data RequestValidator = RequestValidator' {}
- newRequestValidator :: RequestValidator
- requestValidator_id :: Lens' RequestValidator (Maybe Text)
- requestValidator_name :: Lens' RequestValidator (Maybe Text)
- requestValidator_validateRequestBody :: Lens' RequestValidator (Maybe Bool)
- requestValidator_validateRequestParameters :: Lens' RequestValidator (Maybe Bool)
Creating a Request
data GetRequestValidator Source #
Gets a RequestValidator of a given RestApi.
See: newGetRequestValidator smart constructor.
Constructors
| GetRequestValidator' | |
Fields
| |
Instances
newGetRequestValidator Source #
Arguments
| :: Text | |
| -> Text | |
| -> GetRequestValidator |
Create a value of GetRequestValidator with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
GetRequestValidator, getRequestValidator_restApiId - The string identifier of the associated RestApi.
GetRequestValidator, getRequestValidator_requestValidatorId - The identifier of the RequestValidator to be retrieved.
Request Lenses
getRequestValidator_restApiId :: Lens' GetRequestValidator Text Source #
The string identifier of the associated RestApi.
getRequestValidator_requestValidatorId :: Lens' GetRequestValidator Text Source #
The identifier of the RequestValidator to be retrieved.
Destructuring the Response
data RequestValidator Source #
A set of validation rules for incoming Method requests.
See: newRequestValidator smart constructor.
Constructors
| RequestValidator' | |
Fields
| |
Instances
newRequestValidator :: RequestValidator Source #
Create a value of RequestValidator with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:id:RequestValidator', requestValidator_id - The identifier of this RequestValidator.
$sel:name:RequestValidator', requestValidator_name - The name of this RequestValidator
$sel:validateRequestBody:RequestValidator', requestValidator_validateRequestBody - A Boolean flag to indicate whether to validate a request body according
to the configured Model schema.
$sel:validateRequestParameters:RequestValidator', requestValidator_validateRequestParameters - A Boolean flag to indicate whether to validate request parameters
(true) or not (false).
Response Lenses
requestValidator_id :: Lens' RequestValidator (Maybe Text) Source #
The identifier of this RequestValidator.
requestValidator_name :: Lens' RequestValidator (Maybe Text) Source #
The name of this RequestValidator
requestValidator_validateRequestBody :: Lens' RequestValidator (Maybe Bool) Source #
A Boolean flag to indicate whether to validate a request body according to the configured Model schema.
requestValidator_validateRequestParameters :: Lens' RequestValidator (Maybe Bool) Source #
A Boolean flag to indicate whether to validate request parameters
(true) or not (false).