mgn / Paginator / ListSourceServerActions
ListSourceServerActions#
- class mgn.Paginator.ListSourceServerActions#
paginator = client.get_paginator('list_source_server_actions')
- paginate(**kwargs)#
Creates an iterator that will paginate through responses from
mgn.Client.list_source_server_actions()
.See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( accountID='string', filters={ 'actionIDs': [ 'string', ] }, sourceServerID='string', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
accountID (string) – Account ID to return when listing source server post migration custom actions.
filters (dict) –
Filters to apply when listing source server post migration custom actions.
actionIDs (list) –
Action IDs to filter source server post migration custom actions by.
(string) –
sourceServerID (string) –
[REQUIRED]
Source server ID.
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
NextToken
will 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
NextToken
from a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ 'items': [ { 'actionID': 'string', 'actionName': 'string', 'active': True|False, 'category': 'DISASTER_RECOVERY'|'OPERATING_SYSTEM'|'LICENSE_AND_SUBSCRIPTION'|'VALIDATION'|'OBSERVABILITY'|'SECURITY'|'NETWORKING'|'CONFIGURATION'|'BACKUP'|'OTHER', 'description': 'string', 'documentIdentifier': 'string', 'documentVersion': 'string', 'externalParameters': { 'string': { 'dynamicPath': 'string' } }, 'mustSucceedForCutover': True|False, 'order': 123, 'parameters': { 'string': [ { 'parameterName': 'string', 'parameterType': 'STRING' }, ] }, 'timeoutSeconds': 123 }, ], 'NextToken': 'string' }
Response Structure
(dict) –
items (list) –
List of source server post migration custom actions.
(dict) –
actionID (string) –
Source server post migration custom action ID.
actionName (string) –
Source server post migration custom action name.
active (boolean) –
Source server post migration custom action active status.
category (string) –
Source server post migration custom action category.
description (string) –
Source server post migration custom action description.
documentIdentifier (string) –
Source server post migration custom action document identifier.
documentVersion (string) –
Source server post migration custom action document version.
externalParameters (dict) –
Source server post migration custom action external parameters.
(string) –
(dict) –
AWS Systems Manager Document external parameter.
Note
This is a Tagged Union structure. Only one of the following top level keys will be set:
dynamicPath
. If a client receives an unknown member it will setSDK_UNKNOWN_MEMBER
as the top level key, which maps to the name or tag of the unknown member. The structure ofSDK_UNKNOWN_MEMBER
is as follows:'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}
dynamicPath (string) –
AWS Systems Manager Document external parameters dynamic path.
mustSucceedForCutover (boolean) –
Source server post migration custom action must succeed for cutover.
order (integer) –
Source server post migration custom action order.
parameters (dict) –
Source server post migration custom action parameters.
(string) –
(list) –
(dict) –
AWS Systems Manager Parameter Store parameter.
parameterName (string) –
AWS Systems Manager Parameter Store parameter name.
parameterType (string) –
AWS Systems Manager Parameter Store parameter type.
timeoutSeconds (integer) –
Source server post migration custom action timeout in seconds.
NextToken (string) –
A token to resume pagination.