GlobalTableGlobalSecondaryIndexArgs

data class GlobalTableGlobalSecondaryIndexArgs(val indexName: Output<String>, val keySchema: Output<List<GlobalTableKeySchemaArgs>>, val projection: Output<GlobalTableProjectionArgs>, val warmThroughput: Output<GlobalTableWarmThroughputArgs>? = null, val writeOnDemandThroughputSettings: Output<GlobalTableWriteOnDemandThroughputSettingsArgs>? = null, val writeProvisionedThroughputSettings: Output<GlobalTableWriteProvisionedThroughputSettingsArgs>? = null) : ConvertibleToJava<GlobalTableGlobalSecondaryIndexArgs>

Constructors

Link copied to clipboard
constructor(indexName: Output<String>, keySchema: Output<List<GlobalTableKeySchemaArgs>>, projection: Output<GlobalTableProjectionArgs>, warmThroughput: Output<GlobalTableWarmThroughputArgs>? = null, writeOnDemandThroughputSettings: Output<GlobalTableWriteOnDemandThroughputSettingsArgs>? = null, writeProvisionedThroughputSettings: Output<GlobalTableWriteProvisionedThroughputSettingsArgs>? = null)

Properties

Link copied to clipboard
val indexName: Output<String>

The name of the global secondary index. The name must be unique among all other indexes on this table.

Link copied to clipboard

The complete key schema for a global secondary index, which consists of one or more pairs of attribute names and key types:

Link copied to clipboard

Represents attributes that are copied (projected) from the table into the global secondary index. These are in addition to the primary key attributes and index key attributes, which are automatically projected.

Link copied to clipboard

Represents the warm throughput value (in read units per second and write units per second) for the specified secondary index. If you use this parameter, you must specify ReadUnitsPerSecond , WriteUnitsPerSecond , or both.

Link copied to clipboard

Sets the write request settings for a global table or a global secondary index. You can only specify this setting if your resource uses the PAY_PER_REQUEST BillingMode .

Link copied to clipboard

Defines write capacity settings for the global secondary index. You must specify a value for this property if the table's BillingMode is PROVISIONED . All replicas will have the same write capacity settings for this global secondary index.

Functions

Link copied to clipboard
open override fun toJava(): GlobalTableGlobalSecondaryIndexArgs