pub struct ComputeResourceUpdate {
pub desiredv_cpus: Option<i64>,
pub maxv_cpus: Option<i64>,
pub minv_cpus: Option<i64>,
pub security_group_ids: Option<Vec<String>>,
pub subnets: Option<Vec<String>>,
}
Expand description
An object representing the attributes of a compute environment that can be updated. For more information, see Compute Environments in the AWS Batch User Guide.
Fields§
§desiredv_cpus: Option<i64>
The desired number of Amazon EC2 vCPUS in the compute environment.
This parameter isn't applicable to jobs running on Fargate resources, and shouldn't be specified.
maxv_cpus: Option<i64>
The maximum number of Amazon EC2 vCPUs that an environment can reach.
With both BESTFITPROGRESSIVE
and SPOTCAPACITYOPTIMIZED
allocation strategies, AWS Batch might need to exceed maxvCpus
to meet your capacity requirements. In this event, AWS Batch never exceeds maxvCpus
by more than a single instance. That is, no more than a single instance from among those specified in your compute environment.
minv_cpus: Option<i64>
The minimum number of Amazon EC2 vCPUs that an environment should maintain.
This parameter isn't applicable to jobs running on Fargate resources, and shouldn't be specified.
security_group_ids: Option<Vec<String>>
The Amazon EC2 security groups associated with instances launched in the compute environment. This parameter is required for Fargate compute resources, where it can contain up to 5 security groups. This can't be specified for EC2 compute resources. Providing an empty list is handled as if this parameter wasn't specified and no change is made.
subnets: Option<Vec<String>>
The VPC subnets that the compute resources are launched into. Fargate compute resources can contain up to 16 subnets. Providing an empty list will be handled as if this parameter wasn't specified and no change is made. This can't be specified for EC2 compute resources. For more information, see VPCs and Subnets in the Amazon VPC User Guide.
Trait Implementations§
Source§impl Clone for ComputeResourceUpdate
impl Clone for ComputeResourceUpdate
Source§fn clone(&self) -> ComputeResourceUpdate
fn clone(&self) -> ComputeResourceUpdate
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more