@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:05.647Z") @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()
`AWS::Cognito::UserPoolIdentityProvider.AttributeMapping`.
|
default List<String> |
getIdpIdentifiers()
`AWS::Cognito::UserPoolIdentityProvider.IdpIdentifiers`.
|
default Object |
getProviderDetails()
`AWS::Cognito::UserPoolIdentityProvider.ProviderDetails`.
|
String |
getProviderName()
`AWS::Cognito::UserPoolIdentityProvider.ProviderName`.
|
String |
getProviderType()
`AWS::Cognito::UserPoolIdentityProvider.ProviderType`.
|
String |
getUserPoolId()
`AWS::Cognito::UserPoolIdentityProvider.UserPoolId`.
|
@Stability(value=Stable) @Nullable default Object getAttributeMapping()
@Stability(value=Stable) @Nullable default List<String> getIdpIdentifiers()
@Stability(value=Stable) @Nullable default Object getProviderDetails()
@Stability(value=Stable) @NotNull String getProviderName()
@Stability(value=Stable) @NotNull String getProviderType()
@Stability(value=Stable) @NotNull String getUserPoolId()
@Stability(value=Stable) static CfnUserPoolIdentityProviderProps.Builder builder()
Copyright © 2021. All rights reserved.