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

Class: Aws::SecurityHub::Types::AwsDynamoDbTableLocalSecondaryIndex

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

Overview

Note:

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

{
  index_arn: "NonEmptyString",
  index_name: "NonEmptyString",
  key_schema: [
    {
      attribute_name: "NonEmptyString",
      key_type: "NonEmptyString",
    },
  ],
  projection: {
    non_key_attributes: ["NonEmptyString"],
    projection_type: "NonEmptyString",
  },
}

Information about a local secondary index for a DynamoDB table.

Instance Attribute Summary collapse

Instance Attribute Details

#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.

#key_schemaArray<Types::AwsDynamoDbTableKeySchema>

The complete key schema for the index.

Returns:

#projectionTypes::AwsDynamoDbTableProjection

Attributes that are copied from the table into the index. These are in addition to the primary key attributes and index key attributes, which are automatically projected.

Returns: