describeMaintenanceWindows method
Future<DescribeMaintenanceWindowsResult>
describeMaintenanceWindows({
- List<
MaintenanceWindowFilter> ? filters, - int? maxResults,
- String? nextToken,
Retrieves the maintenance windows in an AWS account.
May throw InternalServerError.
Parameter filters
:
Optional filters used to narrow down the scope of the returned maintenance
windows. Supported filter keys are Name and Enabled.
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
:
The token for the next set of items to return. (You received this token
from a previous call.)
Implementation
Future<DescribeMaintenanceWindowsResult> describeMaintenanceWindows({
List<MaintenanceWindowFilter>? filters,
int? maxResults,
String? nextToken,
}) async {
_s.validateNumRange(
'maxResults',
maxResults,
10,
100,
);
final headers = <String, String>{
'Content-Type': 'application/x-amz-json-1.1',
'X-Amz-Target': 'AmazonSSM.DescribeMaintenanceWindows'
};
final jsonResponse = await _protocol.send(
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
// TODO queryParams
headers: headers,
payload: {
if (filters != null) 'Filters': filters,
if (maxResults != null) 'MaxResults': maxResults,
if (nextToken != null) 'NextToken': nextToken,
},
);
return DescribeMaintenanceWindowsResult.fromJson(jsonResponse.body);
}