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

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
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)


1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
# File 'lib/aws-sdk-vpclattice/types.rb', line 1892

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)


1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
# File 'lib/aws-sdk-vpclattice/types.rb', line 1892

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)


1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
# File 'lib/aws-sdk-vpclattice/types.rb', line 1892

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



1892
1893
1894
# File 'lib/aws-sdk-vpclattice/types.rb', line 1892

def unknown
  @unknown
end