Class: Aws::BedrockAgentCoreControl::Types::ClaimMatchValueType
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::ClaimMatchValueType
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
ClaimMatchValueType is a union - when making an API calls you must set exactly one of the members.
ClaimMatchValueType is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ClaimMatchValueType corresponding to the set member.
The value or values to match for.
Include a
matchValueStringwith theEQUALSoperator to specify a string that matches the claim field value.Include a
matchValueArrayto specify an array of string values. You can use the following operators:Use
CONTAINSto yield a match if the claim field value is in the array.Use
CONTAINS_ANYto yield a match if the claim field value contains any of the strings in the array.
Defined Under Namespace
Classes: MatchValueString, MatchValueStringList, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#match_value_string ⇒ String
The string value to match for.
-
#match_value_string_list ⇒ Array<String>
An array of strings to check for a match.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#match_value_string ⇒ String
The string value to match for.
906 907 908 909 910 911 912 913 914 915 916 917 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 906 class ClaimMatchValueType < Struct.new( :match_value_string, :match_value_string_list, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class MatchValueString < ClaimMatchValueType; end class MatchValueStringList < ClaimMatchValueType; end class Unknown < ClaimMatchValueType; end end |
#match_value_string_list ⇒ Array<String>
An array of strings to check for a match.
906 907 908 909 910 911 912 913 914 915 916 917 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 906 class ClaimMatchValueType < Struct.new( :match_value_string, :match_value_string_list, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class MatchValueString < ClaimMatchValueType; end class MatchValueStringList < ClaimMatchValueType; end class Unknown < ClaimMatchValueType; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
906 907 908 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 906 def unknown @unknown end |