@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)",
date="2023-01-31T18:36:57.309Z")
public interface CfnUserPoolIdentityProviderProps
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 attributeMapping; Object providerDetails; CfnUserPoolIdentityProviderProps cfnUserPoolIdentityProviderProps = CfnUserPoolIdentityProviderProps.builder() .providerName("providerName") .providerType("providerType") .userPoolId("userPoolId") // the properties below are optional .attributeMapping(attributeMapping) .idpIdentifiers(List.of("idpIdentifiers")) .providerDetails(providerDetails) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnUserPoolIdentityProviderProps.Builder
A builder for
CfnUserPoolIdentityProviderProps |
static class |
CfnUserPoolIdentityProviderProps.Jsii$Proxy
An implementation for
CfnUserPoolIdentityProviderProps |
Modifier and Type | Method and Description |
---|---|
static CfnUserPoolIdentityProviderProps.Builder |
builder() |
default java.lang.Object |
getAttributeMapping()
A mapping of IdP attributes to standard and custom user pool attributes.
|
default java.util.List<java.lang.String> |
getIdpIdentifiers()
A list of IdP identifiers.
|
default java.lang.Object |
getProviderDetails()
The IdP details.
|
java.lang.String |
getProviderName()
The IdP name.
|
java.lang.String |
getProviderType()
The IdP type.
|
java.lang.String |
getUserPoolId()
The user pool ID.
|
java.lang.String getProviderName()
java.lang.String getProviderType()
java.lang.String getUserPoolId()
default java.lang.Object getAttributeMapping()
default java.util.List<java.lang.String> getIdpIdentifiers()
default java.lang.Object getProviderDetails()
oidc_issuer
URL.static CfnUserPoolIdentityProviderProps.Builder builder()