Skip to content

Get Operation

ssmsap_get_operation R Documentation

Gets the details of an operation by specifying the operation ID

Description

Gets the details of an operation by specifying the operation ID.

Usage

ssmsap_get_operation(OperationId)

Arguments

OperationId

[required] The ID of the operation.

Value

A list with the following syntax:

list(
  Operation = list(
    Id = "string",
    Type = "string",
    Status = "INPROGRESS"|"SUCCESS"|"ERROR",
    StatusMessage = "string",
    Properties = list(
      "string"
    ),
    ResourceType = "string",
    ResourceId = "string",
    ResourceArn = "string",
    StartTime = as.POSIXct(
      "2015-01-01"
    ),
    EndTime = as.POSIXct(
      "2015-01-01"
    ),
    LastUpdatedTime = as.POSIXct(
      "2015-01-01"
    )
  )
)

Request syntax

svc$get_operation(
  OperationId = "string"
)