Interface CfnIdentityPoolRoleAttachment.RulesConfigurationTypeProperty

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

@Stability(Stable) public static interface CfnIdentityPoolRoleAttachment.RulesConfigurationTypeProperty extends software.amazon.jsii.JsiiSerializable
RulesConfigurationType is a subproperty of the RoleMapping property that defines the rules to be used for mapping users to roles.

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.*;
 RulesConfigurationTypeProperty rulesConfigurationTypeProperty = RulesConfigurationTypeProperty.builder()
         .rules(List.of(MappingRuleProperty.builder()
                 .claim("claim")
                 .matchType("matchType")
                 .roleArn("roleArn")
                 .value("value")
                 .build()))
         .build();
 

See Also: