Global Table Global Secondary Index Args
data class GlobalTableGlobalSecondaryIndexArgs(val indexName: Output<String>, val keySchema: Output<List<GlobalTableKeySchemaArgs>>, val projection: Output<GlobalTableProjectionArgs>, 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>, writeOnDemandThroughputSettings: Output<GlobalTableWriteOnDemandThroughputSettingsArgs>? = null, writeProvisionedThroughputSettings: Output<GlobalTableWriteProvisionedThroughputSettingsArgs>? = null)
Properties
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
Sets the write request settings for a global table or a global secondary index. You must specify this setting if you set the BillingMode
to PAY_PER_REQUEST
.
Link copied to clipboard
val writeProvisionedThroughputSettings: Output<GlobalTableWriteProvisionedThroughputSettingsArgs>? = null
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.