INTERFACE

CloudAccount

Description

Cloud Account (AWS, Azure etc.) information.

link GraphQL Schema definition

  • interface CloudAccount {
  • # The ID of this Cloud Account.
  • cloudAccountId: String!
  • # The name of this Cloud Account.
  • name: String!
  • # The description of this Cloud Account.
  • description: String
  • # The type of this Cloud Provider.
  • cloudProvider: CloudAccountType!
  • # The connection status of this Cloud Account.
  • connectionStatus: ConnectionStatusType!
  • }