Class: Aws::APIGateway::Types::CreateRequestValidatorRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb

Overview

Creates a RequestValidator of a given RestApi.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the to-be-created RequestValidator.

Returns:

  • (String)


932
933
934
935
936
937
938
939
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 932

class CreateRequestValidatorRequest < Struct.new(
  :rest_api_id,
  :name,
  :validate_request_body,
  :validate_request_parameters)
  SENSITIVE = []
  include Aws::Structure
end

#rest_api_idString

The string identifier of the associated RestApi.

Returns:

  • (String)


932
933
934
935
936
937
938
939
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 932

class CreateRequestValidatorRequest < Struct.new(
  :rest_api_id,
  :name,
  :validate_request_body,
  :validate_request_parameters)
  SENSITIVE = []
  include Aws::Structure
end

#validate_request_bodyBoolean

A Boolean flag to indicate whether to validate request body according to the configured model schema for the method (true) or not (false).

Returns:

  • (Boolean)


932
933
934
935
936
937
938
939
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 932

class CreateRequestValidatorRequest < Struct.new(
  :rest_api_id,
  :name,
  :validate_request_body,
  :validate_request_parameters)
  SENSITIVE = []
  include Aws::Structure
end

#validate_request_parametersBoolean

A Boolean flag to indicate whether to validate request parameters, true, or not false.

Returns:

  • (Boolean)


932
933
934
935
936
937
938
939
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 932

class CreateRequestValidatorRequest < Struct.new(
  :rest_api_id,
  :name,
  :validate_request_body,
  :validate_request_parameters)
  SENSITIVE = []
  include Aws::Structure
end