Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.dynamodb.kotlin
import com.pulumi.awsnative.dynamodb.TableArgs.builder
import com.pulumi.awsnative.dynamodb.kotlin.inputs.TableAttributeDefinitionArgs
import com.pulumi.awsnative.dynamodb.kotlin.inputs.TableAttributeDefinitionArgsBuilder
import com.pulumi.awsnative.dynamodb.kotlin.inputs.TableContributorInsightsSpecificationArgs
import com.pulumi.awsnative.dynamodb.kotlin.inputs.TableContributorInsightsSpecificationArgsBuilder
import com.pulumi.awsnative.dynamodb.kotlin.inputs.TableGlobalSecondaryIndexArgs
import com.pulumi.awsnative.dynamodb.kotlin.inputs.TableGlobalSecondaryIndexArgsBuilder
import com.pulumi.awsnative.dynamodb.kotlin.inputs.TableImportSourceSpecificationArgs
import com.pulumi.awsnative.dynamodb.kotlin.inputs.TableImportSourceSpecificationArgsBuilder
import com.pulumi.awsnative.dynamodb.kotlin.inputs.TableKeySchemaArgs
import com.pulumi.awsnative.dynamodb.kotlin.inputs.TableKinesisStreamSpecificationArgs
import com.pulumi.awsnative.dynamodb.kotlin.inputs.TableKinesisStreamSpecificationArgsBuilder
import com.pulumi.awsnative.dynamodb.kotlin.inputs.TableLocalSecondaryIndexArgs
import com.pulumi.awsnative.dynamodb.kotlin.inputs.TableLocalSecondaryIndexArgsBuilder
import com.pulumi.awsnative.dynamodb.kotlin.inputs.TableOnDemandThroughputArgs
import com.pulumi.awsnative.dynamodb.kotlin.inputs.TableOnDemandThroughputArgsBuilder
import com.pulumi.awsnative.dynamodb.kotlin.inputs.TablePointInTimeRecoverySpecificationArgs
import com.pulumi.awsnative.dynamodb.kotlin.inputs.TablePointInTimeRecoverySpecificationArgsBuilder
import com.pulumi.awsnative.dynamodb.kotlin.inputs.TableProvisionedThroughputArgs
import com.pulumi.awsnative.dynamodb.kotlin.inputs.TableProvisionedThroughputArgsBuilder
import com.pulumi.awsnative.dynamodb.kotlin.inputs.TableResourcePolicyArgs
import com.pulumi.awsnative.dynamodb.kotlin.inputs.TableResourcePolicyArgsBuilder
import com.pulumi.awsnative.dynamodb.kotlin.inputs.TableSseSpecificationArgs
import com.pulumi.awsnative.dynamodb.kotlin.inputs.TableSseSpecificationArgsBuilder
import com.pulumi.awsnative.dynamodb.kotlin.inputs.TableStreamSpecificationArgs
import com.pulumi.awsnative.dynamodb.kotlin.inputs.TableStreamSpecificationArgsBuilder
import com.pulumi.awsnative.dynamodb.kotlin.inputs.TableTimeToLiveSpecificationArgs
import com.pulumi.awsnative.dynamodb.kotlin.inputs.TableTimeToLiveSpecificationArgsBuilder
import com.pulumi.awsnative.kotlin.inputs.TagArgs
import com.pulumi.awsnative.kotlin.inputs.TagArgsBuilder
import com.pulumi.core.Either
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Any
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* The ``AWS::DynamoDB::Table`` resource creates a DDB table. For more information, see [CreateTable](https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_CreateTable.html) in the *API Reference*.
* You should be aware of the following behaviors when working with DDB tables:
* + CFNlong typically creates DDB tables in parallel. However, if your template includes multiple DDB tables with indexes, you must declare dependencies so that the tables are created sequentially. DDBlong limits the number of tables with secondary indexes that are in the creating state. If you create multiple tables with indexes at the same time, DDB returns an error and the stack operation fails. For an example, see [DynamoDB Table with a DependsOn Attribute](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#aws-resource-dynamodb-table--examples--DynamoDB_Table_with_a_DependsOn_Attribute).
* Our guidance is to use the latest schema documented here for your CFNlong templates. This schema supports the provisioning of all table settings below. When using this schema in your CFNlong templates, please ensure that your Identity and Access Management (IAM) policies are updated with appropriate permissions to allow for the authorization of these setting changes.
* ## Example Usage
* ### Example
* No Java example available.
* ### Example
* No Java example available.
* @property attributeDefinitions A list of attributes that describe the key schema for the table and indexes.
* This property is required to create a DDB table.
* Update requires: [Some interruptions](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-some-interrupt). Replacement if you edit an existing AttributeDefinition.
* @property billingMode Specify how you are charged for read and write throughput and how you manage capacity.
* Valid values include:
* + ``PROVISIONED`` - We recommend using ``PROVISIONED`` for predictable workloads. ``PROVISIONED`` sets the billing mode to [Provisioned Mode](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html#HowItWorks.ProvisionedThroughput.Manual).
* + ``PAY_PER_REQUEST`` - We recommend using ``PAY_PER_REQUEST`` for unpredictable workloads. ``PAY_PER_REQUEST`` sets the billing mode to [On-Demand Mode](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html#HowItWorks.OnDemand).
* If not specified, the default is ``PROVISIONED``.
* @property contributorInsightsSpecification The settings used to enable or disable CloudWatch Contributor Insights for the specified table.
* @property deletionProtectionEnabled Determines if a table is protected from deletion. When enabled, the table cannot be deleted by any user or process. This setting is disabled by default. For more information, see [Using deletion protection](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithTables.Basics.html#WorkingWithTables.Basics.DeletionProtection) in the *Developer Guide*.
* @property globalSecondaryIndexes Global secondary indexes to be created on the table. You can create up to 20 global secondary indexes.
* If you update a table to include a new global secondary index, CFNlong initiates the index creation and then proceeds with the stack update. CFNlong doesn't wait for the index to complete creation because the backfilling phase can take a long time, depending on the size of the table. You can't use the index or update the table until the index's status is ``ACTIVE``. You can track its status by using the DynamoDB [DescribeTable](https://docs.aws.amazon.com/cli/latest/reference/dynamodb/describe-table.html) command.
* If you add or delete an index during an update, we recommend that you don't update any other resources. If your stack fails to update and is rolled back while adding a new index, you must manually delete the index.
* Updates are not supported. The following are exceptions:
* + If you update either the contributor insights specification or the provisioned throughput values of global secondary indexes, you can update the table without interruption.
* + You can delete or add one global secondary index without interruption. If you do both in the same update (for example, by changing the index's logical ID), the update fails.
* @property importSourceSpecification Specifies the properties of data being imported from the S3 bucket source to the table.
* If you specify the ``ImportSourceSpecification`` property, and also specify either the ``StreamSpecification``, the ``TableClass`` property, or the ``DeletionProtectionEnabled`` property, the IAM entity creating/updating stack must have ``UpdateTable`` permission.
* @property keySchema Specifies the attributes that make up the primary key for the table. The attributes in the ``KeySchema`` property must also be defined in the ``AttributeDefinitions`` property.
* @property kinesisStreamSpecification The Kinesis Data Streams configuration for the specified table.
* @property localSecondaryIndexes Local secondary indexes to be created on the table. You can create up to 5 local secondary indexes. Each index is scoped to a given hash key value. The size of each hash key can be up to 10 gigabytes.
* @property onDemandThroughput Sets the maximum number of read and write units for the specified on-demand table. If you use this property, you must specify ``MaxReadRequestUnits``, ``MaxWriteRequestUnits``, or both.
* @property pointInTimeRecoverySpecification The settings used to enable point in time recovery.
* @property provisionedThroughput Throughput for the specified table, which consists of values for ``ReadCapacityUnits`` and ``WriteCapacityUnits``. For more information about the contents of a provisioned throughput structure, see [Amazon DynamoDB Table ProvisionedThroughput](https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_ProvisionedThroughput.html).
* If you set ``BillingMode`` as ``PROVISIONED``, you must specify this property. If you set ``BillingMode`` as ``PAY_PER_REQUEST``, you cannot specify this property.
* @property resourcePolicy A resource-based policy document that contains permissions to add to the specified table. In a CFNshort template, you can provide the policy in JSON or YAML format because CFNshort converts YAML to JSON before submitting it to DDB. For more information about resource-based policies, see [Using resource-based policies for](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/access-control-resource-based.html) and [Resource-based policy examples](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/rbac-examples.html).
* When you attach a resource-based policy while creating a table, the policy creation is *strongly consistent*. For information about the considerations that you should keep in mind while attaching a resource-based policy, see [Resource-based policy considerations](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/rbac-considerations.html).
* @property sseSpecification Specifies the settings to enable server-side encryption.
* @property streamSpecification The settings for the DDB table stream, which capture changes to items stored in the table.
* @property tableClass The table class of the new table. Valid values are ``STANDARD`` and ``STANDARD_INFREQUENT_ACCESS``.
* @property tableName A name for the table. If you don't specify a name, CFNlong generates a unique physical ID and uses that ID for the table name. For more information, see [Name Type](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html).
* If you specify a name, you cannot perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.
* @property tags An array of key-value pairs to apply to this resource.
* For more information, see [Tag](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html).
* @property timeToLiveSpecification Specifies the Time to Live (TTL) settings for the table.
* For detailed information about the limits in DynamoDB, see [Limits in Amazon DynamoDB](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html) in the Amazon DynamoDB Developer Guide.
*/
public data class TableArgs(
public val attributeDefinitions: Output>? = null,
public val billingMode: Output? = null,
public val contributorInsightsSpecification: Output? =
null,
public val deletionProtectionEnabled: Output? = null,
public val globalSecondaryIndexes: Output>? = null,
public val importSourceSpecification: Output? = null,
public val keySchema: Output, Any>>? = null,
public val kinesisStreamSpecification: Output? = null,
public val localSecondaryIndexes: Output>? = null,
public val onDemandThroughput: Output? = null,
public val pointInTimeRecoverySpecification: Output? =
null,
public val provisionedThroughput: Output? = null,
public val resourcePolicy: Output? = null,
public val sseSpecification: Output? = null,
public val streamSpecification: Output? = null,
public val tableClass: Output? = null,
public val tableName: Output? = null,
public val tags: Output>? = null,
public val timeToLiveSpecification: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.dynamodb.TableArgs =
com.pulumi.awsnative.dynamodb.TableArgs.builder()
.attributeDefinitions(
attributeDefinitions?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
)
.billingMode(billingMode?.applyValue({ args0 -> args0 }))
.contributorInsightsSpecification(
contributorInsightsSpecification?.applyValue({ args0 ->
args0.let({ args0 -> args0.toJava() })
}),
)
.deletionProtectionEnabled(deletionProtectionEnabled?.applyValue({ args0 -> args0 }))
.globalSecondaryIndexes(
globalSecondaryIndexes?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
)
.importSourceSpecification(
importSourceSpecification?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.keySchema(
keySchema?.applyValue({ args0 ->
args0.transform({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}, { args0 -> args0 })
}),
)
.kinesisStreamSpecification(
kinesisStreamSpecification?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.localSecondaryIndexes(
localSecondaryIndexes?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
)
.onDemandThroughput(
onDemandThroughput?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.pointInTimeRecoverySpecification(
pointInTimeRecoverySpecification?.applyValue({ args0 ->
args0.let({ args0 -> args0.toJava() })
}),
)
.provisionedThroughput(
provisionedThroughput?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.resourcePolicy(resourcePolicy?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.sseSpecification(sseSpecification?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.streamSpecification(
streamSpecification?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.tableClass(tableClass?.applyValue({ args0 -> args0 }))
.tableName(tableName?.applyValue({ args0 -> args0 }))
.tags(tags?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
.timeToLiveSpecification(
timeToLiveSpecification?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [TableArgs].
*/
@PulumiTagMarker
public class TableArgsBuilder internal constructor() {
private var attributeDefinitions: Output>? = null
private var billingMode: Output? = null
private var contributorInsightsSpecification: Output? =
null
private var deletionProtectionEnabled: Output? = null
private var globalSecondaryIndexes: Output>? = null
private var importSourceSpecification: Output? = null
private var keySchema: Output, Any>>? = null
private var kinesisStreamSpecification: Output? = null
private var localSecondaryIndexes: Output>? = null
private var onDemandThroughput: Output? = null
private var pointInTimeRecoverySpecification: Output? =
null
private var provisionedThroughput: Output? = null
private var resourcePolicy: Output? = null
private var sseSpecification: Output? = null
private var streamSpecification: Output? = null
private var tableClass: Output? = null
private var tableName: Output? = null
private var tags: Output>? = null
private var timeToLiveSpecification: Output? = null
/**
* @param value A list of attributes that describe the key schema for the table and indexes.
* This property is required to create a DDB table.
* Update requires: [Some interruptions](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-some-interrupt). Replacement if you edit an existing AttributeDefinition.
*/
@JvmName("bsepxuptpspxgjde")
public suspend fun attributeDefinitions(`value`: Output>) {
this.attributeDefinitions = value
}
@JvmName("ucsdoevpnyvkktbc")
public suspend fun attributeDefinitions(vararg values: Output) {
this.attributeDefinitions = Output.all(values.asList())
}
/**
* @param values A list of attributes that describe the key schema for the table and indexes.
* This property is required to create a DDB table.
* Update requires: [Some interruptions](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-some-interrupt). Replacement if you edit an existing AttributeDefinition.
*/
@JvmName("wfwjqwrayhoeujby")
public suspend fun attributeDefinitions(values: List