@aws-sdk/client-batch 3.1114.0 → 3.1116.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +112 -17
- package/dist-es/models/enums.js +3 -0
- package/dist-es/schemas/schemas_0.js +98 -16
- package/dist-types/commands/CreateComputeEnvironmentCommand.d.ts +168 -2
- package/dist-types/commands/CreateJobQueueCommand.d.ts +53 -1
- package/dist-types/commands/DescribeComputeEnvironmentsCommand.d.ts +37 -1
- package/dist-types/commands/DescribeJobDefinitionsCommand.d.ts +3 -1
- package/dist-types/commands/DescribeJobQueuesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeJobsCommand.d.ts +3 -1
- package/dist-types/commands/RegisterJobDefinitionCommand.d.ts +170 -1
- package/dist-types/commands/UpdateComputeEnvironmentCommand.d.ts +35 -1
- package/dist-types/models/enums.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +409 -11
- package/dist-types/schemas/schemas_0.d.ts +10 -0
- package/dist-types/ts3.4/models/enums.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +60 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -0
- package/package.json +8 -8
|
@@ -569,6 +569,235 @@ export interface LaunchTemplateSpecification {
|
|
|
569
569
|
*/
|
|
570
570
|
userdataType?: UserdataType | undefined;
|
|
571
571
|
}
|
|
572
|
+
/**
|
|
573
|
+
* <p>The infrastructure optimization configuration for an Amazon ECS Managed Instances capacity
|
|
574
|
+
* provider. Specifies the idle-instance scale-in behavior.</p>
|
|
575
|
+
* @public
|
|
576
|
+
*/
|
|
577
|
+
export interface InfrastructureOptimization {
|
|
578
|
+
/**
|
|
579
|
+
* <p>The number of seconds an instance can remain idle before it is terminated. Valid
|
|
580
|
+
* values are <code>-1</code> or <code>0</code> to <code>3600</code>. Use <code>-1</code> as a
|
|
581
|
+
* special value to disable scale-in (instances are never terminated for being idle). If not
|
|
582
|
+
* specified, a default value applies.</p>
|
|
583
|
+
* @public
|
|
584
|
+
*/
|
|
585
|
+
scaleInAfter?: number | undefined;
|
|
586
|
+
}
|
|
587
|
+
/**
|
|
588
|
+
* <p>The capacity reservation configuration for Amazon ECS Managed Instances. Use this to target
|
|
589
|
+
* On-Demand Capacity Reservations or Reserved Instances.</p>
|
|
590
|
+
* @public
|
|
591
|
+
*/
|
|
592
|
+
export interface CapacityReservationRequest {
|
|
593
|
+
/**
|
|
594
|
+
* <p>The Amazon Resource Name (ARN) of the capacity reservation group to target.</p>
|
|
595
|
+
* @public
|
|
596
|
+
*/
|
|
597
|
+
reservationGroupArn?: string | undefined;
|
|
598
|
+
/**
|
|
599
|
+
* <p>The capacity reservation preference. Valid values:</p>
|
|
600
|
+
* <ul>
|
|
601
|
+
* <li>
|
|
602
|
+
* <p>
|
|
603
|
+
* <code>RESERVATIONS_ONLY</code> — Use only capacity reservations.</p>
|
|
604
|
+
* </li>
|
|
605
|
+
* <li>
|
|
606
|
+
* <p>
|
|
607
|
+
* <code>RESERVATIONS_FIRST</code> — Prefer capacity reservations but fall back to
|
|
608
|
+
* On-Demand if unavailable.</p>
|
|
609
|
+
* </li>
|
|
610
|
+
* <li>
|
|
611
|
+
* <p>
|
|
612
|
+
* <code>RESERVATIONS_EXCLUDED</code> — Do not use capacity reservations.</p>
|
|
613
|
+
* </li>
|
|
614
|
+
* </ul>
|
|
615
|
+
* @public
|
|
616
|
+
*/
|
|
617
|
+
reservationPreference?: string | undefined;
|
|
618
|
+
}
|
|
619
|
+
/**
|
|
620
|
+
* <p>The instance type requirements for the Amazon ECS Managed Instances capacity provider. Use this
|
|
621
|
+
* to specify which Amazon EC2 instance types or instance families Amazon ECS can launch.</p>
|
|
622
|
+
* @public
|
|
623
|
+
*/
|
|
624
|
+
export interface InstanceRequirementsRequest {
|
|
625
|
+
/**
|
|
626
|
+
* <p>A list of specific instance types or instance families that Amazon ECS can launch (for example,
|
|
627
|
+
* <code>m5.large</code> or <code>g5</code>). When specified, only these instance types are
|
|
628
|
+
* used.</p>
|
|
629
|
+
* @public
|
|
630
|
+
*/
|
|
631
|
+
allowedInstanceTypes?: string[] | undefined;
|
|
632
|
+
}
|
|
633
|
+
/**
|
|
634
|
+
* <p>The local storage configuration for Amazon ECS Managed Instances.</p>
|
|
635
|
+
* @public
|
|
636
|
+
*/
|
|
637
|
+
export interface ManagedInstancesLocalStorageConfiguration {
|
|
638
|
+
/**
|
|
639
|
+
* <p>Specifies whether instance store volumes (local NVMe SSDs) are available to containers.
|
|
640
|
+
* When enabled, containers can use the instance store for high-performance temporary
|
|
641
|
+
* storage.</p>
|
|
642
|
+
* @public
|
|
643
|
+
*/
|
|
644
|
+
useLocalStorage?: boolean | undefined;
|
|
645
|
+
}
|
|
646
|
+
/**
|
|
647
|
+
* <p>The network configuration for Amazon ECS Managed Instances. Specifies the VPC subnets and
|
|
648
|
+
* security groups where instances are launched.</p>
|
|
649
|
+
* @public
|
|
650
|
+
*/
|
|
651
|
+
export interface ManagedInstancesNetworkConfiguration {
|
|
652
|
+
/**
|
|
653
|
+
* <p>The VPC subnets where managed instances are launched. If your subnets don't provide public
|
|
654
|
+
* IP addresses, they must have a NAT gateway for outbound internet access.</p>
|
|
655
|
+
* @public
|
|
656
|
+
*/
|
|
657
|
+
subnets: string[] | undefined;
|
|
658
|
+
/**
|
|
659
|
+
* <p>The VPC security groups to associate with the managed instances.</p>
|
|
660
|
+
* @public
|
|
661
|
+
*/
|
|
662
|
+
securityGroups: string[] | undefined;
|
|
663
|
+
}
|
|
664
|
+
/**
|
|
665
|
+
* <p>The storage configuration for Amazon ECS Managed Instances.</p>
|
|
666
|
+
* @public
|
|
667
|
+
*/
|
|
668
|
+
export interface ManagedInstancesStorageConfiguration {
|
|
669
|
+
/**
|
|
670
|
+
* <p>The size of the root EBS volume in GiB for the managed instances.</p>
|
|
671
|
+
* @public
|
|
672
|
+
*/
|
|
673
|
+
storageSizeGiB?: number | undefined;
|
|
674
|
+
}
|
|
675
|
+
/**
|
|
676
|
+
* <p>The instance launch configuration for an Amazon ECS Managed Instances capacity provider.
|
|
677
|
+
* Specifies the instance profile, networking, instance selection constraints, capacity pricing
|
|
678
|
+
* model, storage, and monitoring settings.</p>
|
|
679
|
+
* @public
|
|
680
|
+
*/
|
|
681
|
+
export interface InstanceLaunchTemplate {
|
|
682
|
+
/**
|
|
683
|
+
* <p>The Amazon Resource Name (ARN) of the Amazon EC2 instance profile for the managed instances. The instance profile
|
|
684
|
+
* must use the <code>AmazonECSInstanceRolePolicyForManagedInstances</code> managed policy with a
|
|
685
|
+
* trust policy for <code>ec2.amazonaws.com</code>.</p>
|
|
686
|
+
* @public
|
|
687
|
+
*/
|
|
688
|
+
ec2InstanceProfileArn: string | undefined;
|
|
689
|
+
/**
|
|
690
|
+
* <p>The network configuration for the managed instances. Specifies the VPC subnets and security
|
|
691
|
+
* groups where instances are launched.</p>
|
|
692
|
+
* @public
|
|
693
|
+
*/
|
|
694
|
+
networkConfiguration: ManagedInstancesNetworkConfiguration | undefined;
|
|
695
|
+
/**
|
|
696
|
+
* <p>The instance type requirements for the capacity provider. Use this to constrain which Amazon EC2
|
|
697
|
+
* instance types Amazon ECS can launch. If not specified, all available instance types are
|
|
698
|
+
* eligible.</p>
|
|
699
|
+
* @public
|
|
700
|
+
*/
|
|
701
|
+
instanceRequirements?: InstanceRequirementsRequest | undefined;
|
|
702
|
+
/**
|
|
703
|
+
* <p>The capacity pricing model for the managed instances. Valid values:</p>
|
|
704
|
+
* <ul>
|
|
705
|
+
* <li>
|
|
706
|
+
* <p>
|
|
707
|
+
* <code>ON_DEMAND</code> (default) — On-Demand pricing.</p>
|
|
708
|
+
* </li>
|
|
709
|
+
* <li>
|
|
710
|
+
* <p>
|
|
711
|
+
* <code>SPOT</code> — Spot Instances, which can provide significant cost savings
|
|
712
|
+
* for fault-tolerant workloads.</p>
|
|
713
|
+
* </li>
|
|
714
|
+
* </ul>
|
|
715
|
+
* @public
|
|
716
|
+
*/
|
|
717
|
+
capacityOptionType?: string | undefined;
|
|
718
|
+
/**
|
|
719
|
+
* <p>The storage configuration for the managed instances. Configures the root EBS volume size.
|
|
720
|
+
* If not specified, the service uses the default EBS volume size for the instance type.</p>
|
|
721
|
+
* @public
|
|
722
|
+
*/
|
|
723
|
+
storageConfiguration?: ManagedInstancesStorageConfiguration | undefined;
|
|
724
|
+
/**
|
|
725
|
+
* <p>The level of CloudWatch monitoring for the managed instances. Valid values are
|
|
726
|
+
* <code>BASIC</code> and <code>DETAILED</code>.</p>
|
|
727
|
+
* @public
|
|
728
|
+
*/
|
|
729
|
+
monitoring?: string | undefined;
|
|
730
|
+
/**
|
|
731
|
+
* <p>Specifies whether FIPS 140-2 validated cryptographic modules are enabled on the managed
|
|
732
|
+
* instances. Not available in all Regions.</p>
|
|
733
|
+
* @public
|
|
734
|
+
*/
|
|
735
|
+
fipsEnabled?: boolean | undefined;
|
|
736
|
+
/**
|
|
737
|
+
* <p>The capacity reservation configuration for the managed instances. Use this to target
|
|
738
|
+
* On-Demand Capacity Reservations or Reserved Instances for predictable capacity and cost
|
|
739
|
+
* optimization.</p>
|
|
740
|
+
* @public
|
|
741
|
+
*/
|
|
742
|
+
capacityReservations?: CapacityReservationRequest | undefined;
|
|
743
|
+
/**
|
|
744
|
+
* <p>Specifies whether instance tags are accessible from the instance metadata service (IMDS).
|
|
745
|
+
* If not specified, instance tags are not accessible from IMDS.</p>
|
|
746
|
+
* @public
|
|
747
|
+
*/
|
|
748
|
+
instanceMetadataTagsPropagation?: boolean | undefined;
|
|
749
|
+
/**
|
|
750
|
+
* <p>The local storage configuration for the managed instances. If not specified, instance store
|
|
751
|
+
* volumes are not available to containers.</p>
|
|
752
|
+
* @public
|
|
753
|
+
*/
|
|
754
|
+
localStorageConfiguration?: ManagedInstancesLocalStorageConfiguration | undefined;
|
|
755
|
+
}
|
|
756
|
+
/**
|
|
757
|
+
* <p>The configuration for an Amazon ECS Managed Instances capacity provider. This object is required
|
|
758
|
+
* when creating a compute environment with <code>computeResources.type</code> set to
|
|
759
|
+
* <code>ECS_MANAGED_INSTANCES</code>.</p>
|
|
760
|
+
* @public
|
|
761
|
+
*/
|
|
762
|
+
export interface ManagedInstancesProvider {
|
|
763
|
+
/**
|
|
764
|
+
* <p>Specifies whether tags on the capacity provider are propagated to the Amazon EC2 instances it
|
|
765
|
+
* launches. Valid values:</p>
|
|
766
|
+
* <ul>
|
|
767
|
+
* <li>
|
|
768
|
+
* <p>
|
|
769
|
+
* <code>CAPACITY_PROVIDER</code> — Propagates tags to instances.</p>
|
|
770
|
+
* </li>
|
|
771
|
+
* <li>
|
|
772
|
+
* <p>
|
|
773
|
+
* <code>NONE</code> (default) — Does not propagate tags to instances.</p>
|
|
774
|
+
* </li>
|
|
775
|
+
* </ul>
|
|
776
|
+
* @public
|
|
777
|
+
*/
|
|
778
|
+
propagateTags?: string | undefined;
|
|
779
|
+
/**
|
|
780
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role that Amazon ECS assumes to manage Amazon EC2 instances on your behalf.
|
|
781
|
+
* This role must have a trust policy for <code>ecs.amazonaws.com</code>. You must have the
|
|
782
|
+
* <code>iam:PassRole</code> permission for this role with the condition
|
|
783
|
+
* <code>iam:PassedToService: ecs.amazonaws.com</code>.</p>
|
|
784
|
+
* @public
|
|
785
|
+
*/
|
|
786
|
+
infrastructureRoleArn: string | undefined;
|
|
787
|
+
/**
|
|
788
|
+
* <p>The instance launch configuration for the Amazon ECS Managed Instances capacity provider.
|
|
789
|
+
* Contains networking, instance profile, instance requirements, capacity type, storage, and
|
|
790
|
+
* monitoring configuration.</p>
|
|
791
|
+
* @public
|
|
792
|
+
*/
|
|
793
|
+
instanceLaunchTemplate: InstanceLaunchTemplate | undefined;
|
|
794
|
+
/**
|
|
795
|
+
* <p>The infrastructure optimization configuration for the capacity provider. Specifies the
|
|
796
|
+
* idle-instance scale-in behavior.</p>
|
|
797
|
+
* @public
|
|
798
|
+
*/
|
|
799
|
+
infrastructureOptimization?: InfrastructureOptimization | undefined;
|
|
800
|
+
}
|
|
572
801
|
/**
|
|
573
802
|
* <p>An object that represents a scaling policy for a compute environment.</p>
|
|
574
803
|
* @public
|
|
@@ -609,13 +838,21 @@ export interface ComputeScalingPolicy {
|
|
|
609
838
|
export interface ComputeResource {
|
|
610
839
|
/**
|
|
611
840
|
* <p>The type of compute environment: <code>EC2</code>, <code>SPOT</code>, <code>FARGATE</code>,
|
|
612
|
-
* or <code>
|
|
613
|
-
*
|
|
841
|
+
* <code>FARGATE_SPOT</code>, or <code>ECS_MANAGED_INSTANCES</code>. For more information, see
|
|
842
|
+
* <a href="https://docs.aws.amazon.com/batch/latest/userguide/compute_environments.html">Compute
|
|
843
|
+
* environments</a> in the <i>Batch User Guide</i>.</p>
|
|
614
844
|
* <p> If you choose <code>SPOT</code>, you must also specify an Amazon EC2 Spot Fleet role with the
|
|
615
845
|
* <code>spotIamFleetRole</code> parameter. For more information, see <a href="https://docs.aws.amazon.com/batch/latest/userguide/spot_fleet_IAM_role.html">Amazon EC2 spot fleet role</a> in the
|
|
616
846
|
* <i>Batch User Guide</i>.</p>
|
|
847
|
+
* <p>If you choose <code>ECS_MANAGED_INSTANCES</code>, you must also specify a
|
|
848
|
+
* <code>managedInstancesProvider</code> configuration. To use Spot capacity, set
|
|
849
|
+
* <code>capacityOptionType</code> to <code>SPOT</code> in the
|
|
850
|
+
* <code>managedInstancesProvider.instanceLaunchTemplate</code> configuration. For more
|
|
851
|
+
* information, see <a href="https://docs.aws.amazon.com/batch/latest/userguide/ecs_managed_instances.html">Amazon ECS Managed Instances compute
|
|
852
|
+
* environments</a> in the <i>Batch User Guide</i>.</p>
|
|
617
853
|
* <note>
|
|
618
|
-
* <p>Multi-node parallel jobs aren't supported on Spot Instances
|
|
854
|
+
* <p>Multi-node parallel jobs aren't supported on Spot Instances or Amazon ECS Managed
|
|
855
|
+
* Instances.</p>
|
|
619
856
|
* </note>
|
|
620
857
|
* @public
|
|
621
858
|
*/
|
|
@@ -958,6 +1195,27 @@ export interface ComputeResource {
|
|
|
958
1195
|
* @public
|
|
959
1196
|
*/
|
|
960
1197
|
scalingPolicy?: ComputeScalingPolicy | undefined;
|
|
1198
|
+
/**
|
|
1199
|
+
* <p>The configuration for the Amazon ECS Managed Instances capacity provider. This parameter is
|
|
1200
|
+
* required when <code>computeResources.type</code> is <code>ECS_MANAGED_INSTANCES</code> and must
|
|
1201
|
+
* not be specified for other compute environment types.</p>
|
|
1202
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/batch/latest/userguide/ecs_managed_instances.html">Amazon ECS
|
|
1203
|
+
* Managed Instances compute environments</a> in the
|
|
1204
|
+
* <i>Batch User Guide</i>.</p>
|
|
1205
|
+
* @public
|
|
1206
|
+
*/
|
|
1207
|
+
managedInstancesProvider?: ManagedInstancesProvider | undefined;
|
|
1208
|
+
/**
|
|
1209
|
+
* <p>The tags to apply to the Amazon ECS capacity provider and Amazon EC2 instances launched by the
|
|
1210
|
+
* compute environment. These tags are separate from the compute environment resource tags (the
|
|
1211
|
+
* top-level <code>tags</code> parameter). Use <code>capacityTags</code> for cost allocation and
|
|
1212
|
+
* organization of the underlying infrastructure resources.</p>
|
|
1213
|
+
* <p>This parameter is only valid for <code>ECS_MANAGED_INSTANCES</code> compute environments.
|
|
1214
|
+
* You must have the <code>batch:SetCapacityTags</code> permission on the
|
|
1215
|
+
* compute environment resource to use this parameter.</p>
|
|
1216
|
+
* @public
|
|
1217
|
+
*/
|
|
1218
|
+
capacityTags?: Record<string, string> | undefined;
|
|
961
1219
|
}
|
|
962
1220
|
/**
|
|
963
1221
|
* <p>The Amazon ECS settings for a compute environment, including the CloudWatch Container Insights
|
|
@@ -3643,13 +3901,18 @@ export interface EcsTaskProperties {
|
|
|
3643
3901
|
pidMode?: string | undefined;
|
|
3644
3902
|
/**
|
|
3645
3903
|
* <p>The network configuration for jobs that are running on Fargate resources. Jobs that are
|
|
3646
|
-
* running on Amazon EC2 resources must not specify this parameter.</p>
|
|
3904
|
+
* running on Amazon EC2 resources or Amazon ECS Managed Instances must not specify this parameter.</p>
|
|
3647
3905
|
* @public
|
|
3648
3906
|
*/
|
|
3649
3907
|
networkConfiguration?: NetworkConfiguration | undefined;
|
|
3650
3908
|
/**
|
|
3651
3909
|
* <p>An object that represents the compute environment architecture for Batch jobs on
|
|
3652
|
-
* Fargate
|
|
3910
|
+
* Fargate or Amazon ECS Managed Instances. Use this to specify the operating system family
|
|
3911
|
+
* (<code>operatingSystemFamily</code>) and CPU architecture
|
|
3912
|
+
* (<code>cpuArchitecture</code>).</p>
|
|
3913
|
+
* <p>For Amazon ECS Managed Instances, the valid value for <code>operatingSystemFamily</code> is
|
|
3914
|
+
* <code>LINUX</code> (default). The valid values for <code>cpuArchitecture</code> are
|
|
3915
|
+
* <code>X86_64</code> and <code>ARM64</code>.</p>
|
|
3653
3916
|
* @public
|
|
3654
3917
|
*/
|
|
3655
3918
|
runtimePlatform?: RuntimePlatform | undefined;
|
|
@@ -3664,6 +3927,19 @@ export interface EcsTaskProperties {
|
|
|
3664
3927
|
* @public
|
|
3665
3928
|
*/
|
|
3666
3929
|
enableExecuteCommand?: boolean | undefined;
|
|
3930
|
+
/**
|
|
3931
|
+
* <p>The network mode to use for the task. Valid values: <code>host</code>. When not specified,
|
|
3932
|
+
* the default is <code>host</code>.</p>
|
|
3933
|
+
* <p>With <code>host</code> mode, the container shares the host instance's network stack
|
|
3934
|
+
* directly. When running tasks that use the <code>host</code> network mode, do not run containers
|
|
3935
|
+
* using the root user (UID 0). Running as root grants unrestricted access to host resources and
|
|
3936
|
+
* increases the attack surface.</p>
|
|
3937
|
+
* <p>This parameter only applies to jobs running on Amazon ECS Managed Instances
|
|
3938
|
+
* (<code>MANAGED_INSTANCES</code> platform capability). It cannot be specified for Fargate or
|
|
3939
|
+
* Amazon EC2 platform job definitions.</p>
|
|
3940
|
+
* @public
|
|
3941
|
+
*/
|
|
3942
|
+
networkMode?: string | undefined;
|
|
3667
3943
|
}
|
|
3668
3944
|
/**
|
|
3669
3945
|
* <p>An object that contains the properties for the Amazon ECS resources of a job.</p>
|
|
@@ -4521,7 +4797,8 @@ export interface JobDefinition {
|
|
|
4521
4797
|
/**
|
|
4522
4798
|
* <p>The platform capabilities required by the job definition. If no value is specified, it
|
|
4523
4799
|
* defaults to <code>EC2</code>. Jobs run on Fargate resources specify
|
|
4524
|
-
* <code>FARGATE</code
|
|
4800
|
+
* <code>FARGATE</code>. Jobs run on Amazon ECS Managed Instances specify
|
|
4801
|
+
* <code>MANAGED_INSTANCES</code>.</p>
|
|
4525
4802
|
* @public
|
|
4526
4803
|
*/
|
|
4527
4804
|
platformCapabilities?: PlatformCapability[] | undefined;
|
|
@@ -5337,7 +5614,8 @@ export interface EcsTaskDetails {
|
|
|
5337
5614
|
networkConfiguration?: NetworkConfiguration | undefined;
|
|
5338
5615
|
/**
|
|
5339
5616
|
* <p>An object that represents the compute environment architecture for Batch jobs on
|
|
5340
|
-
* Fargate
|
|
5617
|
+
* Fargate or Amazon ECS Managed Instances. Contains the operating system family and CPU architecture
|
|
5618
|
+
* of the task.</p>
|
|
5341
5619
|
* @public
|
|
5342
5620
|
*/
|
|
5343
5621
|
runtimePlatform?: RuntimePlatform | undefined;
|
|
@@ -5352,6 +5630,13 @@ export interface EcsTaskDetails {
|
|
|
5352
5630
|
* @public
|
|
5353
5631
|
*/
|
|
5354
5632
|
enableExecuteCommand?: boolean | undefined;
|
|
5633
|
+
/**
|
|
5634
|
+
* <p>The network mode configured for the task. This field is populated for jobs running on Amazon ECS
|
|
5635
|
+
* Managed Instances (<code>MANAGED_INSTANCES</code> platform capability) and always returns
|
|
5636
|
+
* <code>host</code>.</p>
|
|
5637
|
+
* @public
|
|
5638
|
+
*/
|
|
5639
|
+
networkMode?: string | undefined;
|
|
5355
5640
|
}
|
|
5356
5641
|
/**
|
|
5357
5642
|
* <p>An object that contains the details for the Amazon ECS resources of a job.</p>
|
|
@@ -5825,7 +6110,8 @@ export interface JobDetail {
|
|
|
5825
6110
|
/**
|
|
5826
6111
|
* <p>The platform capabilities required by the job definition. If no value is specified, it
|
|
5827
6112
|
* defaults to <code>EC2</code>. Jobs run on Fargate resources specify
|
|
5828
|
-
* <code>FARGATE</code
|
|
6113
|
+
* <code>FARGATE</code>. Jobs run on Amazon ECS Managed Instances specify
|
|
6114
|
+
* <code>MANAGED_INSTANCES</code>.</p>
|
|
5829
6115
|
* @public
|
|
5830
6116
|
*/
|
|
5831
6117
|
platformCapabilities?: PlatformCapability[] | undefined;
|
|
@@ -7699,7 +7985,11 @@ export interface RegisterJobDefinitionRequest {
|
|
|
7699
7985
|
/**
|
|
7700
7986
|
* <p>The platform capabilities required by the job definition. If no value is specified, it
|
|
7701
7987
|
* defaults to <code>EC2</code>. To run the job on Fargate resources, specify
|
|
7702
|
-
*
|
|
7988
|
+
* <code>FARGATE</code>. To run the job on Amazon ECS Managed Instances, specify
|
|
7989
|
+
* <code>MANAGED_INSTANCES</code>.</p>
|
|
7990
|
+
* <p>Jobs with the <code>MANAGED_INSTANCES</code> platform capability must use
|
|
7991
|
+
* <code>ecsProperties</code> (not <code>containerProperties</code>) and do not support
|
|
7992
|
+
* multi-node parallel jobs.</p>
|
|
7703
7993
|
* <note>
|
|
7704
7994
|
* <p>If the job runs on Amazon EKS resources, then you must not specify
|
|
7705
7995
|
* <code>platformCapabilities</code>.</p>
|
|
@@ -8399,6 +8689,97 @@ export interface UntagResourceRequest {
|
|
|
8399
8689
|
*/
|
|
8400
8690
|
export interface UntagResourceResponse {
|
|
8401
8691
|
}
|
|
8692
|
+
/**
|
|
8693
|
+
* <p>The instance launch configuration for updating an Amazon ECS Managed Instances capacity
|
|
8694
|
+
* provider. You cannot change <code>capacityOptionType</code> or <code>fipsEnabled</code> after
|
|
8695
|
+
* the compute environment is created.</p>
|
|
8696
|
+
* @public
|
|
8697
|
+
*/
|
|
8698
|
+
export interface InstanceLaunchTemplateUpdate {
|
|
8699
|
+
/**
|
|
8700
|
+
* <p>The updated Amazon Resource Name (ARN) of the Amazon EC2 instance profile for the managed instances.</p>
|
|
8701
|
+
* @public
|
|
8702
|
+
*/
|
|
8703
|
+
ec2InstanceProfileArn?: string | undefined;
|
|
8704
|
+
/**
|
|
8705
|
+
* <p>The updated network configuration for the managed instances.</p>
|
|
8706
|
+
* @public
|
|
8707
|
+
*/
|
|
8708
|
+
networkConfiguration?: ManagedInstancesNetworkConfiguration | undefined;
|
|
8709
|
+
/**
|
|
8710
|
+
* <p>The updated instance type requirements for the capacity provider.</p>
|
|
8711
|
+
* @public
|
|
8712
|
+
*/
|
|
8713
|
+
instanceRequirements?: InstanceRequirementsRequest | undefined;
|
|
8714
|
+
/**
|
|
8715
|
+
* <p>The updated storage configuration for the managed instances.</p>
|
|
8716
|
+
* @public
|
|
8717
|
+
*/
|
|
8718
|
+
storageConfiguration?: ManagedInstancesStorageConfiguration | undefined;
|
|
8719
|
+
/**
|
|
8720
|
+
* <p>The updated monitoring level. Valid values are <code>BASIC</code> and
|
|
8721
|
+
* <code>DETAILED</code>.</p>
|
|
8722
|
+
* @public
|
|
8723
|
+
*/
|
|
8724
|
+
monitoring?: string | undefined;
|
|
8725
|
+
/**
|
|
8726
|
+
* <p>The updated capacity reservation configuration.</p>
|
|
8727
|
+
* @public
|
|
8728
|
+
*/
|
|
8729
|
+
capacityReservations?: CapacityReservationRequest | undefined;
|
|
8730
|
+
/**
|
|
8731
|
+
* <p>Specifies whether instance tags are accessible from the instance metadata service
|
|
8732
|
+
* (IMDS).</p>
|
|
8733
|
+
* @public
|
|
8734
|
+
*/
|
|
8735
|
+
instanceMetadataTagsPropagation?: boolean | undefined;
|
|
8736
|
+
/**
|
|
8737
|
+
* <p>The updated local storage configuration.</p>
|
|
8738
|
+
* @public
|
|
8739
|
+
*/
|
|
8740
|
+
localStorageConfiguration?: ManagedInstancesLocalStorageConfiguration | undefined;
|
|
8741
|
+
}
|
|
8742
|
+
/**
|
|
8743
|
+
* <p>The configuration for updating an Amazon ECS Managed Instances capacity provider. Used in
|
|
8744
|
+
* <code>UpdateComputeEnvironment</code> requests. The <code>capacityOptionType</code> and
|
|
8745
|
+
* <code>fipsEnabled</code> fields cannot be changed on update.</p>
|
|
8746
|
+
* @public
|
|
8747
|
+
*/
|
|
8748
|
+
export interface UpdateManagedInstancesProviderConfiguration {
|
|
8749
|
+
/**
|
|
8750
|
+
* <p>Specifies whether tags on the capacity provider are propagated to the Amazon EC2 instances it
|
|
8751
|
+
* launches. Valid values:</p>
|
|
8752
|
+
* <ul>
|
|
8753
|
+
* <li>
|
|
8754
|
+
* <p>
|
|
8755
|
+
* <code>CAPACITY_PROVIDER</code> — Propagates tags to instances.</p>
|
|
8756
|
+
* </li>
|
|
8757
|
+
* <li>
|
|
8758
|
+
* <p>
|
|
8759
|
+
* <code>NONE</code> — Does not propagate tags to instances.</p>
|
|
8760
|
+
* </li>
|
|
8761
|
+
* </ul>
|
|
8762
|
+
* @public
|
|
8763
|
+
*/
|
|
8764
|
+
propagateTags?: string | undefined;
|
|
8765
|
+
/**
|
|
8766
|
+
* <p>The updated Amazon Resource Name (ARN) of the IAM role that Amazon ECS assumes to manage Amazon EC2 instances on
|
|
8767
|
+
* your behalf.</p>
|
|
8768
|
+
* @public
|
|
8769
|
+
*/
|
|
8770
|
+
infrastructureRoleArn?: string | undefined;
|
|
8771
|
+
/**
|
|
8772
|
+
* <p>The updated instance launch configuration for the Amazon ECS Managed Instances capacity
|
|
8773
|
+
* provider.</p>
|
|
8774
|
+
* @public
|
|
8775
|
+
*/
|
|
8776
|
+
instanceLaunchTemplate?: InstanceLaunchTemplateUpdate | undefined;
|
|
8777
|
+
/**
|
|
8778
|
+
* <p>The updated infrastructure optimization configuration.</p>
|
|
8779
|
+
* @public
|
|
8780
|
+
*/
|
|
8781
|
+
infrastructureOptimization?: InfrastructureOptimization | undefined;
|
|
8782
|
+
}
|
|
8402
8783
|
/**
|
|
8403
8784
|
* <p>An object that represents the attributes of a compute environment that can be updated. For
|
|
8404
8785
|
* more information, see <a href="https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html">Updating compute environments</a> in the
|
|
@@ -8751,14 +9132,16 @@ export interface ComputeResourceUpdate {
|
|
|
8751
9132
|
updateToLatestImageVersion?: boolean | undefined;
|
|
8752
9133
|
/**
|
|
8753
9134
|
* <p>The type of compute environment: <code>EC2</code>, <code>SPOT</code>, <code>FARGATE</code>,
|
|
8754
|
-
* or <code>
|
|
8755
|
-
*
|
|
9135
|
+
* <code>FARGATE_SPOT</code>, or <code>ECS_MANAGED_INSTANCES</code>. For more information, see
|
|
9136
|
+
* <a href="https://docs.aws.amazon.com/batch/latest/userguide/compute_environments.html">Compute
|
|
9137
|
+
* environments</a> in the <i>Batch User Guide</i>.</p>
|
|
8756
9138
|
* <p> If you choose <code>SPOT</code>, you must also specify an Amazon EC2 Spot Fleet role with the
|
|
8757
9139
|
* <code>spotIamFleetRole</code> parameter. For more information, see <a href="https://docs.aws.amazon.com/batch/latest/userguide/spot_fleet_IAM_role.html">Amazon EC2 spot fleet role</a> in the
|
|
8758
9140
|
* <i>Batch User Guide</i>.</p>
|
|
8759
9141
|
* <p>When updating a compute environment, changing the type of a compute environment requires an
|
|
8760
9142
|
* infrastructure update of the compute environment. For more information, see <a href="https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html">Updating compute
|
|
8761
9143
|
* environments</a> in the <i>Batch User Guide</i>.</p>
|
|
9144
|
+
* <p>You cannot change the type to or from <code>ECS_MANAGED_INSTANCES</code>.</p>
|
|
8762
9145
|
* @public
|
|
8763
9146
|
*/
|
|
8764
9147
|
type?: CRType | undefined;
|
|
@@ -8792,6 +9175,21 @@ export interface ComputeResourceUpdate {
|
|
|
8792
9175
|
* @public
|
|
8793
9176
|
*/
|
|
8794
9177
|
scalingPolicy?: ComputeScalingPolicy | undefined;
|
|
9178
|
+
/**
|
|
9179
|
+
* <p>The updated configuration for the Amazon ECS Managed Instances capacity provider. This parameter
|
|
9180
|
+
* is only valid when the compute environment type is <code>ECS_MANAGED_INSTANCES</code>. You
|
|
9181
|
+
* cannot change <code>capacityOptionType</code> or <code>fipsEnabled</code> on update.</p>
|
|
9182
|
+
* @public
|
|
9183
|
+
*/
|
|
9184
|
+
managedInstancesProvider?: UpdateManagedInstancesProviderConfiguration | undefined;
|
|
9185
|
+
/**
|
|
9186
|
+
* <p>The updated tags to apply to the Amazon ECS capacity provider and Amazon EC2 instances. This
|
|
9187
|
+
* parameter is only valid for <code>ECS_MANAGED_INSTANCES</code> compute environments. You must
|
|
9188
|
+
* have the <code>batch:SetCapacityTags</code> permission on the compute environment resource to
|
|
9189
|
+
* use this parameter.</p>
|
|
9190
|
+
* @public
|
|
9191
|
+
*/
|
|
9192
|
+
capacityTags?: Record<string, string> | undefined;
|
|
8795
9193
|
}
|
|
8796
9194
|
/**
|
|
8797
9195
|
* <p>Contains the parameters for <code>UpdateComputeEnvironment</code>.</p>
|
|
@@ -19,6 +19,7 @@ export declare var AttemptTaskContainerDetails$: StaticStructureSchema;
|
|
|
19
19
|
export declare var CancelJobRequest$: StaticStructureSchema;
|
|
20
20
|
export declare var CancelJobResponse$: StaticStructureSchema;
|
|
21
21
|
export declare var CapacityLimit$: StaticStructureSchema;
|
|
22
|
+
export declare var CapacityReservationRequest$: StaticStructureSchema;
|
|
22
23
|
export declare var ComputeEnvironmentDetail$: StaticStructureSchema;
|
|
23
24
|
export declare var ComputeEnvironmentOrder$: StaticStructureSchema;
|
|
24
25
|
export declare var ComputeResource$: StaticStructureSchema;
|
|
@@ -123,6 +124,10 @@ export declare var GetJobQueueSnapshotRequest$: StaticStructureSchema;
|
|
|
123
124
|
export declare var GetJobQueueSnapshotResponse$: StaticStructureSchema;
|
|
124
125
|
export declare var Host$: StaticStructureSchema;
|
|
125
126
|
export declare var ImagePullSecret$: StaticStructureSchema;
|
|
127
|
+
export declare var InfrastructureOptimization$: StaticStructureSchema;
|
|
128
|
+
export declare var InstanceLaunchTemplate$: StaticStructureSchema;
|
|
129
|
+
export declare var InstanceLaunchTemplateUpdate$: StaticStructureSchema;
|
|
130
|
+
export declare var InstanceRequirementsRequest$: StaticStructureSchema;
|
|
126
131
|
export declare var JobCapacityUsageSummary$: StaticStructureSchema;
|
|
127
132
|
export declare var JobDefinition$: StaticStructureSchema;
|
|
128
133
|
export declare var JobDependency$: StaticStructureSchema;
|
|
@@ -153,6 +158,10 @@ export declare var ListServiceJobsResponse$: StaticStructureSchema;
|
|
|
153
158
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
154
159
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
155
160
|
export declare var LogConfiguration$: StaticStructureSchema;
|
|
161
|
+
export declare var ManagedInstancesLocalStorageConfiguration$: StaticStructureSchema;
|
|
162
|
+
export declare var ManagedInstancesNetworkConfiguration$: StaticStructureSchema;
|
|
163
|
+
export declare var ManagedInstancesProvider$: StaticStructureSchema;
|
|
164
|
+
export declare var ManagedInstancesStorageConfiguration$: StaticStructureSchema;
|
|
156
165
|
export declare var MountPoint$: StaticStructureSchema;
|
|
157
166
|
export declare var NetworkConfiguration$: StaticStructureSchema;
|
|
158
167
|
export declare var NetworkInterface$: StaticStructureSchema;
|
|
@@ -221,6 +230,7 @@ export declare var UpdateConsumableResourceRequest$: StaticStructureSchema;
|
|
|
221
230
|
export declare var UpdateConsumableResourceResponse$: StaticStructureSchema;
|
|
222
231
|
export declare var UpdateJobQueueRequest$: StaticStructureSchema;
|
|
223
232
|
export declare var UpdateJobQueueResponse$: StaticStructureSchema;
|
|
233
|
+
export declare var UpdateManagedInstancesProviderConfiguration$: StaticStructureSchema;
|
|
224
234
|
export declare var UpdatePolicy$: StaticStructureSchema;
|
|
225
235
|
export declare var UpdateQuotaShareRequest$: StaticStructureSchema;
|
|
226
236
|
export declare var UpdateQuotaShareResponse$: StaticStructureSchema;
|
|
@@ -24,6 +24,7 @@ export declare const UserdataType: {
|
|
|
24
24
|
export type UserdataType = (typeof UserdataType)[keyof typeof UserdataType];
|
|
25
25
|
export declare const CRType: {
|
|
26
26
|
readonly EC2: "EC2";
|
|
27
|
+
readonly ECS_MANAGED_INSTANCES: "ECS_MANAGED_INSTANCES";
|
|
27
28
|
readonly FARGATE: "FARGATE";
|
|
28
29
|
readonly FARGATE_SPOT: "FARGATE_SPOT";
|
|
29
30
|
readonly SPOT: "SPOT";
|
|
@@ -48,6 +49,7 @@ export type CEType = (typeof CEType)[keyof typeof CEType];
|
|
|
48
49
|
export declare const JobQueueType: {
|
|
49
50
|
readonly ECS: "ECS";
|
|
50
51
|
readonly ECS_FARGATE: "ECS_FARGATE";
|
|
52
|
+
readonly ECS_MANAGED_INSTANCES: "ECS_MANAGED_INSTANCES";
|
|
51
53
|
readonly EKS: "EKS";
|
|
52
54
|
readonly SAGEMAKER_TRAINING: "SAGEMAKER_TRAINING";
|
|
53
55
|
};
|
|
@@ -160,6 +162,7 @@ export type FirelensConfigurationType =
|
|
|
160
162
|
export declare const PlatformCapability: {
|
|
161
163
|
readonly EC2: "EC2";
|
|
162
164
|
readonly FARGATE: "FARGATE";
|
|
165
|
+
readonly MANAGED_INSTANCES: "MANAGED_INSTANCES";
|
|
163
166
|
};
|
|
164
167
|
export type PlatformCapability = (typeof PlatformCapability)[keyof typeof PlatformCapability];
|
|
165
168
|
export declare const RetryAction: {
|