getAutomationExecution method

Future<GetAutomationExecutionResult> getAutomationExecution({
  1. required String automationExecutionId,
})

Get detailed information about a particular Automation execution.

May throw AutomationExecutionNotFoundException. May throw InternalServerError.

Parameter automationExecutionId : The unique identifier for an existing automation execution to examine. The execution ID is returned by StartAutomationExecution when the execution of an Automation document is initiated.

Implementation

Future<GetAutomationExecutionResult> getAutomationExecution({
  required String automationExecutionId,
}) async {
  ArgumentError.checkNotNull(automationExecutionId, 'automationExecutionId');
  _s.validateStringLength(
    'automationExecutionId',
    automationExecutionId,
    36,
    36,
    isRequired: true,
  );
  final headers = <String, String>{
    'Content-Type': 'application/x-amz-json-1.1',
    'X-Amz-Target': 'AmazonSSM.GetAutomationExecution'
  };
  final jsonResponse = await _protocol.send(
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    // TODO queryParams
    headers: headers,
    payload: {
      'AutomationExecutionId': automationExecutionId,
    },
  );

  return GetAutomationExecutionResult.fromJson(jsonResponse.body);
}