Interface CfnIdentitySourceMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIdentitySourceMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:05.907Z")
@Stability(Stable)
public interface CfnIdentitySourceMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnIdentitySourcePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.verifiedpermissions.*;
CfnIdentitySourceMixinProps cfnIdentitySourceMixinProps = CfnIdentitySourceMixinProps.builder()
.configuration(IdentitySourceConfigurationProperty.builder()
.cognitoUserPoolConfiguration(CognitoUserPoolConfigurationProperty.builder()
.clientIds(List.of("clientIds"))
.groupConfiguration(CognitoGroupConfigurationProperty.builder()
.groupEntityType("groupEntityType")
.build())
.userPoolArn("userPoolArn")
.build())
.openIdConnectConfiguration(OpenIdConnectConfigurationProperty.builder()
.entityIdPrefix("entityIdPrefix")
.groupConfiguration(OpenIdConnectGroupConfigurationProperty.builder()
.groupClaim("groupClaim")
.groupEntityType("groupEntityType")
.build())
.issuer("issuer")
.tokenSelection(OpenIdConnectTokenSelectionProperty.builder()
.accessTokenOnly(OpenIdConnectAccessTokenConfigurationProperty.builder()
.audiences(List.of("audiences"))
.principalIdClaim("principalIdClaim")
.build())
.identityTokenOnly(OpenIdConnectIdentityTokenConfigurationProperty.builder()
.clientIds(List.of("clientIds"))
.principalIdClaim("principalIdClaim")
.build())
.build())
.build())
.build())
.policyStoreId("policyStoreId")
.principalEntityType("principalEntityType")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIdentitySourceMixinPropsstatic final classAn implementation forCfnIdentitySourceMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectContains configuration information used when creating a new identity source.default StringSpecifies the ID of the policy store in which you want to store this identity source.default StringSpecifies the namespace and data type of the principals generated for identities authenticated by the new identity source.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConfiguration
Contains configuration information used when creating a new identity source.Returns union: either
IResolvableorCfnIdentitySourcePropsMixin.IdentitySourceConfigurationProperty- See Also:
-
getPolicyStoreId
Specifies the ID of the policy store in which you want to store this identity source.Only policies and requests made using this policy store can reference identities from the identity provider configured in the new identity source.
- See Also:
-
getPrincipalEntityType
Specifies the namespace and data type of the principals generated for identities authenticated by the new identity source.- See Also:
-
builder
-