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,
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

Maximum number of results to return per page.

Returns:

  • (Integer)


5302
5303
5304
5305
5306
5307
5308
# File 'lib/aws-sdk-dynamodb/types.rb', line 5302

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

#next_tokenString

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

Returns:

  • (String)


5302
5303
5304
5305
5306
5307
5308
# File 'lib/aws-sdk-dynamodb/types.rb', line 5302

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

#table_nameString

The name of the table.

Returns:

  • (String)


5302
5303
5304
5305
5306
5307
5308
# File 'lib/aws-sdk-dynamodb/types.rb', line 5302

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