Class: Aws::CognitoIdentity::Types::SetIdentityPoolRolesInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentity::Types::SetIdentityPoolRolesInput
- Defined in:
- gems/aws-sdk-cognitoidentity/lib/aws-sdk-cognitoidentity/types.rb
Overview
When making an API call, you may pass SetIdentityPoolRolesInput data as a hash:
{
identity_pool_id: "IdentityPoolId", # required
roles: { # required
"RoleType" => "ARNString",
},
role_mappings: {
"IdentityProviderName" => {
type: "Token", # required, accepts Token, Rules
ambiguous_role_resolution: "AuthenticatedRole", # accepts AuthenticatedRole, Deny
rules_configuration: {
rules: [ # required
{
claim: "ClaimName", # required
match_type: "Equals", # required, accepts Equals, Contains, StartsWith, NotEqual
value: "ClaimValue", # required
role_arn: "ARNString", # required
},
],
},
},
},
}
Input to the SetIdentityPoolRoles
action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#identity_pool_id ⇒ String
An identity pool ID in the format REGION:GUID.
-
#role_mappings ⇒ Hash<String,Types::RoleMapping>
How users for a specific identity provider are to mapped to roles.
-
#roles ⇒ Hash<String,String>
The map of roles associated with this pool.
Instance Attribute Details
#identity_pool_id ⇒ String
An identity pool ID in the format REGION:GUID.
1427 1428 1429 1430 1431 1432 1433 |
# File 'gems/aws-sdk-cognitoidentity/lib/aws-sdk-cognitoidentity/types.rb', line 1427 class SetIdentityPoolRolesInput < Struct.new( :identity_pool_id, :roles, :role_mappings) SENSITIVE = [] include Aws::Structure end |
#role_mappings ⇒ Hash<String,Types::RoleMapping>
How users for a specific identity provider are to mapped to roles. This is a string to RoleMapping object map. The string identifies the identity provider, for example, "graph.facebook.com" or "cognito-idp.us-east-1.amazonaws.com/us-east-1_abcdefghi:app_client_id".
Up to 25 rules can be specified per identity provider.
1427 1428 1429 1430 1431 1432 1433 |
# File 'gems/aws-sdk-cognitoidentity/lib/aws-sdk-cognitoidentity/types.rb', line 1427 class SetIdentityPoolRolesInput < Struct.new( :identity_pool_id, :roles, :role_mappings) SENSITIVE = [] include Aws::Structure end |
#roles ⇒ Hash<String,String>
The map of roles associated with this pool. For a given role, the key will be either "authenticated" or "unauthenticated" and the value will be the Role ARN.
1427 1428 1429 1430 1431 1432 1433 |
# File 'gems/aws-sdk-cognitoidentity/lib/aws-sdk-cognitoidentity/types.rb', line 1427 class SetIdentityPoolRolesInput < Struct.new( :identity_pool_id, :roles, :role_mappings) SENSITIVE = [] include Aws::Structure end |