![JAR search and dependency download from the Maven repository](/logo.png)
io.cloudshiftdev.awscdk.services.ecs.EnvironmentFileConfig.kt Maven / Gradle / Ivy
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")
package io.cloudshiftdev.awscdk.services.ecs
import io.cloudshiftdev.awscdk.common.CdkDslMarker
import io.cloudshiftdev.awscdk.common.CdkObject
import io.cloudshiftdev.awscdk.common.CdkObjectWrappers
import io.cloudshiftdev.awscdk.services.s3.Location
import kotlin.Unit
import kotlin.jvm.JvmName
/**
* Configuration for the environment file.
*
* 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.ecs.*;
* EnvironmentFileConfig environmentFileConfig = EnvironmentFileConfig.builder()
* .fileType(EnvironmentFileType.S3)
* .s3Location(Location.builder()
* .bucketName("bucketName")
* .objectKey("objectKey")
* // the properties below are optional
* .objectVersion("objectVersion")
* .build())
* .build();
* ```
*/
public interface EnvironmentFileConfig {
/**
* The type of environment file.
*/
public fun fileType(): EnvironmentFileType
/**
* The location of the environment file in S3.
*/
public fun s3Location(): Location
/**
* A builder for [EnvironmentFileConfig]
*/
@CdkDslMarker
public interface Builder {
/**
* @param fileType The type of environment file.
*/
public fun fileType(fileType: EnvironmentFileType)
/**
* @param s3Location The location of the environment file in S3.
*/
public fun s3Location(s3Location: Location)
/**
* @param s3Location The location of the environment file in S3.
*/
@kotlin.Suppress("INAPPLICABLE_JVM_NAME")
@JvmName("17deb9224b1df8a8edb2295024ecf99e0645213f9656d16be844db7b415dda7d")
public fun s3Location(s3Location: Location.Builder.() -> Unit)
}
private class BuilderImpl : Builder {
private val cdkBuilder: software.amazon.awscdk.services.ecs.EnvironmentFileConfig.Builder =
software.amazon.awscdk.services.ecs.EnvironmentFileConfig.builder()
/**
* @param fileType The type of environment file.
*/
override fun fileType(fileType: EnvironmentFileType) {
cdkBuilder.fileType(fileType.let(EnvironmentFileType.Companion::unwrap))
}
/**
* @param s3Location The location of the environment file in S3.
*/
override fun s3Location(s3Location: Location) {
cdkBuilder.s3Location(s3Location.let(Location.Companion::unwrap))
}
/**
* @param s3Location The location of the environment file in S3.
*/
@kotlin.Suppress("INAPPLICABLE_JVM_NAME")
@JvmName("17deb9224b1df8a8edb2295024ecf99e0645213f9656d16be844db7b415dda7d")
override fun s3Location(s3Location: Location.Builder.() -> Unit): Unit =
s3Location(Location(s3Location))
public fun build(): software.amazon.awscdk.services.ecs.EnvironmentFileConfig =
cdkBuilder.build()
}
private class Wrapper(
cdkObject: software.amazon.awscdk.services.ecs.EnvironmentFileConfig,
) : CdkObject(cdkObject),
EnvironmentFileConfig {
/**
* The type of environment file.
*/
override fun fileType(): EnvironmentFileType =
unwrap(this).getFileType().let(EnvironmentFileType::wrap)
/**
* The location of the environment file in S3.
*/
override fun s3Location(): Location = unwrap(this).getS3Location().let(Location::wrap)
}
public companion object {
public operator fun invoke(block: Builder.() -> Unit = {}): EnvironmentFileConfig {
val builderImpl = BuilderImpl()
return Wrapper(builderImpl.apply(block).build())
}
internal fun wrap(cdkObject: software.amazon.awscdk.services.ecs.EnvironmentFileConfig):
EnvironmentFileConfig = CdkObjectWrappers.wrap(cdkObject) as? EnvironmentFileConfig ?:
Wrapper(cdkObject)
internal fun unwrap(wrapped: EnvironmentFileConfig):
software.amazon.awscdk.services.ecs.EnvironmentFileConfig = (wrapped as CdkObject).cdkObject
as software.amazon.awscdk.services.ecs.EnvironmentFileConfig
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy