io.cloudshiftdev.awscdk.services.dynamodb.Attribute.kt Maven / Gradle / Ivy
The newest version!
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")
package io.cloudshiftdev.awscdk.services.dynamodb
import io.cloudshiftdev.awscdk.common.CdkDslMarker
import io.cloudshiftdev.awscdk.common.CdkObject
import io.cloudshiftdev.awscdk.common.CdkObjectWrappers
import kotlin.String
import kotlin.Unit
/**
* Represents an attribute for describing the key schema for the table and indexes.
*
* Example:
*
* ```
* import io.cloudshiftdev.awscdk.*;
* App app = new App();
* Stack stack = Stack.Builder.create(app,
* "Stack").env(Environment.builder().region("us-west-2").build()).build();
* TableV2 globalTable = TableV2.Builder.create(stack, "GlobalTable")
* .partitionKey(Attribute.builder().name("pk").type(AttributeType.STRING).build())
* // applys to all replicas, i.e., us-west-2, us-east-1, us-east-2
* .removalPolicy(RemovalPolicy.DESTROY)
* .replicas(List.of(ReplicaTableProps.builder().region("us-east-1").build(),
* ReplicaTableProps.builder().region("us-east-2").build()))
* .build();
* ```
*/
public interface Attribute {
/**
* The name of an attribute.
*/
public fun name(): String
/**
* The data type of an attribute.
*/
public fun type(): AttributeType
/**
* A builder for [Attribute]
*/
@CdkDslMarker
public interface Builder {
/**
* @param name The name of an attribute.
*/
public fun name(name: String)
/**
* @param type The data type of an attribute.
*/
public fun type(type: AttributeType)
}
private class BuilderImpl : Builder {
private val cdkBuilder: software.amazon.awscdk.services.dynamodb.Attribute.Builder =
software.amazon.awscdk.services.dynamodb.Attribute.builder()
/**
* @param name The name of an attribute.
*/
override fun name(name: String) {
cdkBuilder.name(name)
}
/**
* @param type The data type of an attribute.
*/
override fun type(type: AttributeType) {
cdkBuilder.type(type.let(AttributeType.Companion::unwrap))
}
public fun build(): software.amazon.awscdk.services.dynamodb.Attribute = cdkBuilder.build()
}
private class Wrapper(
cdkObject: software.amazon.awscdk.services.dynamodb.Attribute,
) : CdkObject(cdkObject),
Attribute {
/**
* The name of an attribute.
*/
override fun name(): String = unwrap(this).getName()
/**
* The data type of an attribute.
*/
override fun type(): AttributeType = unwrap(this).getType().let(AttributeType::wrap)
}
public companion object {
public operator fun invoke(block: Builder.() -> Unit = {}): Attribute {
val builderImpl = BuilderImpl()
return Wrapper(builderImpl.apply(block).build())
}
internal fun wrap(cdkObject: software.amazon.awscdk.services.dynamodb.Attribute): Attribute =
CdkObjectWrappers.wrap(cdkObject) as? Attribute ?: Wrapper(cdkObject)
internal fun unwrap(wrapped: Attribute): software.amazon.awscdk.services.dynamodb.Attribute =
(wrapped as CdkObject).cdkObject as software.amazon.awscdk.services.dynamodb.Attribute
}
}