Class: Aws::Amplify::Types::ListWebhooksResult

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb

Overview

The result structure for the list webhooks request.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

A pagination token. If non-null, the pagination token is returned in a result. Pass its value in another request to retrieve more entries.

Returns:

  • (String)


1992
1993
1994
1995
1996
1997
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 1992

class ListWebhooksResult < Struct.new(
  :webhooks,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#webhooksArray<Types::Webhook>

A list of webhooks.

Returns:



1992
1993
1994
1995
1996
1997
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 1992

class ListWebhooksResult < Struct.new(
  :webhooks,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end