io.cloudshiftdev.awscdk.services.cognito.UserPoolIdentityProviderOidc.kt Maven / Gradle / Ivy
The newest version!
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")
package io.cloudshiftdev.awscdk.services.cognito
import io.cloudshiftdev.awscdk.Resource
import io.cloudshiftdev.awscdk.common.CdkDslMarker
import kotlin.String
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
import io.cloudshiftdev.constructs.Construct as CloudshiftdevConstructsConstruct
import software.constructs.Construct as SoftwareConstructsConstruct
/**
* Represents an identity provider that integrates with OpenID Connect.
*
* Example:
*
* ```
* // The code below shows an example of how to instantiate this type.
* // The values are placeholders you should change.
* import io.cloudshiftdev.awscdk.services.cognito.*;
* ProviderAttribute providerAttribute;
* UserPool userPool;
* UserPoolIdentityProviderOidc userPoolIdentityProviderOidc =
* UserPoolIdentityProviderOidc.Builder.create(this, "MyUserPoolIdentityProviderOidc")
* .clientId("clientId")
* .clientSecret("clientSecret")
* .issuerUrl("issuerUrl")
* .userPool(userPool)
* // the properties below are optional
* .attributeMapping(AttributeMapping.builder()
* .address(providerAttribute)
* .birthdate(providerAttribute)
* .custom(Map.of(
* "customKey", providerAttribute))
* .email(providerAttribute)
* .familyName(providerAttribute)
* .fullname(providerAttribute)
* .gender(providerAttribute)
* .givenName(providerAttribute)
* .lastUpdateTime(providerAttribute)
* .locale(providerAttribute)
* .middleName(providerAttribute)
* .nickname(providerAttribute)
* .phoneNumber(providerAttribute)
* .preferredUsername(providerAttribute)
* .profilePage(providerAttribute)
* .profilePicture(providerAttribute)
* .timezone(providerAttribute)
* .website(providerAttribute)
* .build())
* .attributeRequestMethod(OidcAttributeRequestMethod.GET)
* .endpoints(OidcEndpoints.builder()
* .authorization("authorization")
* .jwksUri("jwksUri")
* .token("token")
* .userInfo("userInfo")
* .build())
* .identifiers(List.of("identifiers"))
* .name("name")
* .scopes(List.of("scopes"))
* .build();
* ```
*/
public open class UserPoolIdentityProviderOidc(
cdkObject: software.amazon.awscdk.services.cognito.UserPoolIdentityProviderOidc,
) : Resource(cdkObject),
IUserPoolIdentityProvider {
public constructor(
scope: CloudshiftdevConstructsConstruct,
id: String,
props: UserPoolIdentityProviderOidcProps,
) :
this(software.amazon.awscdk.services.cognito.UserPoolIdentityProviderOidc(scope.let(CloudshiftdevConstructsConstruct.Companion::unwrap),
id, props.let(UserPoolIdentityProviderOidcProps.Companion::unwrap))
)
public constructor(
scope: CloudshiftdevConstructsConstruct,
id: String,
props: UserPoolIdentityProviderOidcProps.Builder.() -> Unit,
) : this(scope, id, UserPoolIdentityProviderOidcProps(props)
)
/**
* The primary identifier of this identity provider.
*/
public override fun providerName(): String = unwrap(this).getProviderName()
/**
* A fluent builder for [io.cloudshiftdev.awscdk.services.cognito.UserPoolIdentityProviderOidc].
*/
@CdkDslMarker
public interface Builder {
/**
* Mapping attributes from the identity provider to standard and custom attributes of the user
* pool.
*
* Default: - no attribute mapping
*
* @param attributeMapping Mapping attributes from the identity provider to standard and custom
* attributes of the user pool.
*/
public fun attributeMapping(attributeMapping: AttributeMapping)
/**
* Mapping attributes from the identity provider to standard and custom attributes of the user
* pool.
*
* Default: - no attribute mapping
*
* @param attributeMapping Mapping attributes from the identity provider to standard and custom
* attributes of the user pool.
*/
@kotlin.Suppress("INAPPLICABLE_JVM_NAME")
@JvmName("603595185306f3cbe3b150f2d42508de726dc0a43008589c4ee2fb5565eac7f6")
public fun attributeMapping(attributeMapping: AttributeMapping.Builder.() -> Unit)
/**
* The method to use to request attributes.
*
* Default: OidcAttributeRequestMethod.GET
*
* @param attributeRequestMethod The method to use to request attributes.
*/
public fun attributeRequestMethod(attributeRequestMethod: OidcAttributeRequestMethod)
/**
* The client id.
*
* @param clientId The client id.
*/
public fun clientId(clientId: String)
/**
* The client secret.
*
* @param clientSecret The client secret.
*/
public fun clientSecret(clientSecret: String)
/**
* OpenID connect endpoints.
*
* Default: - auto discovered with issuer URL
*
* @param endpoints OpenID connect endpoints.
*/
public fun endpoints(endpoints: OidcEndpoints)
/**
* OpenID connect endpoints.
*
* Default: - auto discovered with issuer URL
*
* @param endpoints OpenID connect endpoints.
*/
@kotlin.Suppress("INAPPLICABLE_JVM_NAME")
@JvmName("47ba295429bf4c0b6cf598bc197daa092bdec752210ec00b61c23f978b2e181c")
public fun endpoints(endpoints: OidcEndpoints.Builder.() -> Unit)
/**
* Identifiers.
*
* Identifiers can be used to redirect users to the correct IdP in multitenant apps.
*
* Default: - no identifiers used
*
* @param identifiers Identifiers.
*/
public fun identifiers(identifiers: List)
/**
* Identifiers.
*
* Identifiers can be used to redirect users to the correct IdP in multitenant apps.
*
* Default: - no identifiers used
*
* @param identifiers Identifiers.
*/
public fun identifiers(vararg identifiers: String)
/**
* Issuer URL.
*
* @param issuerUrl Issuer URL.
*/
public fun issuerUrl(issuerUrl: String)
/**
* The name of the provider.
*
* Default: - the unique ID of the construct
*
* @param name The name of the provider.
*/
public fun name(name: String)
/**
* The OAuth 2.0 scopes that you will request from OpenID Connect. Scopes are groups of OpenID
* Connect user attributes to exchange with your app.
*
* Default: ['openid']
*
* @param scopes The OAuth 2.0 scopes that you will request from OpenID Connect. Scopes are
* groups of OpenID Connect user attributes to exchange with your app.
*/
public fun scopes(scopes: List)
/**
* The OAuth 2.0 scopes that you will request from OpenID Connect. Scopes are groups of OpenID
* Connect user attributes to exchange with your app.
*
* Default: ['openid']
*
* @param scopes The OAuth 2.0 scopes that you will request from OpenID Connect. Scopes are
* groups of OpenID Connect user attributes to exchange with your app.
*/
public fun scopes(vararg scopes: String)
/**
* The user pool to which this construct provides identities.
*
* @param userPool The user pool to which this construct provides identities.
*/
public fun userPool(userPool: IUserPool)
}
private class BuilderImpl(
scope: SoftwareConstructsConstruct,
id: String,
) : Builder {
private val cdkBuilder:
software.amazon.awscdk.services.cognito.UserPoolIdentityProviderOidc.Builder =
software.amazon.awscdk.services.cognito.UserPoolIdentityProviderOidc.Builder.create(scope,
id)
/**
* Mapping attributes from the identity provider to standard and custom attributes of the user
* pool.
*
* Default: - no attribute mapping
*
* @param attributeMapping Mapping attributes from the identity provider to standard and custom
* attributes of the user pool.
*/
override fun attributeMapping(attributeMapping: AttributeMapping) {
cdkBuilder.attributeMapping(attributeMapping.let(AttributeMapping.Companion::unwrap))
}
/**
* Mapping attributes from the identity provider to standard and custom attributes of the user
* pool.
*
* Default: - no attribute mapping
*
* @param attributeMapping Mapping attributes from the identity provider to standard and custom
* attributes of the user pool.
*/
@kotlin.Suppress("INAPPLICABLE_JVM_NAME")
@JvmName("603595185306f3cbe3b150f2d42508de726dc0a43008589c4ee2fb5565eac7f6")
override fun attributeMapping(attributeMapping: AttributeMapping.Builder.() -> Unit): Unit =
attributeMapping(AttributeMapping(attributeMapping))
/**
* The method to use to request attributes.
*
* Default: OidcAttributeRequestMethod.GET
*
* @param attributeRequestMethod The method to use to request attributes.
*/
override fun attributeRequestMethod(attributeRequestMethod: OidcAttributeRequestMethod) {
cdkBuilder.attributeRequestMethod(attributeRequestMethod.let(OidcAttributeRequestMethod.Companion::unwrap))
}
/**
* The client id.
*
* @param clientId The client id.
*/
override fun clientId(clientId: String) {
cdkBuilder.clientId(clientId)
}
/**
* The client secret.
*
* @param clientSecret The client secret.
*/
override fun clientSecret(clientSecret: String) {
cdkBuilder.clientSecret(clientSecret)
}
/**
* OpenID connect endpoints.
*
* Default: - auto discovered with issuer URL
*
* @param endpoints OpenID connect endpoints.
*/
override fun endpoints(endpoints: OidcEndpoints) {
cdkBuilder.endpoints(endpoints.let(OidcEndpoints.Companion::unwrap))
}
/**
* OpenID connect endpoints.
*
* Default: - auto discovered with issuer URL
*
* @param endpoints OpenID connect endpoints.
*/
@kotlin.Suppress("INAPPLICABLE_JVM_NAME")
@JvmName("47ba295429bf4c0b6cf598bc197daa092bdec752210ec00b61c23f978b2e181c")
override fun endpoints(endpoints: OidcEndpoints.Builder.() -> Unit): Unit =
endpoints(OidcEndpoints(endpoints))
/**
* Identifiers.
*
* Identifiers can be used to redirect users to the correct IdP in multitenant apps.
*
* Default: - no identifiers used
*
* @param identifiers Identifiers.
*/
override fun identifiers(identifiers: List) {
cdkBuilder.identifiers(identifiers)
}
/**
* Identifiers.
*
* Identifiers can be used to redirect users to the correct IdP in multitenant apps.
*
* Default: - no identifiers used
*
* @param identifiers Identifiers.
*/
override fun identifiers(vararg identifiers: String): Unit = identifiers(identifiers.toList())
/**
* Issuer URL.
*
* @param issuerUrl Issuer URL.
*/
override fun issuerUrl(issuerUrl: String) {
cdkBuilder.issuerUrl(issuerUrl)
}
/**
* The name of the provider.
*
* Default: - the unique ID of the construct
*
* @param name The name of the provider.
*/
override fun name(name: String) {
cdkBuilder.name(name)
}
/**
* The OAuth 2.0 scopes that you will request from OpenID Connect. Scopes are groups of OpenID
* Connect user attributes to exchange with your app.
*
* Default: ['openid']
*
* @param scopes The OAuth 2.0 scopes that you will request from OpenID Connect. Scopes are
* groups of OpenID Connect user attributes to exchange with your app.
*/
override fun scopes(scopes: List) {
cdkBuilder.scopes(scopes)
}
/**
* The OAuth 2.0 scopes that you will request from OpenID Connect. Scopes are groups of OpenID
* Connect user attributes to exchange with your app.
*
* Default: ['openid']
*
* @param scopes The OAuth 2.0 scopes that you will request from OpenID Connect. Scopes are
* groups of OpenID Connect user attributes to exchange with your app.
*/
override fun scopes(vararg scopes: String): Unit = scopes(scopes.toList())
/**
* The user pool to which this construct provides identities.
*
* @param userPool The user pool to which this construct provides identities.
*/
override fun userPool(userPool: IUserPool) {
cdkBuilder.userPool(userPool.let(IUserPool.Companion::unwrap))
}
public fun build(): software.amazon.awscdk.services.cognito.UserPoolIdentityProviderOidc =
cdkBuilder.build()
}
public companion object {
public operator fun invoke(
scope: CloudshiftdevConstructsConstruct,
id: String,
block: Builder.() -> Unit = {},
): UserPoolIdentityProviderOidc {
val builderImpl = BuilderImpl(CloudshiftdevConstructsConstruct.unwrap(scope), id)
return UserPoolIdentityProviderOidc(builderImpl.apply(block).build())
}
internal
fun wrap(cdkObject: software.amazon.awscdk.services.cognito.UserPoolIdentityProviderOidc):
UserPoolIdentityProviderOidc = UserPoolIdentityProviderOidc(cdkObject)
internal fun unwrap(wrapped: UserPoolIdentityProviderOidc):
software.amazon.awscdk.services.cognito.UserPoolIdentityProviderOidc = wrapped.cdkObject as
software.amazon.awscdk.services.cognito.UserPoolIdentityProviderOidc
}
}