DevOpsAgentService / Paginator / ListTriggers
ListTriggers¶
- class DevOpsAgentService.Paginator.ListTriggers¶
paginator = client.get_paginator('list_triggers')
- paginate(**kwargs)¶
Creates an iterator that will paginate through responses from
DevOpsAgentService.Client.list_triggers().See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( agentSpaceId='string', status='string', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
agentSpaceId (string) –
[REQUIRED]
The unique identifier for the agent space whose Triggers should be listed
status (string) – Filter results to Triggers in this status
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
The total number of items to return. If the total number of items available is more than the value specified in max-items then a
NextTokenwill be provided in the output that you can use to resume pagination.PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the
NextTokenfrom a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ 'items': [ { 'triggerId': 'string', 'agentSpaceId': 'string', 'type': 'string', 'condition': { 'schedule': { 'expression': 'string' } }, 'action': {...}|[...]|123|123.4|'string'|True|None, 'status': 'string', 'createdAt': datetime(2015, 1, 1), 'updatedAt': datetime(2015, 1, 1) }, ], 'NextToken': 'string' }
Response Structure
(dict) –
Response structure for listing Triggers
items (list) –
The list of Triggers
(dict) –
A Trigger fires on a schedule and invokes an agent
triggerId (string) –
The unique identifier for this Trigger
agentSpaceId (string) –
The agent space this Trigger belongs to
type (string) –
How this Trigger fires
condition (dict) –
The condition that fires this Trigger
Note
This is a Tagged Union structure. Only one of the following top level keys will be set:
schedule. If a client receives an unknown member it will setSDK_UNKNOWN_MEMBERas the top level key, which maps to the name or tag of the unknown member. The structure ofSDK_UNKNOWN_MEMBERis as follows:'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}
schedule (dict) –
Time-based firing condition
expression (string) –
The schedule expression
action (document) –
The action this Trigger performs when it fires
status (string) –
The status of this Trigger
createdAt (datetime) –
Timestamp when this Trigger was created
updatedAt (datetime) –
Timestamp when this Trigger was last updated
NextToken (string) –
A token to resume pagination.