Class: Aws::Amplify::Types::ListWebhooksResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Amplify::Types::ListWebhooksResult
- 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
-
#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.
2263 2264 2265 2266 2267 2268 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 2263 class ListWebhooksResult < Struct.new( :webhooks, :next_token) SENSITIVE = [] include Aws::Structure end |
#webhooks ⇒ Array<Types::Webhook>
A list of webhooks.
2263 2264 2265 2266 2267 2268 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 2263 class ListWebhooksResult < Struct.new( :webhooks, :next_token) SENSITIVE = [] include Aws::Structure end |