Class: Aws::APIGateway::Types::RequestValidator
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::RequestValidator
- Defined in:
- gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb
Overview
A set of validation rules for incoming Method requests.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The identifier of this RequestValidator.
-
#name ⇒ String
The name of this RequestValidator.
-
#validate_request_body ⇒ Boolean
A Boolean flag to indicate whether to validate a request body according to the configured Model schema.
-
#validate_request_parameters ⇒ Boolean
A Boolean flag to indicate whether to validate request parameters (
true
) or not (false
).
Instance Attribute Details
#id ⇒ String
The identifier of this RequestValidator.
4416 4417 4418 4419 4420 4421 4422 4423 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 4416 class RequestValidator < Struct.new( :id, :name, :validate_request_body, :validate_request_parameters) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of this RequestValidator
4416 4417 4418 4419 4420 4421 4422 4423 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 4416 class RequestValidator < Struct.new( :id, :name, :validate_request_body, :validate_request_parameters) SENSITIVE = [] include Aws::Structure end |
#validate_request_body ⇒ Boolean
A Boolean flag to indicate whether to validate a request body according to the configured Model schema.
4416 4417 4418 4419 4420 4421 4422 4423 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 4416 class RequestValidator < Struct.new( :id, :name, :validate_request_body, :validate_request_parameters) SENSITIVE = [] include Aws::Structure end |
#validate_request_parameters ⇒ Boolean
A Boolean flag to indicate whether to validate request parameters
(true
) or not (false
).
4416 4417 4418 4419 4420 4421 4422 4423 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 4416 class RequestValidator < Struct.new( :id, :name, :validate_request_body, :validate_request_parameters) SENSITIVE = [] include Aws::Structure end |