Skip to content

awsExocomputeGetClusterConnectionInfo

Obtains the connection command and yaml which can be used to connect a customer-managed cluster to RSC.

Arguments

Argument Type Description
input (required) AwsExocomputeGetClusterConnectionInput! Input to obtain the connection command and yaml which can be used to connect a customer-managed cluster to RSC.

Returns

AwsExocomputeGetClusterConnectionInfoReply!

Sample

query AwsExocomputeGetClusterConnectionInfo($input: AwsExocomputeGetClusterConnectionInput!) {
  awsExocomputeGetClusterConnectionInfo(input: $input) {
    clusterSetupYaml
    clusterUuid
    connectionCommand
  }
}
{
  "input": {
    "exocomputeConfigId": "00000000-0000-0000-0000-000000000000"
  }
}
{
  "data": {
    "awsExocomputeGetClusterConnectionInfo": {
      "clusterSetupYaml": "example-string",
      "clusterUuid": "00000000-0000-0000-0000-000000000000",
      "connectionCommand": "example-string"
    }
  }
}