ProjectEnvironmentDockerServer constructor

const ProjectEnvironmentDockerServer({
  1. required Input<String> computeType,
  2. Input<List<String>?>? securityGroupIds,
})

Creates a new ProjectEnvironmentDockerServer. computeType Compute type for the Docker server. Valid values: BUILD_GENERAL1_SMALL, BUILD_GENERAL1_MEDIUM, BUILD_GENERAL1_LARGE, BUILD_GENERAL1_XLARGE, and BUILD_GENERAL1_2XLARGE. securityGroupIds List of security group IDs to assign to the Docker server.

Implementation

const ProjectEnvironmentDockerServer({
  required this.computeType,
  this.securityGroupIds,
});