ComputeResource class
An object representing an AWS Batch compute resource. For more information, see Compute Environments in the AWS Batch User Guide.
Constructors
-
ComputeResource({required int maxvCpus, required List<
String> subnets, required CRType type, CRAllocationStrategy? allocationStrategy, int? bidPercentage, int? desiredvCpus, List<Ec2Configuration> ? ec2Configuration, String? ec2KeyPair, String? imageId, String? instanceRole, List<String> ? instanceTypes, LaunchTemplateSpecification? launchTemplate, int? minvCpus, String? placementGroup, List<String> ? securityGroupIds, String? spotIamFleetRole, Map<String, String> ? tags}) -
ComputeResource.fromJson(Map<
String, dynamic> json) -
factory
Properties
- allocationStrategy → CRAllocationStrategy?
-
The allocation strategy to use for the compute resource if not enough
instances of the best fitting instance type can be allocated. This might be
because of availability of the instance type in the Region or Amazon
EC2 service limits. For more information, see Allocation
Strategies in the AWS Batch User Guide.
final
- bidPercentage → int?
-
The maximum percentage that a Spot Instance price can be when compared with
the On-Demand price for that instance type before instances are launched.
For example, if your maximum percentage is 20%, then the Spot price must be
less than 20% of the current On-Demand price for that Amazon EC2 instance.
You always pay the lowest (market) price and never more than your maximum
percentage. If you leave this field empty, the default value is 100% of the
On-Demand price.
final
- desiredvCpus → int?
-
The desired number of Amazon EC2 vCPUS in the compute environment. AWS Batch
modifies this value between the minimum and maximum values, based on job
queue demand.
final
-
ec2Configuration
→ List<
Ec2Configuration> ? -
Provides information used to select Amazon Machine Images (AMIs) for EC2
instances in the compute environment. If
Ec2Configuration
isn't specified, the default isECS_AL1
.final - ec2KeyPair → String?
-
The Amazon EC2 key pair that's used for instances launched in the compute
environment. You can use this key pair to log in to your instances with SSH.
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- imageId → String?
-
The Amazon Machine Image (AMI) ID used for instances launched in the compute
environment. This parameter is overridden by the
imageIdOverride
member of theEc2Configuration
structure.final - instanceRole → String?
-
The Amazon ECS instance profile applied to Amazon EC2 instances in a compute
environment. You can specify the short name or full Amazon Resource Name
(ARN) of an instance profile. For example,
ecsInstanceRole
orarn:aws:iam::<aws_account_id>:instance-profile/ecsInstanceRole
. For more information, see Amazon ECS Instance Role in the AWS Batch User Guide.final -
instanceTypes
→ List<
String> ? -
The instances types that can be launched. You can specify instance families
to launch any instance type within those families (for example,
c5
orp3
), or you can specify specific sizes within a family (such asc5.8xlarge
). You can also chooseoptimal
to select instance types (from the C4, M4, and R4 instance families) on the fly that match the demand of your job queues.final - launchTemplate → LaunchTemplateSpecification?
-
The launch template to use for your compute resources. Any other compute
resource parameters that you specify in a CreateComputeEnvironment
API operation override the same parameters in the launch template. You must
specify either the launch template ID or launch template name in the
request, but not both. For more information, see Launch
Template Support in the AWS Batch User Guide.
final
- maxvCpus → int
-
The maximum number of Amazon EC2 vCPUs that a compute environment can reach.
final
- minvCpus → int?
-
The minimum number of Amazon EC2 vCPUs that an environment should maintain
(even if the compute environment is
DISABLED
).final - placementGroup → String?
-
The Amazon EC2 placement group to associate with your compute resources. If
you intend to submit multi-node parallel jobs to your compute environment,
you should consider creating a cluster placement group and associate it with
your compute resources. This keeps your multi-node parallel job on a logical
grouping of instances within a single Availability Zone with high network
flow potential. For more information, see Placement
Groups in the Amazon EC2 User Guide for Linux Instances.
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
-
securityGroupIds
→ List<
String> ? -
The Amazon EC2 security groups associated with instances launched in the
compute environment. One or more security groups must be specified, either
in
securityGroupIds
or using a launch template referenced inlaunchTemplate
. This parameter is required for jobs running on Fargate resources and must contain at least one security group. (Fargate does not support launch templates.) If security groups are specified using bothsecurityGroupIds
andlaunchTemplate
, the values insecurityGroupIds
will be used.final - spotIamFleetRole → String?
-
The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied
to a
SPOT
compute environment. This role is required if the allocation strategy set toBEST_FIT
or if the allocation strategy isn't specified. For more information, see Amazon EC2 Spot Fleet Role in the AWS Batch User Guide.final -
subnets
→ List<
String> -
The VPC subnets into which the compute resources are launched. These subnets
must be within the same VPC. This parameter is required for jobs running on
Fargate resources, where it can contain up to 16 subnets. For more
information, see VPCs
and Subnets in the Amazon VPC User Guide.
final
-
Key-value pair tags to be applied to EC2 resources that are launched in the
compute environment. For AWS Batch, these take the form of "String1":
"String2", where String1 is the tag key and String2 is the tag value−for
example, { "Name": "AWS Batch Instance - C4OnDemand" }. This is helpful for
recognizing your AWS Batch instances in the Amazon EC2 console. These tags
can't be updated or removed after the compute environment has been created;
any changes require creating a new compute environment and removing the old
compute environment. These tags are not seen when using the AWS Batch
ListTagsForResource
API operation.final - type → CRType
-
The type of compute environment:
EC2
,SPOT
,FARGATE
, orFARGATE_SPOT
. For more information, see Compute Environments in the AWS Batch User Guide.final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited