describeSchedulingPolicies method

Future<DescribeSchedulingPoliciesResponse> describeSchedulingPolicies({
  1. required List<String> arns,
})

Describes one or more of your scheduling policies.

May throw ClientException. May throw ServerException.

Parameter arns : A list of up to 100 scheduling policy Amazon Resource Name (ARN) entries.

Implementation

Future<DescribeSchedulingPoliciesResponse> describeSchedulingPolicies({
  required List<String> arns,
}) async {
  final $payload = <String, dynamic>{
    'arns': arns,
  };
  final response = await _protocol.send(
    payload: $payload,
    method: 'POST',
    requestUri: '/v1/describeschedulingpolicies',
    exceptionFnMap: _exceptionFns,
  );
  return DescribeSchedulingPoliciesResponse.fromJson(response);
}