io.cloudshiftdev.awscdk.services.appconfig.SourcedConfigurationProps.kt Maven / Gradle / Ivy
The newest version!
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")
package io.cloudshiftdev.awscdk.services.appconfig
import io.cloudshiftdev.awscdk.common.CdkDslMarker
import io.cloudshiftdev.awscdk.common.CdkObject
import io.cloudshiftdev.awscdk.common.CdkObjectWrappers
import io.cloudshiftdev.awscdk.services.iam.IRole
import io.cloudshiftdev.awscdk.services.kms.IKey
import kotlin.String
import kotlin.Unit
import kotlin.collections.List
/**
* Properties for SourcedConfiguration.
*
* Example:
*
* ```
* Application application;
* Bucket bucket;
* SourcedConfiguration.Builder.create(this, "MySourcedConfiguration")
* .application(application)
* .location(ConfigurationSource.fromBucket(bucket, "path/to/file.json"))
* .type(ConfigurationType.FEATURE_FLAGS)
* .name("MyConfig")
* .description("This is my sourced configuration from CDK.")
* .build();
* ```
*/
public interface SourcedConfigurationProps : ConfigurationProps {
/**
* The location where the configuration is stored.
*/
public fun location(): ConfigurationSource
/**
* The IAM role to retrieve the configuration.
*
* Default: - Auto generated if location type is not ConfigurationSourceType.CODE_PIPELINE
* otherwise no role specified.
*/
public fun retrievalRole(): IRole? = unwrap(this).getRetrievalRole()?.let(IRole::wrap)
/**
* The version number of the sourced configuration to deploy.
*
* If this is not specified,
* then there will be no deployment.
*
* Default: - None.
*/
public fun versionNumber(): String? = unwrap(this).getVersionNumber()
/**
* A builder for [SourcedConfigurationProps]
*/
@CdkDslMarker
public interface Builder {
/**
* @param application The application associated with the configuration.
*/
public fun application(application: IApplication)
/**
* @param deployTo The list of environments to deploy the configuration to.
* If this parameter is not specified, then there will be no
* deployment created alongside this configuration.
*
* Deployments can be added later using the `IEnvironment.addDeployment` or
* `IEnvironment.addDeployments` methods.
*/
public fun deployTo(deployTo: List)
/**
* @param deployTo The list of environments to deploy the configuration to.
* If this parameter is not specified, then there will be no
* deployment created alongside this configuration.
*
* Deployments can be added later using the `IEnvironment.addDeployment` or
* `IEnvironment.addDeployments` methods.
*/
public fun deployTo(vararg deployTo: IEnvironment)
/**
* @param deploymentKey The deployment key of the configuration.
*/
public fun deploymentKey(deploymentKey: IKey)
/**
* @param deploymentStrategy The deployment strategy for the configuration.
*/
public fun deploymentStrategy(deploymentStrategy: IDeploymentStrategy)
/**
* @param description The description of the configuration.
*/
public fun description(description: String)
/**
* @param location The location where the configuration is stored.
*/
public fun location(location: ConfigurationSource)
/**
* @param name The name of the configuration.
*/
public fun name(name: String)
/**
* @param retrievalRole The IAM role to retrieve the configuration.
*/
public fun retrievalRole(retrievalRole: IRole)
/**
* @param type The type of configuration.
*/
public fun type(type: ConfigurationType)
/**
* @param validators The validators for the configuration.
*/
public fun validators(validators: List)
/**
* @param validators The validators for the configuration.
*/
public fun validators(vararg validators: IValidator)
/**
* @param versionNumber The version number of the sourced configuration to deploy.
* If this is not specified,
* then there will be no deployment.
*/
public fun versionNumber(versionNumber: String)
}
private class BuilderImpl : Builder {
private val cdkBuilder:
software.amazon.awscdk.services.appconfig.SourcedConfigurationProps.Builder =
software.amazon.awscdk.services.appconfig.SourcedConfigurationProps.builder()
/**
* @param application The application associated with the configuration.
*/
override fun application(application: IApplication) {
cdkBuilder.application(application.let(IApplication.Companion::unwrap))
}
/**
* @param deployTo The list of environments to deploy the configuration to.
* If this parameter is not specified, then there will be no
* deployment created alongside this configuration.
*
* Deployments can be added later using the `IEnvironment.addDeployment` or
* `IEnvironment.addDeployments` methods.
*/
override fun deployTo(deployTo: List) {
cdkBuilder.deployTo(deployTo.map(IEnvironment.Companion::unwrap))
}
/**
* @param deployTo The list of environments to deploy the configuration to.
* If this parameter is not specified, then there will be no
* deployment created alongside this configuration.
*
* Deployments can be added later using the `IEnvironment.addDeployment` or
* `IEnvironment.addDeployments` methods.
*/
override fun deployTo(vararg deployTo: IEnvironment): Unit = deployTo(deployTo.toList())
/**
* @param deploymentKey The deployment key of the configuration.
*/
override fun deploymentKey(deploymentKey: IKey) {
cdkBuilder.deploymentKey(deploymentKey.let(IKey.Companion::unwrap))
}
/**
* @param deploymentStrategy The deployment strategy for the configuration.
*/
override fun deploymentStrategy(deploymentStrategy: IDeploymentStrategy) {
cdkBuilder.deploymentStrategy(deploymentStrategy.let(IDeploymentStrategy.Companion::unwrap))
}
/**
* @param description The description of the configuration.
*/
override fun description(description: String) {
cdkBuilder.description(description)
}
/**
* @param location The location where the configuration is stored.
*/
override fun location(location: ConfigurationSource) {
cdkBuilder.location(location.let(ConfigurationSource.Companion::unwrap))
}
/**
* @param name The name of the configuration.
*/
override fun name(name: String) {
cdkBuilder.name(name)
}
/**
* @param retrievalRole The IAM role to retrieve the configuration.
*/
override fun retrievalRole(retrievalRole: IRole) {
cdkBuilder.retrievalRole(retrievalRole.let(IRole.Companion::unwrap))
}
/**
* @param type The type of configuration.
*/
override fun type(type: ConfigurationType) {
cdkBuilder.type(type.let(ConfigurationType.Companion::unwrap))
}
/**
* @param validators The validators for the configuration.
*/
override fun validators(validators: List) {
cdkBuilder.validators(validators.map(IValidator.Companion::unwrap))
}
/**
* @param validators The validators for the configuration.
*/
override fun validators(vararg validators: IValidator): Unit = validators(validators.toList())
/**
* @param versionNumber The version number of the sourced configuration to deploy.
* If this is not specified,
* then there will be no deployment.
*/
override fun versionNumber(versionNumber: String) {
cdkBuilder.versionNumber(versionNumber)
}
public fun build(): software.amazon.awscdk.services.appconfig.SourcedConfigurationProps =
cdkBuilder.build()
}
private class Wrapper(
cdkObject: software.amazon.awscdk.services.appconfig.SourcedConfigurationProps,
) : CdkObject(cdkObject),
SourcedConfigurationProps {
/**
* The application associated with the configuration.
*/
override fun application(): IApplication = unwrap(this).getApplication().let(IApplication::wrap)
/**
* The list of environments to deploy the configuration to.
*
* If this parameter is not specified, then there will be no
* deployment created alongside this configuration.
*
* Deployments can be added later using the `IEnvironment.addDeployment` or
* `IEnvironment.addDeployments` methods.
*
* Default: - None.
*/
override fun deployTo(): List =
unwrap(this).getDeployTo()?.map(IEnvironment::wrap) ?: emptyList()
/**
* The deployment key of the configuration.
*
* Default: - None.
*/
override fun deploymentKey(): IKey? = unwrap(this).getDeploymentKey()?.let(IKey::wrap)
/**
* The deployment strategy for the configuration.
*
* Default: - A deployment strategy with the rollout strategy set to
* RolloutStrategy.CANARY_10_PERCENT_20_MINUTES
*/
override fun deploymentStrategy(): IDeploymentStrategy? =
unwrap(this).getDeploymentStrategy()?.let(IDeploymentStrategy::wrap)
/**
* The description of the configuration.
*
* Default: - No description.
*/
override fun description(): String? = unwrap(this).getDescription()
/**
* The location where the configuration is stored.
*/
override fun location(): ConfigurationSource =
unwrap(this).getLocation().let(ConfigurationSource::wrap)
/**
* The name of the configuration.
*
* Default: - A name is generated.
*/
override fun name(): String? = unwrap(this).getName()
/**
* The IAM role to retrieve the configuration.
*
* Default: - Auto generated if location type is not ConfigurationSourceType.CODE_PIPELINE
* otherwise no role specified.
*/
override fun retrievalRole(): IRole? = unwrap(this).getRetrievalRole()?.let(IRole::wrap)
/**
* The type of configuration.
*
* Default: ConfigurationType.FREEFORM
*/
override fun type(): ConfigurationType? = unwrap(this).getType()?.let(ConfigurationType::wrap)
/**
* The validators for the configuration.
*
* Default: - No validators.
*/
override fun validators(): List =
unwrap(this).getValidators()?.map(IValidator::wrap) ?: emptyList()
/**
* The version number of the sourced configuration to deploy.
*
* If this is not specified,
* then there will be no deployment.
*
* Default: - None.
*/
override fun versionNumber(): String? = unwrap(this).getVersionNumber()
}
public companion object {
public operator fun invoke(block: Builder.() -> Unit = {}): SourcedConfigurationProps {
val builderImpl = BuilderImpl()
return Wrapper(builderImpl.apply(block).build())
}
internal
fun wrap(cdkObject: software.amazon.awscdk.services.appconfig.SourcedConfigurationProps):
SourcedConfigurationProps = CdkObjectWrappers.wrap(cdkObject) as? SourcedConfigurationProps
?: Wrapper(cdkObject)
internal fun unwrap(wrapped: SourcedConfigurationProps):
software.amazon.awscdk.services.appconfig.SourcedConfigurationProps = (wrapped as
CdkObject).cdkObject as software.amazon.awscdk.services.appconfig.SourcedConfigurationProps
}
}