Class: Aws::DynamoDB::Types::ListContributorInsightsInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-dynamodb/types.rb

Overview

Note:

When making an API call, you may pass ListContributorInsightsInput data as a hash:

{
  table_name: "TableName",
  next_token: "NextTokenString",
  max_results: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

Maximum number of results to return per page.

Returns:

  • (Integer)


4449
4450
4451
4452
4453
4454
# File 'lib/aws-sdk-dynamodb/types.rb', line 4449

class ListContributorInsightsInput < Struct.new(
  :table_name,
  :next_token,
  :max_results)
  include Aws::Structure
end

#next_tokenString

A token to for the desired page, if there is one.

Returns:

  • (String)


4449
4450
4451
4452
4453
4454
# File 'lib/aws-sdk-dynamodb/types.rb', line 4449

class ListContributorInsightsInput < Struct.new(
  :table_name,
  :next_token,
  :max_results)
  include Aws::Structure
end

#table_nameString

The name of the table.

Returns:

  • (String)


4449
4450
4451
4452
4453
4454
# File 'lib/aws-sdk-dynamodb/types.rb', line 4449

class ListContributorInsightsInput < Struct.new(
  :table_name,
  :next_token,
  :max_results)
  include Aws::Structure
end