Interface CfnIdentityPoolRoleAttachment.MappingRuleProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnIdentityPoolRoleAttachment.MappingRuleProperty.Jsii$Proxy
Enclosing class:
CfnIdentityPoolRoleAttachment

@Stability(Stable) public static interface CfnIdentityPoolRoleAttachment.MappingRuleProperty extends software.amazon.jsii.JsiiSerializable
Defines how to map a claim to a role ARN.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.cognito.*;
 MappingRuleProperty mappingRuleProperty = MappingRuleProperty.builder()
         .claim("claim")
         .matchType("matchType")
         .roleArn("roleArn")
         .value("value")
         .build();
 

See Also: