aws-sdk-sagemaker 1.358.0 → 1.360.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.
@@ -175,11 +175,24 @@ module Aws::SageMaker
175
175
  # cannot exceed 50.
176
176
  # @return [Integer]
177
177
  #
178
+ # @!attribute [rw] availability_zones
179
+ # The availability zones in which to add nodes. Use this to target
180
+ # node placement in specific availability zones within a flexible
181
+ # instance group.
182
+ # @return [Array<String>]
183
+ #
184
+ # @!attribute [rw] instance_types
185
+ # The instance types to use when adding nodes. Use this to target
186
+ # specific instance types within a flexible instance group.
187
+ # @return [Array<String>]
188
+ #
178
189
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AddClusterNodeSpecification AWS API Documentation
179
190
  #
180
191
  class AddClusterNodeSpecification < Struct.new(
181
192
  :instance_group_name,
182
- :increment_target_count_by)
193
+ :increment_target_count_by,
194
+ :availability_zones,
195
+ :instance_types)
183
196
  SENSITIVE = []
184
197
  include Aws::Structure
185
198
  end
@@ -3191,6 +3204,15 @@ module Aws::SageMaker
3191
3204
  # instance group.
3192
3205
  # @return [Integer]
3193
3206
  #
3207
+ # @!attribute [rw] availability_zones
3208
+ # The availability zones associated with the failed node addition
3209
+ # request.
3210
+ # @return [Array<String>]
3211
+ #
3212
+ # @!attribute [rw] instance_types
3213
+ # The instance types associated with the failed node addition request.
3214
+ # @return [Array<String>]
3215
+ #
3194
3216
  # @!attribute [rw] message
3195
3217
  # A descriptive message providing additional details about the error.
3196
3218
  # @return [String]
@@ -3201,6 +3223,8 @@ module Aws::SageMaker
3201
3223
  :instance_group_name,
3202
3224
  :error_code,
3203
3225
  :failed_count,
3226
+ :availability_zones,
3227
+ :instance_types,
3204
3228
  :message)
3205
3229
  SENSITIVE = []
3206
3230
  include Aws::Structure
@@ -5519,6 +5543,19 @@ module Aws::SageMaker
5519
5543
  # cluster.
5520
5544
  # @return [String]
5521
5545
  #
5546
+ # @!attribute [rw] instance_requirements
5547
+ # The instance requirements for the instance group, including the
5548
+ # current and desired instance types. This field is present for
5549
+ # flexible instance groups that support multiple instance types.
5550
+ # @return [Types::ClusterInstanceRequirementDetails]
5551
+ #
5552
+ # @!attribute [rw] instance_type_details
5553
+ # Details about the instance types in the instance group, including
5554
+ # the count and configuration of each instance type. This field is
5555
+ # present for flexible instance groups that support multiple instance
5556
+ # types.
5557
+ # @return [Array<Types::ClusterInstanceTypeDetail>]
5558
+ #
5522
5559
  # @!attribute [rw] life_cycle_config
5523
5560
  # Details of LifeCycle configuration for the instance group.
5524
5561
  # @return [Types::ClusterLifeCycleConfig]
@@ -5661,6 +5698,10 @@ module Aws::SageMaker
5661
5698
  # The Slurm configuration for the instance group.
5662
5699
  # @return [Types::ClusterSlurmConfigDetails]
5663
5700
  #
5701
+ # @!attribute [rw] network_interface
5702
+ # The network interface configuration for the instance group.
5703
+ # @return [Types::ClusterNetworkInterfaceDetails]
5704
+ #
5664
5705
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterInstanceGroupDetails AWS API Documentation
5665
5706
  #
5666
5707
  class ClusterInstanceGroupDetails < Struct.new(
@@ -5669,6 +5710,8 @@ module Aws::SageMaker
5669
5710
  :min_count,
5670
5711
  :instance_group_name,
5671
5712
  :instance_type,
5713
+ :instance_requirements,
5714
+ :instance_type_details,
5672
5715
  :life_cycle_config,
5673
5716
  :execution_role,
5674
5717
  :threads_per_core,
@@ -5687,7 +5730,8 @@ module Aws::SageMaker
5687
5730
  :target_state_count,
5688
5731
  :software_update_status,
5689
5732
  :active_software_update_config,
5690
- :slurm_config)
5733
+ :slurm_config,
5734
+ :network_interface)
5691
5735
  SENSITIVE = []
5692
5736
  include Aws::Structure
5693
5737
  end
@@ -5717,6 +5761,13 @@ module Aws::SageMaker
5717
5761
  # Specifies the instance type of the instance group.
5718
5762
  # @return [String]
5719
5763
  #
5764
+ # @!attribute [rw] instance_requirements
5765
+ # The instance requirements for the instance group, including the
5766
+ # instance types to use. Use this to create a flexible instance group
5767
+ # that supports multiple instance types. The `InstanceType` and
5768
+ # `InstanceRequirements` properties are mutually exclusive.
5769
+ # @return [Types::ClusterInstanceRequirements]
5770
+ #
5720
5771
  # @!attribute [rw] life_cycle_config
5721
5772
  # Specifies the LifeCycle configuration for the instance group.
5722
5773
  # @return [Types::ClusterLifeCycleConfig]
@@ -5851,6 +5902,10 @@ module Aws::SageMaker
5851
5902
  # Specifies the capacity requirements for the instance group.
5852
5903
  # @return [Types::ClusterCapacityRequirements]
5853
5904
  #
5905
+ # @!attribute [rw] network_interface
5906
+ # The network interface configuration for the instance group.
5907
+ # @return [Types::ClusterNetworkInterface]
5908
+ #
5854
5909
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterInstanceGroupSpecification AWS API Documentation
5855
5910
  #
5856
5911
  class ClusterInstanceGroupSpecification < Struct.new(
@@ -5858,6 +5913,7 @@ module Aws::SageMaker
5858
5913
  :min_instance_count,
5859
5914
  :instance_group_name,
5860
5915
  :instance_type,
5916
+ :instance_requirements,
5861
5917
  :life_cycle_config,
5862
5918
  :execution_role,
5863
5919
  :threads_per_core,
@@ -5869,7 +5925,8 @@ module Aws::SageMaker
5869
5925
  :image_id,
5870
5926
  :kubernetes_config,
5871
5927
  :slurm_config,
5872
- :capacity_requirements)
5928
+ :capacity_requirements,
5929
+ :network_interface)
5873
5930
  SENSITIVE = []
5874
5931
  include Aws::Structure
5875
5932
  end
@@ -5897,6 +5954,47 @@ module Aws::SageMaker
5897
5954
  include Aws::Structure
5898
5955
  end
5899
5956
 
5957
+ # The instance requirement details for a flexible instance group,
5958
+ # including the current and desired instance types.
5959
+ #
5960
+ # @!attribute [rw] current_instance_types
5961
+ # The instance types currently in use by the instance group.
5962
+ # @return [Array<String>]
5963
+ #
5964
+ # @!attribute [rw] desired_instance_types
5965
+ # The desired instance types for the instance group, as specified in
5966
+ # the most recent update request.
5967
+ # @return [Array<String>]
5968
+ #
5969
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterInstanceRequirementDetails AWS API Documentation
5970
+ #
5971
+ class ClusterInstanceRequirementDetails < Struct.new(
5972
+ :current_instance_types,
5973
+ :desired_instance_types)
5974
+ SENSITIVE = []
5975
+ include Aws::Structure
5976
+ end
5977
+
5978
+ # The instance requirements for a flexible instance group. Use this to
5979
+ # specify multiple instance types that the instance group can use. The
5980
+ # order of instance types in the list determines the priority for
5981
+ # instance provisioning.
5982
+ #
5983
+ # @!attribute [rw] instance_types
5984
+ # The list of instance types that the instance group can use. The
5985
+ # order of instance types determines the priority—HyperPod attempts to
5986
+ # provision instances using the first instance type in the list and
5987
+ # falls back to subsequent types if capacity is unavailable.
5988
+ # @return [Array<String>]
5989
+ #
5990
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterInstanceRequirements AWS API Documentation
5991
+ #
5992
+ class ClusterInstanceRequirements < Struct.new(
5993
+ :instance_types)
5994
+ SENSITIVE = []
5995
+ include Aws::Structure
5996
+ end
5997
+
5900
5998
  # Details of an instance in a SageMaker HyperPod cluster.
5901
5999
  #
5902
6000
  # @!attribute [rw] status
@@ -5965,6 +6063,32 @@ module Aws::SageMaker
5965
6063
  class Unknown < ClusterInstanceStorageConfig; end
5966
6064
  end
5967
6065
 
6066
+ # Details about a specific instance type within a flexible instance
6067
+ # group, including the count and configuration.
6068
+ #
6069
+ # @!attribute [rw] instance_type
6070
+ # The instance type.
6071
+ # @return [String]
6072
+ #
6073
+ # @!attribute [rw] current_count
6074
+ # The number of instances of this type currently running in the
6075
+ # instance group.
6076
+ # @return [Integer]
6077
+ #
6078
+ # @!attribute [rw] threads_per_core
6079
+ # The number of threads per CPU core for this instance type.
6080
+ # @return [Integer]
6081
+ #
6082
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterInstanceTypeDetail AWS API Documentation
6083
+ #
6084
+ class ClusterInstanceTypeDetail < Struct.new(
6085
+ :instance_type,
6086
+ :current_count,
6087
+ :threads_per_core)
6088
+ SENSITIVE = []
6089
+ include Aws::Structure
6090
+ end
6091
+
5968
6092
  # Kubernetes configuration that specifies labels and taints to be
5969
6093
  # applied to cluster nodes in an instance group.
5970
6094
  #
@@ -6093,11 +6217,18 @@ module Aws::SageMaker
6093
6217
  # `SourceS3Uri`. This entrypoint script runs during cluster creation.
6094
6218
  # @return [String]
6095
6219
  #
6220
+ # @!attribute [rw] on_init_complete
6221
+ # The file name of the entrypoint script of lifecycle scripts under
6222
+ # `SourceS3Uri`. This script runs on the node after the AMI-based
6223
+ # initialization is complete.
6224
+ # @return [String]
6225
+ #
6096
6226
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterLifeCycleConfig AWS API Documentation
6097
6227
  #
6098
6228
  class ClusterLifeCycleConfig < Struct.new(
6099
6229
  :source_s3_uri,
6100
- :on_create)
6230
+ :on_create,
6231
+ :on_init_complete)
6101
6232
  SENSITIVE = []
6102
6233
  include Aws::Structure
6103
6234
  end
@@ -6133,6 +6264,51 @@ module Aws::SageMaker
6133
6264
  include Aws::Structure
6134
6265
  end
6135
6266
 
6267
+ # The network interface configuration for a Amazon SageMaker HyperPod
6268
+ # cluster instance group.
6269
+ #
6270
+ # @!attribute [rw] interface_type
6271
+ # The type of network interface for the instance group. Valid values:
6272
+ #
6273
+ # * `efa` – An EFA with ENA interface, which provides both the EFA
6274
+ # device for low-latency, high-throughput communication and the ENA
6275
+ # device for IP networking.
6276
+ #
6277
+ # * `efa-only` – An EFA-only interface, which provides only the EFA
6278
+ # device capabilities without the ENA device for traditional IP
6279
+ # networking.
6280
+ #
6281
+ # For more information, see [Elastic Fabric Adapter][1].
6282
+ #
6283
+ #
6284
+ #
6285
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/efa.html
6286
+ # @return [String]
6287
+ #
6288
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterNetworkInterface AWS API Documentation
6289
+ #
6290
+ class ClusterNetworkInterface < Struct.new(
6291
+ :interface_type)
6292
+ SENSITIVE = []
6293
+ include Aws::Structure
6294
+ end
6295
+
6296
+ # The network interface configuration details for a Amazon SageMaker
6297
+ # HyperPod cluster instance group.
6298
+ #
6299
+ # @!attribute [rw] interface_type
6300
+ # The type of network interface for the instance group. Valid values
6301
+ # are `efa` and `efa-only`.
6302
+ # @return [String]
6303
+ #
6304
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterNetworkInterfaceDetails AWS API Documentation
6305
+ #
6306
+ class ClusterNetworkInterfaceDetails < Struct.new(
6307
+ :interface_type)
6308
+ SENSITIVE = []
6309
+ include Aws::Structure
6310
+ end
6311
+
6136
6312
  # Details of an instance (also called a *node* interchangeably) in a
6137
6313
  # SageMaker HyperPod cluster.
6138
6314
  #
@@ -6234,6 +6410,10 @@ module Aws::SageMaker
6234
6410
  # instance.
6235
6411
  # @return [String]
6236
6412
  #
6413
+ # @!attribute [rw] network_interface
6414
+ # The network interface configuration for the cluster node.
6415
+ # @return [Types::ClusterNetworkInterfaceDetails]
6416
+ #
6237
6417
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterNodeDetails AWS API Documentation
6238
6418
  #
6239
6419
  class ClusterNodeDetails < Struct.new(
@@ -6256,7 +6436,8 @@ module Aws::SageMaker
6256
6436
  :desired_image_id,
6257
6437
  :ultra_server_info,
6258
6438
  :kubernetes_config,
6259
- :capacity_type)
6439
+ :capacity_type,
6440
+ :network_interface)
6260
6441
  SENSITIVE = []
6261
6442
  include Aws::Structure
6262
6443
  end
@@ -30002,6 +30183,41 @@ module Aws::SageMaker
30002
30183
  include Aws::Structure
30003
30184
  end
30004
30185
 
30186
+ # The configuration of deep health checks for an instance group.
30187
+ #
30188
+ # <note markdown="1"> Overlapping deep health check configurations will be merged into a
30189
+ # single operation.
30190
+ #
30191
+ # </note>
30192
+ #
30193
+ # @!attribute [rw] instance_group_name
30194
+ # The name of the instance group.
30195
+ # @return [String]
30196
+ #
30197
+ # @!attribute [rw] instance_ids
30198
+ # A list of Amazon Elastic Compute Cloud (EC2) instance IDs on which
30199
+ # to perform deep health checks.
30200
+ #
30201
+ # <note markdown="1"> Leave this field blank to perform deep health checks on the entire
30202
+ # instance group.
30203
+ #
30204
+ # </note>
30205
+ # @return [Array<String>]
30206
+ #
30207
+ # @!attribute [rw] deep_health_checks
30208
+ # A list of deep health checks to be performed.
30209
+ # @return [Array<String>]
30210
+ #
30211
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InstanceGroupHealthCheckConfiguration AWS API Documentation
30212
+ #
30213
+ class InstanceGroupHealthCheckConfiguration < Struct.new(
30214
+ :instance_group_name,
30215
+ :instance_ids,
30216
+ :deep_health_checks)
30217
+ SENSITIVE = []
30218
+ include Aws::Structure
30219
+ end
30220
+
30005
30221
  # Metadata information about an instance group in a HyperPod cluster.
30006
30222
  #
30007
30223
  # @!attribute [rw] failure_message
@@ -40787,12 +41003,22 @@ module Aws::SageMaker
40787
41003
  # `DeepHealthCheckInProgress`, and `NotFound`.
40788
41004
  # @return [String]
40789
41005
  #
41006
+ # @!attribute [rw] availability_zones
41007
+ # The availability zones associated with the successfully added node.
41008
+ # @return [Array<String>]
41009
+ #
41010
+ # @!attribute [rw] instance_types
41011
+ # The instance types associated with the successfully added node.
41012
+ # @return [Array<String>]
41013
+ #
40790
41014
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/NodeAdditionResult AWS API Documentation
40791
41015
  #
40792
41016
  class NodeAdditionResult < Struct.new(
40793
41017
  :node_logical_id,
40794
41018
  :instance_group_name,
40795
- :status)
41019
+ :status,
41020
+ :availability_zones,
41021
+ :instance_types)
40796
41022
  SENSITIVE = []
40797
41023
  include Aws::Structure
40798
41024
  end
@@ -48567,6 +48793,38 @@ module Aws::SageMaker
48567
48793
  include Aws::Structure
48568
48794
  end
48569
48795
 
48796
+ # @!attribute [rw] cluster_name
48797
+ # The string name or the Amazon Resource Name (ARN) of the SageMaker
48798
+ # HyperPod cluster.
48799
+ # @return [String]
48800
+ #
48801
+ # @!attribute [rw] deep_health_check_configurations
48802
+ # A list of configurations containing instance group names, EC2
48803
+ # instance IDs, and deep health checks to perform.
48804
+ # @return [Array<Types::InstanceGroupHealthCheckConfiguration>]
48805
+ #
48806
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StartClusterHealthCheckRequest AWS API Documentation
48807
+ #
48808
+ class StartClusterHealthCheckRequest < Struct.new(
48809
+ :cluster_name,
48810
+ :deep_health_check_configurations)
48811
+ SENSITIVE = []
48812
+ include Aws::Structure
48813
+ end
48814
+
48815
+ # @!attribute [rw] cluster_arn
48816
+ # The Amazon Resource Name (ARN) of the SageMaker HyperPod cluster on
48817
+ # which the deep health checks were initiated.
48818
+ # @return [String]
48819
+ #
48820
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StartClusterHealthCheckResponse AWS API Documentation
48821
+ #
48822
+ class StartClusterHealthCheckResponse < Struct.new(
48823
+ :cluster_arn)
48824
+ SENSITIVE = []
48825
+ include Aws::Structure
48826
+ end
48827
+
48570
48828
  # @!attribute [rw] edge_deployment_plan_name
48571
48829
  # The name of the edge deployment plan to start.
48572
48830
  # @return [String]
@@ -55,7 +55,7 @@ module Aws::SageMaker
55
55
  autoload :EndpointProvider, 'aws-sdk-sagemaker/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-sagemaker/endpoints'
57
57
 
58
- GEM_VERSION = '1.358.0'
58
+ GEM_VERSION = '1.360.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -149,7 +149,9 @@ module Aws
149
149
  nodes_to_add: Array[
150
150
  {
151
151
  instance_group_name: ::String,
152
- increment_target_count_by: ::Integer
152
+ increment_target_count_by: ::Integer,
153
+ availability_zones: Array[::String]?,
154
+ instance_types: Array[("ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.p5.48xlarge" | "ml.p5.4xlarge" | "ml.p6e-gb200.36xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.c5.large" | "ml.c5.xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.12xlarge" | "ml.c5.18xlarge" | "ml.c5.24xlarge" | "ml.c5n.large" | "ml.c5n.2xlarge" | "ml.c5n.4xlarge" | "ml.c5n.9xlarge" | "ml.c5n.18xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.8xlarge" | "ml.m5.12xlarge" | "ml.m5.16xlarge" | "ml.m5.24xlarge" | "ml.t3.medium" | "ml.t3.large" | "ml.t3.xlarge" | "ml.t3.2xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.16xlarge" | "ml.g6.12xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.gr6.4xlarge" | "ml.gr6.8xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.16xlarge" | "ml.g6e.12xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.p6-b200.48xlarge" | "ml.trn2.3xlarge" | "ml.trn2.48xlarge" | "ml.c6i.large" | "ml.c6i.xlarge" | "ml.c6i.2xlarge" | "ml.c6i.4xlarge" | "ml.c6i.8xlarge" | "ml.c6i.12xlarge" | "ml.c6i.16xlarge" | "ml.c6i.24xlarge" | "ml.c6i.32xlarge" | "ml.m6i.large" | "ml.m6i.xlarge" | "ml.m6i.2xlarge" | "ml.m6i.4xlarge" | "ml.m6i.8xlarge" | "ml.m6i.12xlarge" | "ml.m6i.16xlarge" | "ml.m6i.24xlarge" | "ml.m6i.32xlarge" | "ml.r6i.large" | "ml.r6i.xlarge" | "ml.r6i.2xlarge" | "ml.r6i.4xlarge" | "ml.r6i.8xlarge" | "ml.r6i.12xlarge" | "ml.r6i.16xlarge" | "ml.r6i.24xlarge" | "ml.r6i.32xlarge" | "ml.i3en.large" | "ml.i3en.xlarge" | "ml.i3en.2xlarge" | "ml.i3en.3xlarge" | "ml.i3en.6xlarge" | "ml.i3en.12xlarge" | "ml.i3en.24xlarge" | "ml.m7i.large" | "ml.m7i.xlarge" | "ml.m7i.2xlarge" | "ml.m7i.4xlarge" | "ml.m7i.8xlarge" | "ml.m7i.12xlarge" | "ml.m7i.16xlarge" | "ml.m7i.24xlarge" | "ml.m7i.48xlarge" | "ml.r7i.large" | "ml.r7i.xlarge" | "ml.r7i.2xlarge" | "ml.r7i.4xlarge" | "ml.r7i.8xlarge" | "ml.r7i.12xlarge" | "ml.r7i.16xlarge" | "ml.r7i.24xlarge" | "ml.r7i.48xlarge" | "ml.r5d.16xlarge" | "ml.g7e.2xlarge" | "ml.g7e.4xlarge" | "ml.g7e.8xlarge" | "ml.g7e.12xlarge" | "ml.g7e.24xlarge" | "ml.g7e.48xlarge" | "ml.p6-b300.48xlarge")]?
153
155
  },
154
156
  ]
155
157
  ) -> _BatchAddClusterNodesResponseSuccess
@@ -818,10 +820,14 @@ module Aws
818
820
  min_instance_count: ::Integer?,
819
821
  instance_group_name: ::String,
820
822
  instance_type: ("ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.p5.48xlarge" | "ml.p5.4xlarge" | "ml.p6e-gb200.36xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.c5.large" | "ml.c5.xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.12xlarge" | "ml.c5.18xlarge" | "ml.c5.24xlarge" | "ml.c5n.large" | "ml.c5n.2xlarge" | "ml.c5n.4xlarge" | "ml.c5n.9xlarge" | "ml.c5n.18xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.8xlarge" | "ml.m5.12xlarge" | "ml.m5.16xlarge" | "ml.m5.24xlarge" | "ml.t3.medium" | "ml.t3.large" | "ml.t3.xlarge" | "ml.t3.2xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.16xlarge" | "ml.g6.12xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.gr6.4xlarge" | "ml.gr6.8xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.16xlarge" | "ml.g6e.12xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.p6-b200.48xlarge" | "ml.trn2.3xlarge" | "ml.trn2.48xlarge" | "ml.c6i.large" | "ml.c6i.xlarge" | "ml.c6i.2xlarge" | "ml.c6i.4xlarge" | "ml.c6i.8xlarge" | "ml.c6i.12xlarge" | "ml.c6i.16xlarge" | "ml.c6i.24xlarge" | "ml.c6i.32xlarge" | "ml.m6i.large" | "ml.m6i.xlarge" | "ml.m6i.2xlarge" | "ml.m6i.4xlarge" | "ml.m6i.8xlarge" | "ml.m6i.12xlarge" | "ml.m6i.16xlarge" | "ml.m6i.24xlarge" | "ml.m6i.32xlarge" | "ml.r6i.large" | "ml.r6i.xlarge" | "ml.r6i.2xlarge" | "ml.r6i.4xlarge" | "ml.r6i.8xlarge" | "ml.r6i.12xlarge" | "ml.r6i.16xlarge" | "ml.r6i.24xlarge" | "ml.r6i.32xlarge" | "ml.i3en.large" | "ml.i3en.xlarge" | "ml.i3en.2xlarge" | "ml.i3en.3xlarge" | "ml.i3en.6xlarge" | "ml.i3en.12xlarge" | "ml.i3en.24xlarge" | "ml.m7i.large" | "ml.m7i.xlarge" | "ml.m7i.2xlarge" | "ml.m7i.4xlarge" | "ml.m7i.8xlarge" | "ml.m7i.12xlarge" | "ml.m7i.16xlarge" | "ml.m7i.24xlarge" | "ml.m7i.48xlarge" | "ml.r7i.large" | "ml.r7i.xlarge" | "ml.r7i.2xlarge" | "ml.r7i.4xlarge" | "ml.r7i.8xlarge" | "ml.r7i.12xlarge" | "ml.r7i.16xlarge" | "ml.r7i.24xlarge" | "ml.r7i.48xlarge" | "ml.r5d.16xlarge" | "ml.g7e.2xlarge" | "ml.g7e.4xlarge" | "ml.g7e.8xlarge" | "ml.g7e.12xlarge" | "ml.g7e.24xlarge" | "ml.g7e.48xlarge" | "ml.p6-b300.48xlarge")?,
823
+ instance_requirements: {
824
+ instance_types: Array[("ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.p5.48xlarge" | "ml.p5.4xlarge" | "ml.p6e-gb200.36xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.c5.large" | "ml.c5.xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.12xlarge" | "ml.c5.18xlarge" | "ml.c5.24xlarge" | "ml.c5n.large" | "ml.c5n.2xlarge" | "ml.c5n.4xlarge" | "ml.c5n.9xlarge" | "ml.c5n.18xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.8xlarge" | "ml.m5.12xlarge" | "ml.m5.16xlarge" | "ml.m5.24xlarge" | "ml.t3.medium" | "ml.t3.large" | "ml.t3.xlarge" | "ml.t3.2xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.16xlarge" | "ml.g6.12xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.gr6.4xlarge" | "ml.gr6.8xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.16xlarge" | "ml.g6e.12xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.p6-b200.48xlarge" | "ml.trn2.3xlarge" | "ml.trn2.48xlarge" | "ml.c6i.large" | "ml.c6i.xlarge" | "ml.c6i.2xlarge" | "ml.c6i.4xlarge" | "ml.c6i.8xlarge" | "ml.c6i.12xlarge" | "ml.c6i.16xlarge" | "ml.c6i.24xlarge" | "ml.c6i.32xlarge" | "ml.m6i.large" | "ml.m6i.xlarge" | "ml.m6i.2xlarge" | "ml.m6i.4xlarge" | "ml.m6i.8xlarge" | "ml.m6i.12xlarge" | "ml.m6i.16xlarge" | "ml.m6i.24xlarge" | "ml.m6i.32xlarge" | "ml.r6i.large" | "ml.r6i.xlarge" | "ml.r6i.2xlarge" | "ml.r6i.4xlarge" | "ml.r6i.8xlarge" | "ml.r6i.12xlarge" | "ml.r6i.16xlarge" | "ml.r6i.24xlarge" | "ml.r6i.32xlarge" | "ml.i3en.large" | "ml.i3en.xlarge" | "ml.i3en.2xlarge" | "ml.i3en.3xlarge" | "ml.i3en.6xlarge" | "ml.i3en.12xlarge" | "ml.i3en.24xlarge" | "ml.m7i.large" | "ml.m7i.xlarge" | "ml.m7i.2xlarge" | "ml.m7i.4xlarge" | "ml.m7i.8xlarge" | "ml.m7i.12xlarge" | "ml.m7i.16xlarge" | "ml.m7i.24xlarge" | "ml.m7i.48xlarge" | "ml.r7i.large" | "ml.r7i.xlarge" | "ml.r7i.2xlarge" | "ml.r7i.4xlarge" | "ml.r7i.8xlarge" | "ml.r7i.12xlarge" | "ml.r7i.16xlarge" | "ml.r7i.24xlarge" | "ml.r7i.48xlarge" | "ml.r5d.16xlarge" | "ml.g7e.2xlarge" | "ml.g7e.4xlarge" | "ml.g7e.8xlarge" | "ml.g7e.12xlarge" | "ml.g7e.24xlarge" | "ml.g7e.48xlarge" | "ml.p6-b300.48xlarge")]
825
+ }?,
821
826
  life_cycle_config: {
822
- source_s3_uri: ::String,
823
- on_create: ::String
824
- },
827
+ source_s3_uri: ::String?,
828
+ on_create: ::String?,
829
+ on_init_complete: ::String?
830
+ }?,
825
831
  execution_role: ::String,
