io.cloudshiftdev.awscdk.services.ses.Identity.kt Maven / Gradle / Ivy
The newest version!
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")
package io.cloudshiftdev.awscdk.services.ses
import io.cloudshiftdev.awscdk.common.CdkObject
import io.cloudshiftdev.awscdk.common.CdkObjectWrappers
import io.cloudshiftdev.awscdk.services.route53.IPublicHostedZone
import kotlin.String
/**
* Identity.
*
* Example:
*
* ```
* import io.cloudshiftdev.awscdk.services.iam.*;
* User user;
* EmailIdentity identity = EmailIdentity.Builder.create(this, "Identity")
* .identity(Identity.domain("cdk.dev"))
* .build();
* identity.grantSendEmail(user);
* ```
*/
public abstract class Identity(
cdkObject: software.amazon.awscdk.services.ses.Identity,
) : CdkObject(cdkObject) {
/**
* The hosted zone associated with this identity.
*
* Default: - no hosted zone is associated and no records are created
*/
public open fun hostedZone(): IPublicHostedZone? =
unwrap(this).getHostedZone()?.let(IPublicHostedZone::wrap)
/**
* The value of the identity.
*/
public open fun `value`(): String = unwrap(this).getValue()
private class Wrapper(
cdkObject: software.amazon.awscdk.services.ses.Identity,
) : Identity(cdkObject)
public companion object {
public fun domain(domain: String): Identity =
software.amazon.awscdk.services.ses.Identity.domain(domain).let(Identity::wrap)
public fun email(email: String): Identity =
software.amazon.awscdk.services.ses.Identity.email(email).let(Identity::wrap)
public fun publicHostedZone(hostedZone: IPublicHostedZone): Identity =
software.amazon.awscdk.services.ses.Identity.publicHostedZone(hostedZone.let(IPublicHostedZone.Companion::unwrap)).let(Identity::wrap)
internal fun wrap(cdkObject: software.amazon.awscdk.services.ses.Identity): Identity =
CdkObjectWrappers.wrap(cdkObject) as? Identity ?: Wrapper(cdkObject)
internal fun unwrap(wrapped: Identity): software.amazon.awscdk.services.ses.Identity = (wrapped
as CdkObject).cdkObject as software.amazon.awscdk.services.ses.Identity
}
}