Get On Premises Instance
| codedeploy_get_on_premises_instance | R Documentation | 
Gets information about an on-premises instance¶
Description¶
Gets information about an on-premises instance.
Usage¶
codedeploy_get_on_premises_instance(instanceName)
Arguments¶
instanceName | 
[required] The name of the on-premises instance about which to get information.  | 
Value¶
A list with the following syntax:
list(
  instanceInfo = list(
    instanceName = "string",
    iamSessionArn = "string",
    iamUserArn = "string",
    instanceArn = "string",
    registerTime = as.POSIXct(
      "2015-01-01"
    ),
    deregisterTime = as.POSIXct(
      "2015-01-01"
    ),
    tags = list(
      list(
        Key = "string",
        Value = "string"
      )
    )
  )
)
Request syntax¶
svc$get_on_premises_instance(
  instanceName = "string"
)