Class: Aws::VPCLattice::Types::HeaderMatchType

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

Overview

Note:

HeaderMatchType is a union - when making an API calls you must set exactly one of the members.

Note:

HeaderMatchType is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of HeaderMatchType corresponding to the set member.

Describes a header match type.

Direct Known Subclasses

Contains, Exact, Prefix, Unknown

Defined Under Namespace

Classes: Contains, Exact, Prefix, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#containsString

A contains type match.

Returns:

  • (String)


2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 2710

class HeaderMatchType < Struct.new(
  :contains,
  :exact,
  :prefix,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Contains < HeaderMatchType; end
  class Exact < HeaderMatchType; end
  class Prefix < HeaderMatchType; end
  class Unknown < HeaderMatchType; end
end

#exactString

An exact type match.

Returns:

  • (String)


2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 2710

class HeaderMatchType < Struct.new(
  :contains,
  :exact,
  :prefix,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Contains < HeaderMatchType; end
  class Exact < HeaderMatchType; end
  class Prefix < HeaderMatchType; end
  class Unknown < HeaderMatchType; end
end

#prefixString

A prefix type match. Matches the value with the prefix.

Returns:

  • (String)


2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 2710

class HeaderMatchType < Struct.new(
  :contains,
  :exact,
  :prefix,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Contains < HeaderMatchType; end
  class Exact < HeaderMatchType; end
  class Prefix < HeaderMatchType; end
  class Unknown < HeaderMatchType; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2710
2711
2712
# File 'gems/aws-sdk-vpclattice/lib/aws-sdk-vpclattice/types.rb', line 2710

def unknown
  @unknown
end