Class: Aws::DynamoDB::Waiters::ContributorInsightsEnabled

Inherits:
Object
  • Object
show all
Defined in:
gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/waiters.rb

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ ContributorInsightsEnabled

Returns a new instance of ContributorInsightsEnabled.

Parameters:

  • options (Hash)

Options Hash (options):

  • :client (required, Client)
  • :max_attempts (Integer) — default: 30
  • :delay (Integer) — default: 20
  • :before_attempt (Proc)
  • :before_wait (Proc)


89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/waiters.rb', line 89

def initialize(options)
  @client = options.fetch(:client)
  @waiter = Aws::Waiters::Waiter.new({
    max_attempts: 30,
    delay: 20,
    poller: Aws::Waiters::Poller.new(
      operation_name: :describe_contributor_insights,
      acceptors: [
        {
          "state" => "success",
          "matcher" => "path",
          "argument" => "contributor_insights_status",
          "expected" => "ENABLED"
        },
        {
          "state" => "failure",
          "matcher" => "path",
          "argument" => "contributor_insights_status",
          "expected" => "FAILED"
        }
      ]
    )
  }.merge(options))
end

Instance Method Details

#wait(params = {}) ⇒ Types::DescribeContributorInsightsOutput

Returns a response object which responds to the following methods:

Parameters:

  • params (Hash) (defaults to: {})

    a customizable set of options

Options Hash (params):

  • :table_name (required, String)

    The name of the table to describe. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.

  • :index_name (String)

    The name of the global secondary index to describe, if applicable.

Returns:



116
117
118
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/waiters.rb', line 116

def wait(params = {})
  @waiter.wait(client: @client, params: params)
end