Interface CfnIdentityPoolPrincipalTagProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIdentityPoolPrincipalTagProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-15T21:09:16.577Z")
@Stability(Stable)
public interface CfnIdentityPoolPrincipalTagProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnIdentityPoolPrincipalTag
.
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.*; Object principalTags; CfnIdentityPoolPrincipalTagProps cfnIdentityPoolPrincipalTagProps = CfnIdentityPoolPrincipalTagProps.builder() .identityPoolId("identityPoolId") .identityProviderName("identityProviderName") // the properties below are optional .principalTags(principalTags) .useDefaults(false) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnIdentityPoolPrincipalTagProps
static final class
An implementation forCfnIdentityPoolPrincipalTagProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The identity pool that you want to associate with this principal tag map.The identity pool identity provider (IdP) that you want to associate with this principal tag map.default Object
A JSON-formatted list of user claims and the principal tags that you want to associate with them.default Object
Use a default set of mappings between claims and tags for this provider, instead of a custom map.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIdentityPoolId
The identity pool that you want to associate with this principal tag map.- See Also:
-
getIdentityProviderName
The identity pool identity provider (IdP) that you want to associate with this principal tag map.- See Also:
-
getPrincipalTags
A JSON-formatted list of user claims and the principal tags that you want to associate with them.When Amazon Cognito requests credentials, it sets the value of the principal tag to the value of the user's claim.
- See Also:
-
getUseDefaults
Use a default set of mappings between claims and tags for this provider, instead of a custom map.- See Also:
-
builder
-