@Generated(value="jsii-pacmak/1.71.0 (build f1f58ae)", date="2022-12-07T17:24:44.531Z") @Stability(value=Stable) public interface CfnUserPoolIdentityProviderProps extends software.amazon.jsii.JsiiSerializable
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 Object |
getAttributeMapping()
A mapping of IdP attributes to standard and custom user pool attributes.
|
default List<String> |
getIdpIdentifiers()
A list of IdP identifiers.
|
default Object |
getProviderDetails()
The IdP details.
|
String |
getProviderName()
The IdP name.
|
String |
getProviderType()
The IdP type.
|
String |
getUserPoolId()
The user pool ID.
|
@Stability(value=Stable) @NotNull String getProviderName()
@Stability(value=Stable) @NotNull String getProviderType()
@Stability(value=Stable) @NotNull String getUserPoolId()
@Stability(value=Stable) @Nullable default Object getAttributeMapping()
@Stability(value=Stable) @Nullable default List<String> getIdpIdentifiers()
@Stability(value=Stable) @Nullable default Object getProviderDetails()
oidc_issuer URL.@Stability(value=Stable) static CfnUserPoolIdentityProviderProps.Builder builder()
Copyright © 2022. All rights reserved.