826
832
  threads_per_core: ::Integer?,
827
833
  instance_storage_configs: Array[
@@ -889,6 +895,9 @@ module Aws
889
895
  }?,
890
896
  on_demand: {
891
897
  }?
898
+ }?,
899
+ network_interface: {
900
+ interface_type: ("efa" | "efa-only")?
892
901
  }?
893
902
  },
894
903
  ],
@@ -8958,6 +8967,23 @@ module Aws
8958
8967
  ) -> _SendPipelineExecutionStepSuccessResponseSuccess
8959
8968
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendPipelineExecutionStepSuccessResponseSuccess
8960
8969
 
8970
+ interface _StartClusterHealthCheckResponseSuccess
8971
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartClusterHealthCheckResponse]
8972
+ def cluster_arn: () -> ::String
8973
+ end
8974
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#start_cluster_health_check-instance_method
8975
+ def start_cluster_health_check: (
8976
+ cluster_name: ::String,
8977
+ deep_health_check_configurations: Array[
8978
+ {
8979
+ instance_group_name: ::String,
8980
+ instance_ids: Array[::String]?,
8981
+ deep_health_checks: Array[("InstanceStress" | "InstanceConnectivity")]
8982
+ },
8983
+ ]
8984
+ ) -> _StartClusterHealthCheckResponseSuccess
8985
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartClusterHealthCheckResponseSuccess
8986
+
8961
8987
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#start_edge_deployment_stage-instance_method
8962
8988
  def start_edge_deployment_stage: (
8963
8989
  edge_deployment_plan_name: ::String,
@@ -9254,10 +9280,14 @@ module Aws
9254
9280
  min_instance_count: ::Integer?,
9255
9281
  instance_group_name: ::String,
9256
9282
  instance_type: ("ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.p5.48xlarge" | "ml.p5.4xlarge" | "ml.p6e-gb200.36xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.c5.large" | "ml.c5.xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.12xlarge" | "ml.c5.18xlarge" | "ml.c5.24xlarge" | "ml.c5n.large" | "ml.c5n.2xlarge" | "ml.c5n.4xlarge" | "ml.c5n.9xlarge" | "ml.c5n.18xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.8xlarge" | "ml.m5.12xlarge" | "ml.m5.16xlarge" | "ml.m5.24xlarge" | "ml.t3.medium" | "ml.t3.large" | "ml.t3.xlarge" | "ml.t3.2xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.16xlarge" | "ml.g6.12xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.gr6.4xlarge" | "ml.gr6.8xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.16xlarge" | "ml.g6e.12xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.p6-b200.48xlarge" | "ml.trn2.3xlarge" | "ml.trn2.48xlarge" | "ml.c6i.large" | "ml.c6i.xlarge" | "ml.c6i.2xlarge" | "ml.c6i.4xlarge" | "ml.c6i.8xlarge" | "ml.c6i.12xlarge" | "ml.c6i.16xlarge" | "ml.c6i.24xlarge" | "ml.c6i.32xlarge" | "ml.m6i.large" | "ml.m6i.xlarge" | "ml.m6i.2xlarge" | "ml.m6i.4xlarge" | "ml.m6i.8xlarge" | "ml.m6i.12xlarge" | "ml.m6i.16xlarge" | "ml.m6i.24xlarge" | "ml.m6i.32xlarge" | "ml.r6i.large" | "ml.r6i.xlarge" | "ml.r6i.2xlarge" | "ml.r6i.4xlarge" | "ml.r6i.8xlarge" | "ml.r6i.12xlarge" | "ml.r6i.16xlarge" | "ml.r6i.24xlarge" | "ml.r6i.32xlarge" | "ml.i3en.large" | "ml.i3en.xlarge" | "ml.i3en.2xlarge" | "ml.i3en.3xlarge" | "ml.i3en.6xlarge" | "ml.i3en.12xlarge" | "ml.i3en.24xlarge" | "ml.m7i.large" | "ml.m7i.xlarge" | "ml.m7i.2xlarge" | "ml.m7i.4xlarge" | "ml.m7i.8xlarge" | "ml.m7i.12xlarge" | "ml.m7i.16xlarge" | "ml.m7i.24xlarge" | "ml.m7i.48xlarge" | "ml.r7i.large" | "ml.r7i.xlarge" | "ml.r7i.2xlarge" | "ml.r7i.4xlarge" | "ml.r7i.8xlarge" | "ml.r7i.12xlarge" | "ml.r7i.16xlarge" | "ml.r7i.24xlarge" | "ml.r7i.48xlarge" | "ml.r5d.16xlarge" | "ml.g7e.2xlarge" | "ml.g7e.4xlarge" | "ml.g7e.8xlarge" | "ml.g7e.12xlarge" | "ml.g7e.24xlarge" | "ml.g7e.48xlarge" | "ml.p6-b300.48xlarge")?,
9283
+ instance_requirements: {
9284
+ instance_types: Array[("ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.p5.48xlarge" | "ml.p5.4xlarge" | "ml.p6e-gb200.36xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.c5.large" | "ml.c5.xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.12xlarge" | "ml.c5.18xlarge" | "ml.c5.24xlarge" | "ml.c5n.large" | "ml.c5n.2xlarge" | "ml.c5n.4xlarge" | "ml.c5n.9xlarge" | "ml.c5n.18xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.8xlarge" | "ml.m5.12xlarge" | "ml.m5.16xlarge" | "ml.m5.24xlarge" | "ml.t3.medium" | "ml.t3.large" | "ml.t3.xlarge" | "ml.t3.2xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.16xlarge" | "ml.g6.12xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.gr6.4xlarge" | "ml.gr6.8xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.16xlarge" | "ml.g6e.12xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.p6-b200.48xlarge" | "ml.trn2.3xlarge" | "ml.trn2.48xlarge" | "ml.c6i.large" | "ml.c6i.xlarge" | "ml.c6i.2xlarge" | "ml.c6i.4xlarge" | "ml.c6i.8xlarge" | "ml.c6i.12xlarge" | "ml.c6i.16xlarge" | "ml.c6i.24xlarge" | "ml.c6i.32xlarge" | "ml.m6i.large" | "ml.m6i.xlarge" | "ml.m6i.2xlarge" | "ml.m6i.4xlarge" | "ml.m6i.8xlarge" | "ml.m6i.12xlarge" | "ml.m6i.16xlarge" | "ml.m6i.24xlarge" | "ml.m6i.32xlarge" | "ml.r6i.large" | "ml.r6i.xlarge" | "ml.r6i.2xlarge" | "ml.r6i.4xlarge" | "ml.r6i.8xlarge" | "ml.r6i.12xlarge" | "ml.r6i.16xlarge" | "ml.r6i.24xlarge" | "ml.r6i.32xlarge" | "ml.i3en.large" | "ml.i3en.xlarge" | "ml.i3en.2xlarge" | "ml.i3en.3xlarge" | "ml.i3en.6xlarge" | "ml.i3en.12xlarge" | "ml.i3en.24xlarge" | "ml.m7i.large" | "ml.m7i.xlarge" | "ml.m7i.2xlarge" | "ml.m7i.4xlarge" | "ml.m7i.8xlarge" | "ml.m7i.12xlarge" | "ml.m7i.16xlarge" | "ml.m7i.24xlarge" | "ml.m7i.48xlarge" | "ml.r7i.large" | "ml.r7i.xlarge" | "ml.r7i.2xlarge" | "ml.r7i.4xlarge" | "ml.r7i.8xlarge" | "ml.r7i.12xlarge" | "ml.r7i.16xlarge" | "ml.r7i.24xlarge" | "ml.r7i.48xlarge" | "ml.r5d.16xlarge" | "ml.g7e.2xlarge" | "ml.g7e.4xlarge" | "ml.g7e.8xlarge" | "ml.g7e.12xlarge" | "ml.g7e.24xlarge" | "ml.g7e.48xlarge" | "ml.p6-b300.48xlarge")]
9285
+ }?,
9257
9286
  life_cycle_config: {
9258
- source_s3_uri: ::String,
9259
- on_create: ::String
9260
- },
9287
+ source_s3_uri: ::String?,
9288
+ on_create: ::String?,
9289
+ on_init_complete: ::String?
9290
+ }?,
9261
9291
  execution_role: ::String,
9262
9292
  threads_per_core: ::Integer?,
9263
9293
  instance_storage_configs: Array[
@@ -9325,6 +9355,9 @@ module Aws
9325
9355
  }?,
9326
9356
  on_demand: {
9327
9357
  }?
9358
+ }?,
9359
+ network_interface: {
9360
+ interface_type: ("efa" | "efa-only")?
9328
9361
  }?
9329
9362
  },
9330
9363
  ],