Module: AWSCDK::CognitoIdentitypool::RoleMappingMatchType

Defined in:
cognito_identitypool/role_mapping_match_type.rb

Overview

Types of matches allowed for role mapping.

Constant Summary collapse

EQUALS =
Deprecated.
Note:

Default:

The claim from the token must equal the given value in order for a match.

Jsii::Enum.new("aws-cdk-lib.aws_cognito_identitypool.RoleMappingMatchType", "EQUALS")
CONTAINS =
Deprecated.
Note:

Default:

The claim from the token must contain the given value in order for a match.

Jsii::Enum.new("aws-cdk-lib.aws_cognito_identitypool.RoleMappingMatchType", "CONTAINS")
STARTS_WITH =
Deprecated.
Note:

Default:

The claim from the token must start with the given value in order for a match.

Jsii::Enum.new("aws-cdk-lib.aws_cognito_identitypool.RoleMappingMatchType", "STARTS_WITH")
NOTEQUAL =
Deprecated.
Note:

Default:

The claim from the token must not equal the given value in order for a match.

Jsii::Enum.new("aws-cdk-lib.aws_cognito_identitypool.RoleMappingMatchType", "NOTEQUAL")