Package services.verifiedpermissions
Interface CfnIdentitySourceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIdentitySourceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.89.0 (build 2f74b3e)",
date="2023-11-02T10:21:24.635Z")
@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 services.verifiedpermissions.*; CfnIdentitySourceProps cfnIdentitySourceProps = CfnIdentitySourceProps.builder() .configuration(IdentitySourceConfigurationProperty.builder() .cognitoUserPoolConfiguration(CognitoUserPoolConfigurationProperty.builder() .userPoolArn("userPoolArn") // the properties below are optional .clientIds(List.of("clientIds")) .build()) .build()) // the properties below are optional .policyStoreId("policyStoreId") .principalEntityType("principalEntityType") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier 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 .default String
Specifies the ID of the in which you want to store this .default String
Specifies the namespace and data type of the principals generated for identities authenticated by the new .Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConfiguration
Contains configuration information used when creating a new .At this time, the only valid member of this structure is a user pool configuration.
You must specify a
userPoolArn
, and optionally, aClientId
.This data type is used as a request parameter for the CreateIdentitySource operation.
- See Also:
-
getPolicyStoreId
Specifies the ID of the in which you want to store this .Only policies and requests made using this can reference identities from the identity provider configured in the new .
- See Also:
-
getPrincipalEntityType
Specifies the namespace and data type of the principals generated for identities authenticated by the new .- See Also:
-
builder
- Returns:
- a
CfnIdentitySourceProps.Builder
ofCfnIdentitySourceProps
-