Method: Aws::Batch::Types::ComputeResource#minv_cpus
- Defined in:
- lib/aws-sdk-batch/types.rb
#minv_cpus ⇒ Integer
The minimum number of vCPUs that a compute environment should maintain (even if the compute environment is DISABLED).
<note markdown=“1”> This parameter isn’t applicable to jobs that are running on Fargate resources. Don’t specify it.
</note>
920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 |
# File 'lib/aws-sdk-batch/types.rb', line 920 class ComputeResource < Struct.new( :type, :allocation_strategy, :minv_cpus, :maxv_cpus, :desiredv_cpus, :instance_types, :image_id, :subnets, :security_group_ids, :ec2_key_pair, :instance_role, :tags, :placement_group, :bid_percentage, :spot_iam_fleet_role, :launch_template, :ec2_configuration) SENSITIVE = [] include Aws::Structure end |