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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnIdentityPoolRoleAttachment.RulesConfigurationTypeProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRules
The rules.You can specify up to 25 rules per identity provider.
- See Also:
-
builder
@Stability(Stable) static CfnIdentityPoolRoleAttachment.RulesConfigurationTypeProperty.Builder builder()
-