listResourceDataSync method
Lists your resource data sync configurations. Includes information about the last time a sync attempted to start, the last sync status, and the last time a sync successfully completed.
The number of sync configurations might be too large to return using a
single call to ListResourceDataSync
. You can limit the number
of sync configurations returned by using the MaxResults
parameter. To determine whether there are more sync configurations to
list, check the value of NextToken
in the output. If there
are more sync configurations to list, you can request them by specifying
the NextToken
returned in the call to the parameter of a
subsequent call.
May throw ResourceDataSyncInvalidConfigurationException. May throw InternalServerError. May throw InvalidNextToken.
Parameter maxResults
:
The maximum number of items to return for this call. The call also returns
a token that you can specify in a subsequent call to get the next set of
results.
Parameter nextToken
:
A token to start the list. Use this token to get the next set of results.
Parameter syncType
:
View a list of resource data syncs according to the sync type. Specify
SyncToDestination
to view resource data syncs that
synchronize data to an Amazon S3 bucket. Specify
SyncFromSource
to view resource data syncs from AWS
Organizations or from multiple AWS Regions.
Implementation
Future<ListResourceDataSyncResult> listResourceDataSync({
int? maxResults,
String? nextToken,
String? syncType,
}) async {
_s.validateNumRange(
'maxResults',
maxResults,
1,
50,
);
_s.validateStringLength(
'syncType',
syncType,
1,
64,
);
final headers = <String, String>{
'Content-Type': 'application/x-amz-json-1.1',
'X-Amz-Target': 'AmazonSSM.ListResourceDataSync'
};
final jsonResponse = await _protocol.send(
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
// TODO queryParams
headers: headers,
payload: {
if (maxResults != null) 'MaxResults': maxResults,
if (nextToken != null) 'NextToken': nextToken,
if (syncType != null) 'SyncType': syncType,
},
);
return ListResourceDataSyncResult.fromJson(jsonResponse.body);
}