Class: Aws::Amplify::Types::ListWebhooksResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Amplify::Types::ListWebhooksResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-amplify/types.rb
Overview
The result structure for the list webhooks request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
A pagination token.
-
#webhooks ⇒ Array<Types::Webhook>
A list of webhooks.
Instance Attribute Details
#next_token ⇒ String
A pagination token. If non-null, the pagination token is returned in a result. Pass its value in another request to retrieve more entries.
2282 2283 2284 2285 2286 2287 |
# File 'lib/aws-sdk-amplify/types.rb', line 2282 class ListWebhooksResult < Struct.new( :webhooks, :next_token) SENSITIVE = [] include Aws::Structure end |
#webhooks ⇒ Array<Types::Webhook>
A list of webhooks.
2282 2283 2284 2285 2286 2287 |
# File 'lib/aws-sdk-amplify/types.rb', line 2282 class ListWebhooksResult < Struct.new( :webhooks, :next_token) SENSITIVE = [] include Aws::Structure end |