Interface CfnIdentitySourceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIdentitySourceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-10-31T19:13:06.870Z")
@Stability(Stable)
public interface CfnIdentitySourceProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnIdentitySource
.
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.verifiedpermissions.*; CfnIdentitySourceProps cfnIdentitySourceProps = CfnIdentitySourceProps.builder() .configuration(IdentitySourceConfigurationProperty.builder() .cognitoUserPoolConfiguration(CognitoUserPoolConfigurationProperty.builder() .userPoolArn("userPoolArn") // the properties below are optional .clientIds(List.of("clientIds")) .groupConfiguration(CognitoGroupConfigurationProperty.builder() .groupEntityType("groupEntityType") .build()) .build()) .openIdConnectConfiguration(OpenIdConnectConfigurationProperty.builder() .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()) // the properties below are optional .entityIdPrefix("entityIdPrefix") .groupConfiguration(OpenIdConnectGroupConfigurationProperty.builder() .groupClaim("groupClaim") .groupEntityType("groupEntityType") .build()) .build()) .build()) .policyStoreId("policyStoreId") // the properties below are optional .principalEntityType("principalEntityType") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnIdentitySourceProps
static final class
An implementation forCfnIdentitySourceProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Contains configuration information used when creating a new identity source.Specifies the ID of the policy store in which you want to store this identity source.default String
Specifies 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.- 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
- Returns:
- a
CfnIdentitySourceProps.Builder
ofCfnIdentitySourceProps
-