You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::SecurityHub::Types::AwsDynamoDbTableGlobalSecondaryIndex

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing AwsDynamoDbTableGlobalSecondaryIndex as input to an Aws::Client method, you can use a vanilla Hash:

{
  backfilling: false,
  index_arn: "NonEmptyString",
  index_name: "NonEmptyString",
  index_size_bytes: 1,
  index_status: "NonEmptyString",
  item_count: 1,
  key_schema: [
    {
      attribute_name: "NonEmptyString",
      key_type: "NonEmptyString",
    },
  ],
  projection: {
    non_key_attributes: ["NonEmptyString"],
    projection_type: "NonEmptyString",
  },
  provisioned_throughput: {
    last_decrease_date_time: "NonEmptyString",
    last_increase_date_time: "NonEmptyString",
    number_of_decreases_today: 1,
    read_capacity_units: 1,
    write_capacity_units: 1,
  },
}

Information abut a global secondary index for the table.

Instance Attribute Summary collapse

Instance Attribute Details

#backfillingBoolean

Whether the index is currently backfilling.

Returns:

  • (Boolean)

    Whether the index is currently backfilling.

#index_arnString

The ARN of the index.

Returns:

  • (String)

    The ARN of the index.

#index_nameString

The name of the index.

Returns:

  • (String)

    The name of the index.

#index_size_bytesInteger

The total size in bytes of the index.

Returns:

  • (Integer)

    The total size in bytes of the index.

#index_statusString

The current status of the index.

Returns:

  • (String)

    The current status of the index.

#item_countInteger

The number of items in the index.

Returns:

  • (Integer)

    The number of items in the index.

#key_schemaArray<Types::AwsDynamoDbTableKeySchema>

The key schema for the index.

Returns:

#projectionTypes::AwsDynamoDbTableProjection

Attributes that are copied from the table into an index.

Returns:

#provisioned_throughputTypes::AwsDynamoDbTableProvisionedThroughput

Information about the provisioned throughput settings for the indexes.

Returns: