Class: Aws::CodePipeline::Types::ListWebhooksInput

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

Overview

Note:

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

{
  next_token: "NextToken",
  max_results: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#max_resultsInteger

The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned nextToken value.

Returns:

  • (Integer)


1903
1904
1905
1906
1907
# File 'lib/aws-sdk-codepipeline/types.rb', line 1903

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

#next_tokenString

The token that was returned from the previous ListWebhooks call, which can be used to return the next set of webhooks in the list.

Returns:

  • (String)


1903
1904
1905
1906
1907
# File 'lib/aws-sdk-codepipeline/types.rb', line 1903

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