All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
RoleMappingRule.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:15.358Z") @Stability(Experimental) public interface RoleMappingRule extends software.amazon.jsii.JsiiSerializable
(experimental) Represents an Identity Pool Role Attachment Role Mapping Rule.

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.identitypool.alpha.*;
 import software.amazon.awscdk.services.iam.*;
 Role role;
 RoleMappingRule roleMappingRule = RoleMappingRule.builder()
         .claim("claim")
         .claimValue("claimValue")
         .mappedRole(role)
         // the properties below are optional
         .matchType(RoleMappingMatchType.EQUALS)
         .build();
 
  • Method Details

    • getClaim

      @Stability(Experimental) @NotNull String getClaim()
      (experimental) The key sent in the token by the federated identity provider.
    • getClaimValue

      @Stability(Experimental) @NotNull String getClaimValue()
      (experimental) The value of the claim that must be matched.
    • getMappedRole

      @Stability(Experimental) @NotNull IRole getMappedRole()
      (experimental) The Role to be assumed when Claim Value is matched.
    • getMatchType

      @Stability(Experimental) @Nullable default RoleMappingMatchType getMatchType()
      (experimental) How to match with the Claim value.

      Default: RoleMappingMatchType.EQUALS

    • builder

      @Stability(Experimental) static RoleMappingRule.Builder builder()
      Returns:
      a RoleMappingRule.Builder of RoleMappingRule