io.cloudshiftdev.awscdk.GetContextKeyResult.kt Maven / Gradle / Ivy
The newest version!
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")
package io.cloudshiftdev.awscdk
import io.cloudshiftdev.awscdk.common.CdkDslMarker
import io.cloudshiftdev.awscdk.common.CdkObject
import io.cloudshiftdev.awscdk.common.CdkObjectWrappers
import kotlin.Any
import kotlin.String
import kotlin.Unit
import kotlin.collections.Map
/**
* Example:
*
* ```
* // The code below shows an example of how to instantiate this type.
* // The values are placeholders you should change.
* import io.cloudshiftdev.awscdk.*;
* Object props;
* GetContextKeyResult getContextKeyResult = GetContextKeyResult.builder()
* .key("key")
* .props(Map.of(
* "propsKey", props))
* .build();
* ```
*/
public interface GetContextKeyResult {
/**
*
*/
public fun key(): String
/**
*
*/
public fun props(): Map
/**
* A builder for [GetContextKeyResult]
*/
@CdkDslMarker
public interface Builder {
/**
* @param key the value to be set.
*/
public fun key(key: String)
/**
* @param props the value to be set.
*/
public fun props(props: Map)
}
private class BuilderImpl : Builder {
private val cdkBuilder: software.amazon.awscdk.GetContextKeyResult.Builder =
software.amazon.awscdk.GetContextKeyResult.builder()
/**
* @param key the value to be set.
*/
override fun key(key: String) {
cdkBuilder.key(key)
}
/**
* @param props the value to be set.
*/
override fun props(props: Map) {
cdkBuilder.props(props.mapValues{CdkObjectWrappers.unwrap(it.value)})
}
public fun build(): software.amazon.awscdk.GetContextKeyResult = cdkBuilder.build()
}
private class Wrapper(
cdkObject: software.amazon.awscdk.GetContextKeyResult,
) : CdkObject(cdkObject),
GetContextKeyResult {
/**
*
*/
override fun key(): String = unwrap(this).getKey()
/**
*
*/
override fun props(): Map = unwrap(this).getProps() ?: emptyMap()
}
public companion object {
public operator fun invoke(block: Builder.() -> Unit = {}): GetContextKeyResult {
val builderImpl = BuilderImpl()
return Wrapper(builderImpl.apply(block).build())
}
internal fun wrap(cdkObject: software.amazon.awscdk.GetContextKeyResult): GetContextKeyResult =
CdkObjectWrappers.wrap(cdkObject) as? GetContextKeyResult ?: Wrapper(cdkObject)
internal fun unwrap(wrapped: GetContextKeyResult): software.amazon.awscdk.GetContextKeyResult =
(wrapped as CdkObject).cdkObject as software.amazon.awscdk.GetContextKeyResult
}
}