INPUT_OBJECT

AwsVmConfig

Description

Configuration for creating AWS instances.

link GraphQL Schema definition

  • input AwsVmConfig {
  • # Rubrik CDM version to determine image.
  • cdmVersion: String
  • # Node disk size in GB.
  • nodeSizeGb: Int
  • # AWS subnet in which instance is created.
  • subnet: String
  • # Tags to attach to created resources.
  • tags: String
  • # ID of the virtual machine image to deploy.
  • imageId: String
  • # Instance profile to attach to image.
  • instanceProfileName: String
  • # AWS marketplace product ID.
  • cdmProduct: String
  • # Create dense or standard nodes.
  • vmType: VmType
  • # List of security groups to assign to instances.
  • securityGroups: [String!]
  • # AWS instance type.
  • instanceType: AwsInstanceType
  • # Network configuration for CDM nodes.
  • networkConfig: [AwsVmNetworkConfig!]
  • }