Skip to content

validateOutpostAccountNetwork

ValidateOutpostNetwork validates the network configuration of an outpost account.

Arguments

Argument Type Description
input (required) ValidateOutpostAccountNetworkInput! Input for validating outpost account network configuration.

Returns

ValidateOutpostAccountNetworkReply!

Sample

query ValidateOutpostAccountNetwork($input: ValidateOutpostAccountNetworkInput!) {
  validateOutpostAccountNetwork(input: $input) {
    error
    valid
  }
}
{
  "input": {
    "outpostAccountId": "example-string"
  }
}
{
  "data": {
    "validateOutpostAccountNetwork": {
      "error": "example-string",
      "valid": true
    }
  }
}