io.cloudshiftdev.awscdk.services.ec2.VpnGateway.kt Maven / Gradle / Ivy
The newest version!
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")
package io.cloudshiftdev.awscdk.services.ec2
import io.cloudshiftdev.awscdk.Resource
import io.cloudshiftdev.awscdk.common.CdkDslMarker
import kotlin.Number
import kotlin.String
import kotlin.Unit
import io.cloudshiftdev.constructs.Construct as CloudshiftdevConstructsConstruct
import software.constructs.Construct as SoftwareConstructsConstruct
/**
* The VPN Gateway that shall be added to the VPC.
*
* 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.ec2.*;
* VpnGateway vpnGateway = VpnGateway.Builder.create(this, "MyVpnGateway")
* .type("type")
* // the properties below are optional
* .amazonSideAsn(123)
* .build();
* ```
*/
public open class VpnGateway(
cdkObject: software.amazon.awscdk.services.ec2.VpnGateway,
) : Resource(cdkObject),
IVpnGateway {
public constructor(
scope: CloudshiftdevConstructsConstruct,
id: String,
props: VpnGatewayProps,
) :
this(software.amazon.awscdk.services.ec2.VpnGateway(scope.let(CloudshiftdevConstructsConstruct.Companion::unwrap),
id, props.let(VpnGatewayProps.Companion::unwrap))
)
public constructor(
scope: CloudshiftdevConstructsConstruct,
id: String,
props: VpnGatewayProps.Builder.() -> Unit,
) : this(scope, id, VpnGatewayProps(props)
)
/**
* The virtual private gateway Id.
*/
public override fun gatewayId(): String = unwrap(this).getGatewayId()
/**
* A fluent builder for [io.cloudshiftdev.awscdk.services.ec2.VpnGateway].
*/
@CdkDslMarker
public interface Builder {
/**
* Explicitly specify an Asn or let aws pick an Asn for you.
*
* Default: 65000
*
* @param amazonSideAsn Explicitly specify an Asn or let aws pick an Asn for you.
*/
public fun amazonSideAsn(amazonSideAsn: Number)
/**
* Default type ipsec.1.
*
* @param type Default type ipsec.1.
*/
public fun type(type: String)
}
private class BuilderImpl(
scope: SoftwareConstructsConstruct,
id: String,
) : Builder {
private val cdkBuilder: software.amazon.awscdk.services.ec2.VpnGateway.Builder =
software.amazon.awscdk.services.ec2.VpnGateway.Builder.create(scope, id)
/**
* Explicitly specify an Asn or let aws pick an Asn for you.
*
* Default: 65000
*
* @param amazonSideAsn Explicitly specify an Asn or let aws pick an Asn for you.
*/
override fun amazonSideAsn(amazonSideAsn: Number) {
cdkBuilder.amazonSideAsn(amazonSideAsn)
}
/**
* Default type ipsec.1.
*
* @param type Default type ipsec.1.
*/
override fun type(type: String) {
cdkBuilder.type(type)
}
public fun build(): software.amazon.awscdk.services.ec2.VpnGateway = cdkBuilder.build()
}
public companion object {
public operator fun invoke(
scope: CloudshiftdevConstructsConstruct,
id: String,
block: Builder.() -> Unit = {},
): VpnGateway {
val builderImpl = BuilderImpl(CloudshiftdevConstructsConstruct.unwrap(scope), id)
return VpnGateway(builderImpl.apply(block).build())
}
internal fun wrap(cdkObject: software.amazon.awscdk.services.ec2.VpnGateway): VpnGateway =
VpnGateway(cdkObject)
internal fun unwrap(wrapped: VpnGateway): software.amazon.awscdk.services.ec2.VpnGateway =
wrapped.cdkObject as software.amazon.awscdk.services.ec2.VpnGateway
}
}