HeaderMatchMethod

public struct HeaderMatchMethod : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The value sent by the client must match the specified value exactly.

    Declaration

    Swift

    public let exact: String?
  • The value sent by the client must begin with the specified characters.

    Declaration

    Swift

    public let prefix: String?
  • An object that represents the range of values to match on.

    Declaration

    Swift

    public let range: MatchRange?
  • The value sent by the client must include the specified characters.

    Declaration

    Swift

    public let regex: String?
  • The value sent by the client must end with the specified characters.

    Declaration

    Swift

    public let suffix: String?
  • Undocumented

    Declaration

    Swift

    public init(exact: String? = nil, prefix: String? = nil, range: MatchRange? = nil, regex: String? = nil, suffix: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws