Skip to content

Describe Node Association Status

opsworkscm_describe_node_association_status R Documentation

Returns the current status of an existing association or disassociation request

Description

Returns the current status of an existing association or disassociation request.

A ResourceNotFoundException is thrown when no recent association or disassociation request with the specified token is found, or when the server does not exist. A ValidationException is raised when parameters of the request are not valid.

Usage

opsworkscm_describe_node_association_status(NodeAssociationStatusToken,
  ServerName)

Arguments

NodeAssociationStatusToken

[required] The token returned in either the AssociateNodeResponse or the DisassociateNodeResponse.

ServerName

[required] The name of the server from which to disassociate the node.

Value

A list with the following syntax:

list(
  NodeAssociationStatus = "SUCCESS"|"FAILED"|"IN_PROGRESS",
  EngineAttributes = list(
    list(
      Name = "string",
      Value = "string"
    )
  )
)

Request syntax

svc$describe_node_association_status(
  NodeAssociationStatusToken = "string",
  ServerName = "string"
)