Class: Aws::CognitoIdentity::Types::MappingRule
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentity::Types::MappingRule
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentity/types.rb
Overview
Note:
When making an API call, you may pass MappingRule data as a hash:
{
claim: "ClaimName", # required
match_type: "Equals", # required, accepts Equals, Contains, StartsWith, NotEqual
value: "ClaimValue", # required
role_arn: "ARNString", # required
}
A rule that maps a claim name, a claim value, and a match type to a role ARN.
Instance Attribute Summary collapse
-
#claim ⇒ String
The claim name that must be present in the token, for example, “isAdmin” or “paid”.
-
#match_type ⇒ String
The match condition that specifies how closely the claim value in the IdP token must match ‘Value`.
-
#role_arn ⇒ String
The role ARN.
-
#value ⇒ String
A brief string that the claim must match, for example, “paid” or “yes”.
Instance Attribute Details
#claim ⇒ String
The claim name that must be present in the token, for example, “isAdmin” or “paid”.
877 878 879 880 881 882 883 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 877 class MappingRule < Struct.new( :claim, :match_type, :value, :role_arn) include Aws::Structure end |
#match_type ⇒ String
The match condition that specifies how closely the claim value in the IdP token must match ‘Value`.
877 878 879 880 881 882 883 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 877 class MappingRule < Struct.new( :claim, :match_type, :value, :role_arn) include Aws::Structure end |
#role_arn ⇒ String
The role ARN.
877 878 879 880 881 882 883 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 877 class MappingRule < Struct.new( :claim, :match_type, :value, :role_arn) include Aws::Structure end |
#value ⇒ String
A brief string that the claim must match, for example, “paid” or “yes”.
877 878 879 880 881 882 883 |
# File 'lib/aws-sdk-cognitoidentity/types.rb', line 877 class MappingRule < Struct.new( :claim, :match_type, :value, :role_arn) include Aws::Structure end |