![JAR search and dependency download from the Maven repository](/logo.png)
io.cloudshiftdev.awscdk.services.cognito.UserPoolIdentityProviderSaml.kt Maven / Gradle / Ivy
@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.Boolean
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 SAML.
*
* Example:
*
* ```
* UserPool userpool = new UserPool(this, "Pool");
* // specify the metadata as a file content
* // specify the metadata as a file content
* UserPoolIdentityProviderSaml.Builder.create(this, "userpoolIdpFile")
* .userPool(userpool)
* .metadata(UserPoolIdentityProviderSamlMetadata.file("my-file-contents"))
* // Whether to require encrypted SAML assertions from IdP
* .encryptedResponses(true)
* // The signing algorithm for the SAML requests
* .requestSigningAlgorithm(SigningAlgorithm.RSA_SHA256)
* // Enable IdP initiated SAML auth flow
* .idpInitiated(true)
* .build();
* // specify the metadata as a URL
* // specify the metadata as a URL
* UserPoolIdentityProviderSaml.Builder.create(this, "userpoolidpUrl")
* .userPool(userpool)
* .metadata(UserPoolIdentityProviderSamlMetadata.url("https://my-metadata-url.com"))
* .build();
* ```
*/
public open class UserPoolIdentityProviderSaml(
cdkObject: software.amazon.awscdk.services.cognito.UserPoolIdentityProviderSaml,
) : Resource(cdkObject),
IUserPoolIdentityProvider {
public constructor(
scope: CloudshiftdevConstructsConstruct,
id: String,
props: UserPoolIdentityProviderSamlProps,
) :
this(software.amazon.awscdk.services.cognito.UserPoolIdentityProviderSaml(scope.let(CloudshiftdevConstructsConstruct.Companion::unwrap),
id, props.let(UserPoolIdentityProviderSamlProps.Companion::unwrap))
)
public constructor(
scope: CloudshiftdevConstructsConstruct,
id: String,
props: UserPoolIdentityProviderSamlProps.Builder.() -> Unit,
) : this(scope, id, UserPoolIdentityProviderSamlProps(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.UserPoolIdentityProviderSaml].
*/
@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("f3771ad72297d21014e17d52c30c5f392224535d2f3ee940dc37713e13e6ce65")
public fun attributeMapping(attributeMapping: AttributeMapping.Builder.() -> Unit)
/**
* Whether to require encrypted SAML assertions from IdP.
*
* Default: false
*
* [Documentation](https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pools-SAML-signing-encryption.html#cognito-user-pools-SAML-encryption)
* @param encryptedResponses Whether to require encrypted SAML assertions from IdP.
*/
public fun encryptedResponses(encryptedResponses: Boolean)
/**
* 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)
/**
* Whether to enable IdP-initiated SAML auth flows.
*
* Default: false
*
* @param idpInitiated Whether to enable IdP-initiated SAML auth flows.
*/
public fun idpInitiated(idpInitiated: Boolean)
/**
* Whether to enable the "Sign-out flow" feature.
*
* Default: - false
*
* @param idpSignout Whether to enable the "Sign-out flow" feature.
*/
public fun idpSignout(idpSignout: Boolean)
/**
* The SAML metadata.
*
* @param metadata The SAML metadata.
*/
public fun metadata(metadata: UserPoolIdentityProviderSamlMetadata)
/**
* The name of the provider.
*
* Must be between 3 and 32 characters.
*
* Default: - the unique ID of the construct
*
* @param name The name of the provider.
*/
public fun name(name: String)
/**
* The signing algorithm for SAML requests.
*
* Default: - don't sign requests
*
* [Documentation](https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pools-SAML-signing-encryption.html#cognito-user-pools-SAML-signing)
* @param requestSigningAlgorithm The signing algorithm for SAML requests.
*/
public fun requestSigningAlgorithm(requestSigningAlgorithm: SigningAlgorithm)
/**
* 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.UserPoolIdentityProviderSaml.Builder =
software.amazon.awscdk.services.cognito.UserPoolIdentityProviderSaml.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("f3771ad72297d21014e17d52c30c5f392224535d2f3ee940dc37713e13e6ce65")
override fun attributeMapping(attributeMapping: AttributeMapping.Builder.() -> Unit): Unit =
attributeMapping(AttributeMapping(attributeMapping))
/**
* Whether to require encrypted SAML assertions from IdP.
*
* Default: false
*
* [Documentation](https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pools-SAML-signing-encryption.html#cognito-user-pools-SAML-encryption)
* @param encryptedResponses Whether to require encrypted SAML assertions from IdP.
*/
override fun encryptedResponses(encryptedResponses: Boolean) {
cdkBuilder.encryptedResponses(encryptedResponses)
}
/**
* 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())
/**
* Whether to enable IdP-initiated SAML auth flows.
*
* Default: false
*
* @param idpInitiated Whether to enable IdP-initiated SAML auth flows.
*/
override fun idpInitiated(idpInitiated: Boolean) {
cdkBuilder.idpInitiated(idpInitiated)
}
/**
* Whether to enable the "Sign-out flow" feature.
*
* Default: - false
*
* @param idpSignout Whether to enable the "Sign-out flow" feature.
*/
override fun idpSignout(idpSignout: Boolean) {
cdkBuilder.idpSignout(idpSignout)
}
/**
* The SAML metadata.
*
* @param metadata The SAML metadata.
*/
override fun metadata(metadata: UserPoolIdentityProviderSamlMetadata) {
cdkBuilder.metadata(metadata.let(UserPoolIdentityProviderSamlMetadata.Companion::unwrap))
}
/**
* The name of the provider.
*
* Must be between 3 and 32 characters.
*
* Default: - the unique ID of the construct
*
* @param name The name of the provider.
*/
override fun name(name: String) {
cdkBuilder.name(name)
}
/**
* The signing algorithm for SAML requests.
*
* Default: - don't sign requests
*
* [Documentation](https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pools-SAML-signing-encryption.html#cognito-user-pools-SAML-signing)
* @param requestSigningAlgorithm The signing algorithm for SAML requests.
*/
override fun requestSigningAlgorithm(requestSigningAlgorithm: SigningAlgorithm) {
cdkBuilder.requestSigningAlgorithm(requestSigningAlgorithm.let(SigningAlgorithm.Companion::unwrap))
}
/**
* 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.UserPoolIdentityProviderSaml =
cdkBuilder.build()
}
public companion object {
public operator fun invoke(
scope: CloudshiftdevConstructsConstruct,
id: String,
block: Builder.() -> Unit = {},
): UserPoolIdentityProviderSaml {
val builderImpl = BuilderImpl(CloudshiftdevConstructsConstruct.unwrap(scope), id)
return UserPoolIdentityProviderSaml(builderImpl.apply(block).build())
}
internal
fun wrap(cdkObject: software.amazon.awscdk.services.cognito.UserPoolIdentityProviderSaml):
UserPoolIdentityProviderSaml = UserPoolIdentityProviderSaml(cdkObject)
internal fun unwrap(wrapped: UserPoolIdentityProviderSaml):
software.amazon.awscdk.services.cognito.UserPoolIdentityProviderSaml = wrapped.cdkObject as
software.amazon.awscdk.services.cognito.UserPoolIdentityProviderSaml
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy