CreateRequestValidatorRequest

public struct CreateRequestValidatorRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The name of the to-be-created RequestValidator.

    Declaration

    Swift

    public let name: String?
  • [Required] The string identifier of the associated RestApi.

    Declaration

    Swift

    public let restApiId: String
  • A Boolean flag to indicate whether to validate request body according to the configured model schema for the method (true) or not (false).

    Declaration

    Swift

    public let validateRequestBody: Bool?
  • A Boolean flag to indicate whether to validate request parameters, true, or not false.

    Declaration

    Swift

    public let validateRequestParameters: Bool?
  • Undocumented

    Declaration

    Swift

    public init(name: String? = nil, restApiId: String, validateRequestBody: Bool? = nil, validateRequestParameters: Bool? = nil)