Class: Aws::DynamoDB::Types::UpdateContributorInsightsInput

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 UpdateContributorInsightsInput data as a hash:

{
  table_name: "TableName", # required
  index_name: "IndexName",
  contributor_insights_action: "ENABLE", # required, accepts ENABLE, DISABLE
}

Instance Attribute Summary collapse

Instance Attribute Details

#contributor_insights_actionString

Represents the contributor insights action.

Returns:

  • (String)


8848
8849
8850
8851
8852
8853
# File 'lib/aws-sdk-dynamodb/types.rb', line 8848

class UpdateContributorInsightsInput < Struct.new(
  :table_name,
  :index_name,
  :contributor_insights_action)
  include Aws::Structure
end

#index_nameString

The global secondary index name, if applicable.

Returns:

  • (String)


8848
8849
8850
8851
8852
8853
# File 'lib/aws-sdk-dynamodb/types.rb', line 8848

class UpdateContributorInsightsInput < Struct.new(
  :table_name,
  :index_name,
  :contributor_insights_action)
  include Aws::Structure
end

#table_nameString

The name of the table.

Returns:

  • (String)


8848
8849
8850
8851
8852
8853
# File 'lib/aws-sdk-dynamodb/types.rb', line 8848

class UpdateContributorInsightsInput < Struct.new(
  :table_name,
  :index_name,
  :contributor_insights_action)
  include Aws::Structure
end