Class: Aws::DynamoDB::Types::DescribeTableInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::DescribeTableInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dynamodb/types.rb
Overview
Represents the input of a ‘DescribeTable` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#table_name ⇒ String
The name of the table to describe.
Instance Attribute Details
#table_name ⇒ String
The name of the table to describe. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.
2966 2967 2968 2969 2970 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 2966 class DescribeTableInput < Struct.new( :table_name) SENSITIVE = [] include Aws::Structure end |