Class: Aws::DynamoDB::Types::ListExportsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::ListExportsInput
- Defined in:
- gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
Maximum number of results to return per page.
-
#next_token ⇒ String
An optional string that, if supplied, must be copied from the output of a previous call to
ListExports
. -
#table_arn ⇒ String
The Amazon Resource Name (ARN) associated with the exported table.
Instance Attribute Details
#max_results ⇒ Integer
Maximum number of results to return per page.
5408 5409 5410 5411 5412 5413 5414 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 5408 class ListExportsInput < Struct.new( :table_arn, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
An optional string that, if supplied, must be copied from the output
of a previous call to ListExports
. When provided in this manner,
the API fetches the next page of results.
5408 5409 5410 5411 5412 5413 5414 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 5408 class ListExportsInput < Struct.new( :table_arn, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#table_arn ⇒ String
The Amazon Resource Name (ARN) associated with the exported table.
5408 5409 5410 5411 5412 5413 5414 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 5408 class ListExportsInput < Struct.new( :table_arn, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |