![JAR search and dependency download from the Maven repository](/logo.png)
io.cloudshiftdev.awscdk.services.servicediscovery.AliasTargetInstance.kt Maven / Gradle / Ivy
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")
package io.cloudshiftdev.awscdk.services.servicediscovery
import io.cloudshiftdev.awscdk.common.CdkDslMarker
import kotlin.String
import kotlin.Unit
import kotlin.collections.Map
import io.cloudshiftdev.constructs.Construct as CloudshiftdevConstructsConstruct
import software.constructs.Construct as SoftwareConstructsConstruct
/**
* Instance that uses Route 53 Alias record type.
*
* Currently, the only resource types supported are Elastic Load
* Balancers.
*
* 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.servicediscovery.*;
* Service service;
* AliasTargetInstance aliasTargetInstance = AliasTargetInstance.Builder.create(this,
* "MyAliasTargetInstance")
* .dnsName("dnsName")
* .service(service)
* // the properties below are optional
* .customAttributes(Map.of(
* "customAttributesKey", "customAttributes"))
* .instanceId("instanceId")
* .build();
* ```
*/
public open class AliasTargetInstance(
cdkObject: software.amazon.awscdk.services.servicediscovery.AliasTargetInstance,
) : InstanceBase(cdkObject) {
public constructor(
scope: CloudshiftdevConstructsConstruct,
id: String,
props: AliasTargetInstanceProps,
) :
this(software.amazon.awscdk.services.servicediscovery.AliasTargetInstance(scope.let(CloudshiftdevConstructsConstruct.Companion::unwrap),
id, props.let(AliasTargetInstanceProps.Companion::unwrap))
)
public constructor(
scope: CloudshiftdevConstructsConstruct,
id: String,
props: AliasTargetInstanceProps.Builder.() -> Unit,
) : this(scope, id, AliasTargetInstanceProps(props)
)
/**
* The Route53 DNS name of the alias target.
*/
public open fun dnsName(): String = unwrap(this).getDnsName()
/**
* The Id of the instance.
*/
public override fun instanceId(): String = unwrap(this).getInstanceId()
/**
* The Cloudmap service to which the instance is registered.
*/
public override fun service(): IService = unwrap(this).getService().let(IService::wrap)
/**
* A fluent builder for [io.cloudshiftdev.awscdk.services.servicediscovery.AliasTargetInstance].
*/
@CdkDslMarker
public interface Builder {
/**
* Custom attributes of the instance.
*
* Default: none
*
* @param customAttributes Custom attributes of the instance.
*/
public fun customAttributes(customAttributes: Map)
/**
* DNS name of the target.
*
* @param dnsName DNS name of the target.
*/
public fun dnsName(dnsName: String)
/**
* The id of the instance resource.
*
* Default: Automatically generated name
*
* @param instanceId The id of the instance resource.
*/
public fun instanceId(instanceId: String)
/**
* The Cloudmap service this resource is registered to.
*
* @param service The Cloudmap service this resource is registered to.
*/
public fun service(service: IService)
}
private class BuilderImpl(
scope: SoftwareConstructsConstruct,
id: String,
) : Builder {
private val cdkBuilder:
software.amazon.awscdk.services.servicediscovery.AliasTargetInstance.Builder =
software.amazon.awscdk.services.servicediscovery.AliasTargetInstance.Builder.create(scope,
id)
/**
* Custom attributes of the instance.
*
* Default: none
*
* @param customAttributes Custom attributes of the instance.
*/
override fun customAttributes(customAttributes: Map) {
cdkBuilder.customAttributes(customAttributes)
}
/**
* DNS name of the target.
*
* @param dnsName DNS name of the target.
*/
override fun dnsName(dnsName: String) {
cdkBuilder.dnsName(dnsName)
}
/**
* The id of the instance resource.
*
* Default: Automatically generated name
*
* @param instanceId The id of the instance resource.
*/
override fun instanceId(instanceId: String) {
cdkBuilder.instanceId(instanceId)
}
/**
* The Cloudmap service this resource is registered to.
*
* @param service The Cloudmap service this resource is registered to.
*/
override fun service(service: IService) {
cdkBuilder.service(service.let(IService.Companion::unwrap))
}
public fun build(): software.amazon.awscdk.services.servicediscovery.AliasTargetInstance =
cdkBuilder.build()
}
public companion object {
public operator fun invoke(
scope: CloudshiftdevConstructsConstruct,
id: String,
block: Builder.() -> Unit = {},
): AliasTargetInstance {
val builderImpl = BuilderImpl(CloudshiftdevConstructsConstruct.unwrap(scope), id)
return AliasTargetInstance(builderImpl.apply(block).build())
}
internal
fun wrap(cdkObject: software.amazon.awscdk.services.servicediscovery.AliasTargetInstance):
AliasTargetInstance = AliasTargetInstance(cdkObject)
internal fun unwrap(wrapped: AliasTargetInstance):
software.amazon.awscdk.services.servicediscovery.AliasTargetInstance = wrapped.cdkObject as
software.amazon.awscdk.services.servicediscovery.AliasTargetInstance
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy