pub struct ReplicaGlobalSecondaryIndexSettingsDescription {
pub index_name: String,
pub index_status: Option<String>,
pub provisioned_read_capacity_auto_scaling_settings: Option<AutoScalingSettingsDescription>,
pub provisioned_read_capacity_units: Option<i64>,
pub provisioned_write_capacity_auto_scaling_settings: Option<AutoScalingSettingsDescription>,
pub provisioned_write_capacity_units: Option<i64>,
}
Expand description
Represents the properties of a global secondary index.
Fields§
§index_name: String
The name of the global secondary index. The name must be unique among all other indexes on this table.
index_status: Option<String>
The current status of the global secondary index:
-
CREATING
- The global secondary index is being created. -
UPDATING
- The global secondary index is being updated. -
DELETING
- The global secondary index is being deleted. -
ACTIVE
- The global secondary index is ready for use.
provisioned_read_capacity_auto_scaling_settings: Option<AutoScalingSettingsDescription>
Auto scaling settings for a global secondary index replica's read capacity units.
provisioned_read_capacity_units: Option<i64>
The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ThrottlingException
.
provisioned_write_capacity_auto_scaling_settings: Option<AutoScalingSettingsDescription>
Auto scaling settings for a global secondary index replica's write capacity units.
provisioned_write_capacity_units: Option<i64>
The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException
.
Trait Implementations§
Source§impl Clone for ReplicaGlobalSecondaryIndexSettingsDescription
impl Clone for ReplicaGlobalSecondaryIndexSettingsDescription
Source§fn clone(&self) -> ReplicaGlobalSecondaryIndexSettingsDescription
fn clone(&self) -> ReplicaGlobalSecondaryIndexSettingsDescription
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for ReplicaGlobalSecondaryIndexSettingsDescription
impl Default for ReplicaGlobalSecondaryIndexSettingsDescription
Source§fn default() -> ReplicaGlobalSecondaryIndexSettingsDescription
fn default() -> ReplicaGlobalSecondaryIndexSettingsDescription
Source§impl<'de> Deserialize<'de> for ReplicaGlobalSecondaryIndexSettingsDescription
impl<'de> Deserialize<'de> for ReplicaGlobalSecondaryIndexSettingsDescription
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl PartialEq for ReplicaGlobalSecondaryIndexSettingsDescription
impl PartialEq for ReplicaGlobalSecondaryIndexSettingsDescription
Source§fn eq(&self, other: &ReplicaGlobalSecondaryIndexSettingsDescription) -> bool
fn eq(&self, other: &ReplicaGlobalSecondaryIndexSettingsDescription) -> bool
self
and other
values to be equal, and is used by ==
.