aws-sdk-sagemaker 1.332.0 → 1.334.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.
- checksums.yaml +4 -4
 - data/CHANGELOG.md +10 -0
 - data/VERSION +1 -1
 - data/lib/aws-sdk-sagemaker/client.rb +71 -8
 - data/lib/aws-sdk-sagemaker/client_api.rb +29 -0
 - data/lib/aws-sdk-sagemaker/types.rb +30 -0
 - data/lib/aws-sdk-sagemaker.rb +1 -1
 - data/sig/client.rbs +16 -3
 - data/sig/types.rbs +17 -6
 - metadata +1 -1
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: e59bd1efe3e9fd611a202e9ec51ab2395773cc5718c59b92147ab4240a34ff34
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: a6c1cddc2b380899fbdb0322da6c811104a4287fb6c98704d82b808008763705
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 494da4d61223d7b923729e724c36d519f7f0a0f7fab7dee2cb7beb8acb3b5ac91a2998f446e79cb1786fb3559b71aff04bc93b15d26b159a7b62389bf3476310
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 9790ec638b68dcec121dfa6f60be26eb3ab79a4f8a234cfeaf0de633558d5542acbfa94e364db988d21f732a882ef3912fab6e02cca7d4f1ca4029b2840981f9
         
     | 
    
        data/CHANGELOG.md
    CHANGED
    
    | 
         @@ -1,6 +1,16 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            Unreleased Changes
         
     | 
| 
       2 
2 
     | 
    
         
             
            ------------------
         
     | 
| 
       3 
3 
     | 
    
         | 
| 
      
 4 
     | 
    
         
            +
            1.334.0 (2025-10-31)
         
     | 
| 
      
 5 
     | 
    
         
            +
            ------------------
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            * Feature - Allow update of platform identifier via UpdateNotebookInstance operation.
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            1.333.0 (2025-10-28)
         
     | 
| 
      
 10 
     | 
    
         
            +
            ------------------
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
            * Feature - Amazon SageMaker now supports deleting training and processing jobs in a terminal status.
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
       4 
14 
     | 
    
         
             
            1.332.0 (2025-10-24)
         
     | 
| 
       5 
15 
     | 
    
         
             
            ------------------
         
     | 
| 
       6 
16 
     | 
    
         | 
    
        data/VERSION
    CHANGED
    
    | 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            1. 
     | 
| 
      
 1 
     | 
    
         
            +
            1.334.0
         
     | 
| 
         @@ -12241,6 +12241,33 @@ module Aws::SageMaker 
     | 
|
| 
       12241 
12241 
     | 
    
         
             
                  req.send_request(options)
         
     | 
| 
       12242 
12242 
     | 
    
         
             
                end
         
     | 
| 
       12243 
12243 
     | 
    
         | 
| 
      
 12244 
     | 
    
         
            +
                # Deletes a processing job. After Amazon SageMaker deletes a processing
         
     | 
| 
      
 12245 
     | 
    
         
            +
                # job, all of the metadata for the processing job is lost. You can
         
     | 
| 
      
 12246 
     | 
    
         
            +
                # delete only processing jobs that are in a terminal state (`Stopped`,
         
     | 
| 
      
 12247 
     | 
    
         
            +
                # `Failed`, or `Completed`). You cannot delete a job that is in the
         
     | 
| 
      
 12248 
     | 
    
         
            +
                # `InProgress` or `Stopping` state. After deleting the job, you can
         
     | 
| 
      
 12249 
     | 
    
         
            +
                # reuse its name to create another processing job.
         
     | 
| 
      
 12250 
     | 
    
         
            +
                #
         
     | 
| 
      
 12251 
     | 
    
         
            +
                # @option params [required, String] :processing_job_name
         
     | 
| 
      
 12252 
     | 
    
         
            +
                #   The name of the processing job to delete.
         
     | 
| 
      
 12253 
     | 
    
         
            +
                #
         
     | 
| 
      
 12254 
     | 
    
         
            +
                # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
         
     | 
| 
      
 12255 
     | 
    
         
            +
                #
         
     | 
| 
      
 12256 
     | 
    
         
            +
                # @example Request syntax with placeholder values
         
     | 
| 
      
 12257 
     | 
    
         
            +
                #
         
     | 
| 
      
 12258 
     | 
    
         
            +
                #   resp = client.delete_processing_job({
         
     | 
| 
      
 12259 
     | 
    
         
            +
                #     processing_job_name: "ProcessingJobName", # required
         
     | 
| 
      
 12260 
     | 
    
         
            +
                #   })
         
     | 
| 
      
 12261 
     | 
    
         
            +
                #
         
     | 
| 
      
 12262 
     | 
    
         
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteProcessingJob AWS API Documentation
         
     | 
| 
      
 12263 
     | 
    
         
            +
                #
         
     | 
| 
      
 12264 
     | 
    
         
            +
                # @overload delete_processing_job(params = {})
         
     | 
| 
      
 12265 
     | 
    
         
            +
                # @param [Hash] params ({})
         
     | 
| 
      
 12266 
     | 
    
         
            +
                def delete_processing_job(params = {}, options = {})
         
     | 
| 
      
 12267 
     | 
    
         
            +
                  req = build_request(:delete_processing_job, params)
         
     | 
| 
      
 12268 
     | 
    
         
            +
                  req.send_request(options)
         
     | 
| 
      
 12269 
     | 
    
         
            +
                end
         
     | 
| 
      
 12270 
     | 
    
         
            +
             
     | 
| 
       12244 
12271 
     | 
    
         
             
                # Delete the specified project.
         
     | 
| 
       12245 
12272 
     | 
    
         
             
                #
         
     | 
| 
       12246 
12273 
     | 
    
         
             
                # @option params [required, String] :project_name
         
     | 
| 
         @@ -12357,6 +12384,38 @@ module Aws::SageMaker 
     | 
|
| 
       12357 
12384 
     | 
    
         
             
                  req.send_request(options)
         
     | 
| 
       12358 
12385 
     | 
    
         
             
                end
         
     | 
| 
       12359 
12386 
     | 
    
         | 
| 
      
 12387 
     | 
    
         
            +
                # Deletes a training job. After SageMaker deletes a training job, all of
         
     | 
| 
      
 12388 
     | 
    
         
            +
                # the metadata for the training job is lost. You can delete only
         
     | 
| 
      
 12389 
     | 
    
         
            +
                # training jobs that are in a terminal state (`Stopped`, `Failed`, or
         
     | 
| 
      
 12390 
     | 
    
         
            +
                # `Completed`) and don't retain an `Available` [managed warm pool][1].
         
     | 
| 
      
 12391 
     | 
    
         
            +
                # You cannot delete a job that is in the `InProgress` or `Stopping`
         
     | 
| 
      
 12392 
     | 
    
         
            +
                # state. After deleting the job, you can reuse its name to create
         
     | 
| 
      
 12393 
     | 
    
         
            +
                # another training job.
         
     | 
| 
      
 12394 
     | 
    
         
            +
                #
         
     | 
| 
      
 12395 
     | 
    
         
            +
                #
         
     | 
| 
      
 12396 
     | 
    
         
            +
                #
         
     | 
| 
      
 12397 
     | 
    
         
            +
                # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/train-warm-pools.html
         
     | 
| 
      
 12398 
     | 
    
         
            +
                #
         
     | 
| 
      
 12399 
     | 
    
         
            +
                # @option params [required, String] :training_job_name
         
     | 
| 
      
 12400 
     | 
    
         
            +
                #   The name of the training job to delete.
         
     | 
| 
      
 12401 
     | 
    
         
            +
                #
         
     | 
| 
      
 12402 
     | 
    
         
            +
                # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
         
     | 
| 
      
 12403 
     | 
    
         
            +
                #
         
     | 
| 
      
 12404 
     | 
    
         
            +
                # @example Request syntax with placeholder values
         
     | 
| 
      
 12405 
     | 
    
         
            +
                #
         
     | 
| 
      
 12406 
     | 
    
         
            +
                #   resp = client.delete_training_job({
         
     | 
| 
      
 12407 
     | 
    
         
            +
                #     training_job_name: "TrainingJobName", # required
         
     | 
| 
      
 12408 
     | 
    
         
            +
                #   })
         
     | 
| 
      
 12409 
     | 
    
         
            +
                #
         
     | 
| 
      
 12410 
     | 
    
         
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteTrainingJob AWS API Documentation
         
     | 
| 
      
 12411 
     | 
    
         
            +
                #
         
     | 
| 
      
 12412 
     | 
    
         
            +
                # @overload delete_training_job(params = {})
         
     | 
| 
      
 12413 
     | 
    
         
            +
                # @param [Hash] params ({})
         
     | 
| 
      
 12414 
     | 
    
         
            +
                def delete_training_job(params = {}, options = {})
         
     | 
| 
      
 12415 
     | 
    
         
            +
                  req = build_request(:delete_training_job, params)
         
     | 
| 
      
 12416 
     | 
    
         
            +
                  req.send_request(options)
         
     | 
| 
      
 12417 
     | 
    
         
            +
                end
         
     | 
| 
      
 12418 
     | 
    
         
            +
             
     | 
| 
       12360 
12419 
     | 
    
         
             
                # Deletes the specified trial. All trial components that make up the
         
     | 
| 
       12361 
12420 
     | 
    
         
             
                # trial must be deleted first. Use the [DescribeTrialComponent][1] API
         
     | 
| 
       12362 
12421 
     | 
    
         
             
                # to get the list of trial components.
         
     | 
| 
         @@ -15568,7 +15627,7 @@ module Aws::SageMaker 
     | 
|
| 
       15568 
15627 
     | 
    
         
             
                #   resp.best_training_job.creation_time #=> Time
         
     | 
| 
       15569 
15628 
     | 
    
         
             
                #   resp.best_training_job.training_start_time #=> Time
         
     | 
| 
       15570 
15629 
     | 
    
         
             
                #   resp.best_training_job.training_end_time #=> Time
         
     | 
| 
       15571 
     | 
    
         
            -
                #   resp.best_training_job.training_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped"
         
     | 
| 
      
 15630 
     | 
    
         
            +
                #   resp.best_training_job.training_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped", "Deleting"
         
     | 
| 
       15572 
15631 
     | 
    
         
             
                #   resp.best_training_job.tuned_hyper_parameters #=> Hash
         
     | 
| 
       15573 
15632 
     | 
    
         
             
                #   resp.best_training_job.tuned_hyper_parameters["HyperParameterKey"] #=> String
         
     | 
| 
       15574 
15633 
     | 
    
         
             
                #   resp.best_training_job.failure_reason #=> String
         
     | 
| 
         @@ -15583,7 +15642,7 @@ module Aws::SageMaker 
     | 
|
| 
       15583 
15642 
     | 
    
         
             
                #   resp.overall_best_training_job.creation_time #=> Time
         
     | 
| 
       15584 
15643 
     | 
    
         
             
                #   resp.overall_best_training_job.training_start_time #=> Time
         
     | 
| 
       15585 
15644 
     | 
    
         
             
                #   resp.overall_best_training_job.training_end_time #=> Time
         
     | 
| 
       15586 
     | 
    
         
            -
                #   resp.overall_best_training_job.training_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped"
         
     | 
| 
      
 15645 
     | 
    
         
            +
                #   resp.overall_best_training_job.training_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped", "Deleting"
         
     | 
| 
       15587 
15646 
     | 
    
         
             
                #   resp.overall_best_training_job.tuned_hyper_parameters #=> Hash
         
     | 
| 
       15588 
15647 
     | 
    
         
             
                #   resp.overall_best_training_job.tuned_hyper_parameters["HyperParameterKey"] #=> String
         
     | 
| 
       15589 
15648 
     | 
    
         
             
                #   resp.overall_best_training_job.failure_reason #=> String
         
     | 
| 
         @@ -18091,7 +18150,7 @@ module Aws::SageMaker 
     | 
|
| 
       18091 
18150 
     | 
    
         
             
                #   resp.labeling_job_arn #=> String
         
     | 
| 
       18092 
18151 
     | 
    
         
             
                #   resp.auto_ml_job_arn #=> String
         
     | 
| 
       18093 
18152 
     | 
    
         
             
                #   resp.model_artifacts.s3_model_artifacts #=> String
         
     | 
| 
       18094 
     | 
    
         
            -
                #   resp.training_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped"
         
     | 
| 
      
 18153 
     | 
    
         
            +
                #   resp.training_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped", "Deleting"
         
     | 
| 
       18095 
18154 
     | 
    
         
             
                #   resp.secondary_status #=> String, one of "Starting", "LaunchingMLInstances", "PreparingTrainingStack", "Downloading", "DownloadingTrainingImage", "Training", "Uploading", "Stopping", "Stopped", "MaxRuntimeExceeded", "Completed", "Failed", "Interrupted", "MaxWaitTimeExceeded", "Updating", "Restarting", "Pending"
         
     | 
| 
       18096 
18155 
     | 
    
         
             
                #   resp.failure_reason #=> String
         
     | 
| 
       18097 
18156 
     | 
    
         
             
                #   resp.hyper_parameters #=> Hash
         
     | 
| 
         @@ -25167,7 +25226,7 @@ module Aws::SageMaker 
     | 
|
| 
       25167 
25226 
     | 
    
         
             
                #     last_modified_time_after: Time.now,
         
     | 
| 
       25168 
25227 
     | 
    
         
             
                #     last_modified_time_before: Time.now,
         
     | 
| 
       25169 
25228 
     | 
    
         
             
                #     name_contains: "NameContains",
         
     | 
| 
       25170 
     | 
    
         
            -
                #     status_equals: "InProgress", # accepts InProgress, Completed, Failed, Stopping, Stopped
         
     | 
| 
      
 25229 
     | 
    
         
            +
                #     status_equals: "InProgress", # accepts InProgress, Completed, Failed, Stopping, Stopped, Deleting
         
     | 
| 
       25171 
25230 
     | 
    
         
             
                #     sort_by: "Name", # accepts Name, CreationTime, Status
         
     | 
| 
       25172 
25231 
     | 
    
         
             
                #     sort_order: "Ascending", # accepts Ascending, Descending
         
     | 
| 
       25173 
25232 
     | 
    
         
             
                #     warm_pool_status_equals: "Available", # accepts Available, Terminated, Reused, InUse
         
     | 
| 
         @@ -25182,7 +25241,7 @@ module Aws::SageMaker 
     | 
|
| 
       25182 
25241 
     | 
    
         
             
                #   resp.training_job_summaries[0].creation_time #=> Time
         
     | 
| 
       25183 
25242 
     | 
    
         
             
                #   resp.training_job_summaries[0].training_end_time #=> Time
         
     | 
| 
       25184 
25243 
     | 
    
         
             
                #   resp.training_job_summaries[0].last_modified_time #=> Time
         
     | 
| 
       25185 
     | 
    
         
            -
                #   resp.training_job_summaries[0].training_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped"
         
     | 
| 
      
 25244 
     | 
    
         
            +
                #   resp.training_job_summaries[0].training_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped", "Deleting"
         
     | 
| 
       25186 
25245 
     | 
    
         
             
                #   resp.training_job_summaries[0].secondary_status #=> String, one of "Starting", "LaunchingMLInstances", "PreparingTrainingStack", "Downloading", "DownloadingTrainingImage", "Training", "Uploading", "Stopping", "Stopped", "MaxRuntimeExceeded", "Completed", "Failed", "Interrupted", "MaxWaitTimeExceeded", "Updating", "Restarting", "Pending"
         
     | 
| 
       25187 
25246 
     | 
    
         
             
                #   resp.training_job_summaries[0].warm_pool_status.status #=> String, one of "Available", "Terminated", "Reused", "InUse"
         
     | 
| 
       25188 
25247 
     | 
    
         
             
                #   resp.training_job_summaries[0].warm_pool_status.resource_retained_billable_time_in_seconds #=> Integer
         
     | 
| 
         @@ -25244,7 +25303,7 @@ module Aws::SageMaker 
     | 
|
| 
       25244 
25303 
     | 
    
         
             
                #     hyper_parameter_tuning_job_name: "HyperParameterTuningJobName", # required
         
     | 
| 
       25245 
25304 
     | 
    
         
             
                #     next_token: "NextToken",
         
     | 
| 
       25246 
25305 
     | 
    
         
             
                #     max_results: 1,
         
     | 
| 
       25247 
     | 
    
         
            -
                #     status_equals: "InProgress", # accepts InProgress, Completed, Failed, Stopping, Stopped
         
     | 
| 
      
 25306 
     | 
    
         
            +
                #     status_equals: "InProgress", # accepts InProgress, Completed, Failed, Stopping, Stopped, Deleting
         
     | 
| 
       25248 
25307 
     | 
    
         
             
                #     sort_by: "Name", # accepts Name, CreationTime, Status, FinalObjectiveMetricValue
         
     | 
| 
       25249 
25308 
     | 
    
         
             
                #     sort_order: "Ascending", # accepts Ascending, Descending
         
     | 
| 
       25250 
25309 
     | 
    
         
             
                #   })
         
     | 
| 
         @@ -25259,7 +25318,7 @@ module Aws::SageMaker 
     | 
|
| 
       25259 
25318 
     | 
    
         
             
                #   resp.training_job_summaries[0].creation_time #=> Time
         
     | 
| 
       25260 
25319 
     | 
    
         
             
                #   resp.training_job_summaries[0].training_start_time #=> Time
         
     | 
| 
       25261 
25320 
     | 
    
         
             
                #   resp.training_job_summaries[0].training_end_time #=> Time
         
     | 
| 
       25262 
     | 
    
         
            -
                #   resp.training_job_summaries[0].training_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped"
         
     | 
| 
      
 25321 
     | 
    
         
            +
                #   resp.training_job_summaries[0].training_job_status #=> String, one of "InProgress", "Completed", "Failed", "Stopping", "Stopped", "Deleting"
         
     | 
| 
       25263 
25322 
     | 
    
         
             
                #   resp.training_job_summaries[0].tuned_hyper_parameters #=> Hash
         
     | 
| 
       25264 
25323 
     | 
    
         
             
                #   resp.training_job_summaries[0].tuned_hyper_parameters["HyperParameterKey"] #=> String
         
     | 
| 
       25265 
25324 
     | 
    
         
             
                #   resp.training_job_summaries[0].failure_reason #=> String
         
     | 
| 
         @@ -29837,6 +29896,9 @@ module Aws::SageMaker 
     | 
|
| 
       29837 
29896 
     | 
    
         
             
                #   this setting. When you specify `dualstack`, the subnet must support
         
     | 
| 
       29838 
29897 
     | 
    
         
             
                #   IPv6 addressing.
         
     | 
| 
       29839 
29898 
     | 
    
         
             
                #
         
     | 
| 
      
 29899 
     | 
    
         
            +
                # @option params [String] :platform_identifier
         
     | 
| 
      
 29900 
     | 
    
         
            +
                #   The platform identifier of the notebook instance runtime environment.
         
     | 
| 
      
 29901 
     | 
    
         
            +
                #
         
     | 
| 
       29840 
29902 
     | 
    
         
             
                # @option params [String] :role_arn
         
     | 
| 
       29841 
29903 
     | 
    
         
             
                #   The Amazon Resource Name (ARN) of the IAM role that SageMaker AI can
         
     | 
| 
       29842 
29904 
     | 
    
         
             
                #   assume to access the notebook instance. For more information, see
         
     | 
| 
         @@ -29953,6 +30015,7 @@ module Aws::SageMaker 
     | 
|
| 
       29953 
30015 
     | 
    
         
             
                #     notebook_instance_name: "NotebookInstanceName", # required
         
     | 
| 
       29954 
30016 
     | 
    
         
             
                #     instance_type: "ml.t2.medium", # accepts ml.t2.medium, ml.t2.large, ml.t2.xlarge, ml.t2.2xlarge, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5d.xlarge, ml.c5d.2xlarge, ml.c5d.4xlarge, ml.c5d.9xlarge, ml.c5d.18xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge, ml.inf1.xlarge, ml.inf1.2xlarge, ml.inf1.6xlarge, ml.inf1.24xlarge, ml.trn1.2xlarge, ml.trn1.32xlarge, ml.trn1n.32xlarge, ml.inf2.xlarge, ml.inf2.8xlarge, ml.inf2.24xlarge, ml.inf2.48xlarge, ml.p4d.24xlarge, ml.p4de.24xlarge, ml.p5.48xlarge, ml.p6-b200.48xlarge, 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.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.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.c7i.large, ml.c7i.xlarge, ml.c7i.2xlarge, ml.c7i.4xlarge, ml.c7i.8xlarge, ml.c7i.12xlarge, ml.c7i.16xlarge, ml.c7i.24xlarge, ml.c7i.48xlarge, 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.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.m6id.large, ml.m6id.xlarge, ml.m6id.2xlarge, ml.m6id.4xlarge, ml.m6id.8xlarge, ml.m6id.12xlarge, ml.m6id.16xlarge, ml.m6id.24xlarge, ml.m6id.32xlarge, ml.c6id.large, ml.c6id.xlarge, ml.c6id.2xlarge, ml.c6id.4xlarge, ml.c6id.8xlarge, ml.c6id.12xlarge, ml.c6id.16xlarge, ml.c6id.24xlarge, ml.c6id.32xlarge, ml.r6id.large, ml.r6id.xlarge, ml.r6id.2xlarge, ml.r6id.4xlarge, ml.r6id.8xlarge, ml.r6id.12xlarge, ml.r6id.16xlarge, ml.r6id.24xlarge, ml.r6id.32xlarge, ml.g6.xlarge, ml.g6.2xlarge, ml.g6.4xlarge, ml.g6.8xlarge, ml.g6.12xlarge, ml.g6.16xlarge, ml.g6.24xlarge, ml.g6.48xlarge
         
     | 
| 
       29955 
30017 
     | 
    
         
             
                #     ip_address_type: "ipv4", # accepts ipv4, dualstack
         
     | 
| 
      
 30018 
     | 
    
         
            +
                #     platform_identifier: "PlatformIdentifier",
         
     | 
| 
       29956 
30019 
     | 
    
         
             
                #     role_arn: "RoleArn",
         
     | 
| 
       29957 
30020 
     | 
    
         
             
                #     lifecycle_config_name: "NotebookInstanceLifecycleConfigName",
         
     | 
| 
       29958 
30021 
     | 
    
         
             
                #     disassociate_lifecycle_config: false,
         
     | 
| 
         @@ -31204,7 +31267,7 @@ module Aws::SageMaker 
     | 
|
| 
       31204 
31267 
     | 
    
         
             
                    tracer: tracer
         
     | 
| 
       31205 
31268 
     | 
    
         
             
                  )
         
     | 
| 
       31206 
31269 
     | 
    
         
             
                  context[:gem_name] = 'aws-sdk-sagemaker'
         
     | 
| 
       31207 
     | 
    
         
            -
                  context[:gem_version] = '1. 
     | 
| 
      
 31270 
     | 
    
         
            +
                  context[:gem_version] = '1.334.0'
         
     | 
| 
       31208 
31271 
     | 
    
         
             
                  Seahorse::Client::Request.new(handlers, context)
         
     | 
| 
       31209 
31272 
     | 
    
         
             
                end
         
     | 
| 
       31210 
31273 
     | 
    
         | 
| 
         @@ -686,11 +686,13 @@ module Aws::SageMaker 
     | 
|
| 
       686 
686 
     | 
    
         
             
                DeletePartnerAppResponse = Shapes::StructureShape.new(name: 'DeletePartnerAppResponse')
         
     | 
| 
       687 
687 
     | 
    
         
             
                DeletePipelineRequest = Shapes::StructureShape.new(name: 'DeletePipelineRequest')
         
     | 
| 
       688 
688 
     | 
    
         
             
                DeletePipelineResponse = Shapes::StructureShape.new(name: 'DeletePipelineResponse')
         
     | 
| 
      
 689 
     | 
    
         
            +
                DeleteProcessingJobRequest = Shapes::StructureShape.new(name: 'DeleteProcessingJobRequest')
         
     | 
| 
       689 
690 
     | 
    
         
             
                DeleteProjectInput = Shapes::StructureShape.new(name: 'DeleteProjectInput')
         
     | 
| 
       690 
691 
     | 
    
         
             
                DeleteSpaceRequest = Shapes::StructureShape.new(name: 'DeleteSpaceRequest')
         
     | 
| 
       691 
692 
     | 
    
         
             
                DeleteStudioLifecycleConfigRequest = Shapes::StructureShape.new(name: 'DeleteStudioLifecycleConfigRequest')
         
     | 
| 
       692 
693 
     | 
    
         
             
                DeleteTagsInput = Shapes::StructureShape.new(name: 'DeleteTagsInput')
         
     | 
| 
       693 
694 
     | 
    
         
             
                DeleteTagsOutput = Shapes::StructureShape.new(name: 'DeleteTagsOutput')
         
     | 
| 
      
 695 
     | 
    
         
            +
                DeleteTrainingJobRequest = Shapes::StructureShape.new(name: 'DeleteTrainingJobRequest')
         
     | 
| 
       694 
696 
     | 
    
         
             
                DeleteTrialComponentRequest = Shapes::StructureShape.new(name: 'DeleteTrialComponentRequest')
         
     | 
| 
       695 
697 
     | 
    
         
             
                DeleteTrialComponentResponse = Shapes::StructureShape.new(name: 'DeleteTrialComponentResponse')
         
     | 
| 
       696 
698 
     | 
    
         
             
                DeleteTrialRequest = Shapes::StructureShape.new(name: 'DeleteTrialRequest')
         
     | 
| 
         @@ -4952,6 +4954,9 @@ module Aws::SageMaker 
     | 
|
| 
       4952 
4954 
     | 
    
         
             
                DeletePipelineResponse.add_member(:pipeline_arn, Shapes::ShapeRef.new(shape: PipelineArn, location_name: "PipelineArn"))
         
     | 
| 
       4953 
4955 
     | 
    
         
             
                DeletePipelineResponse.struct_class = Types::DeletePipelineResponse
         
     | 
| 
       4954 
4956 
     | 
    
         | 
| 
      
 4957 
     | 
    
         
            +
                DeleteProcessingJobRequest.add_member(:processing_job_name, Shapes::ShapeRef.new(shape: ProcessingJobName, required: true, location_name: "ProcessingJobName"))
         
     | 
| 
      
 4958 
     | 
    
         
            +
                DeleteProcessingJobRequest.struct_class = Types::DeleteProcessingJobRequest
         
     | 
| 
      
 4959 
     | 
    
         
            +
             
     | 
| 
       4955 
4960 
     | 
    
         
             
                DeleteProjectInput.add_member(:project_name, Shapes::ShapeRef.new(shape: ProjectEntityName, required: true, location_name: "ProjectName"))
         
     | 
| 
       4956 
4961 
     | 
    
         
             
                DeleteProjectInput.struct_class = Types::DeleteProjectInput
         
     | 
| 
       4957 
4962 
     | 
    
         | 
| 
         @@ -4968,6 +4973,9 @@ module Aws::SageMaker 
     | 
|
| 
       4968 
4973 
     | 
    
         | 
| 
       4969 
4974 
     | 
    
         
             
                DeleteTagsOutput.struct_class = Types::DeleteTagsOutput
         
     | 
| 
       4970 
4975 
     | 
    
         | 
| 
      
 4976 
     | 
    
         
            +
                DeleteTrainingJobRequest.add_member(:training_job_name, Shapes::ShapeRef.new(shape: TrainingJobName, required: true, location_name: "TrainingJobName"))
         
     | 
| 
      
 4977 
     | 
    
         
            +
                DeleteTrainingJobRequest.struct_class = Types::DeleteTrainingJobRequest
         
     | 
| 
      
 4978 
     | 
    
         
            +
             
     | 
| 
       4971 
4979 
     | 
    
         
             
                DeleteTrialComponentRequest.add_member(:trial_component_name, Shapes::ShapeRef.new(shape: ExperimentEntityName, required: true, location_name: "TrialComponentName"))
         
     | 
| 
       4972 
4980 
     | 
    
         
             
                DeleteTrialComponentRequest.struct_class = Types::DeleteTrialComponentRequest
         
     | 
| 
       4973 
4981 
     | 
    
         | 
| 
         @@ -11599,6 +11607,7 @@ module Aws::SageMaker 
     | 
|
| 
       11599 
11607 
     | 
    
         
             
                UpdateNotebookInstanceInput.add_member(:notebook_instance_name, Shapes::ShapeRef.new(shape: NotebookInstanceName, required: true, location_name: "NotebookInstanceName"))
         
     | 
| 
       11600 
11608 
     | 
    
         
             
                UpdateNotebookInstanceInput.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, location_name: "InstanceType"))
         
     | 
| 
       11601 
11609 
     | 
    
         
             
                UpdateNotebookInstanceInput.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IPAddressType, location_name: "IpAddressType"))
         
     | 
| 
      
 11610 
     | 
    
         
            +
                UpdateNotebookInstanceInput.add_member(:platform_identifier, Shapes::ShapeRef.new(shape: PlatformIdentifier, location_name: "PlatformIdentifier"))
         
     | 
| 
       11602 
11611 
     | 
    
         
             
                UpdateNotebookInstanceInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
         
     | 
| 
       11603 
11612 
     | 
    
         
             
                UpdateNotebookInstanceInput.add_member(:lifecycle_config_name, Shapes::ShapeRef.new(shape: NotebookInstanceLifecycleConfigName, location_name: "LifecycleConfigName"))
         
     | 
| 
       11604 
11613 
     | 
    
         
             
                UpdateNotebookInstanceInput.add_member(:disassociate_lifecycle_config, Shapes::ShapeRef.new(shape: DisassociateNotebookInstanceLifecycleConfig, location_name: "DisassociateLifecycleConfig", metadata: {"box" => true}))
         
     | 
| 
         @@ -13020,6 +13029,16 @@ module Aws::SageMaker 
     | 
|
| 
       13020 
13029 
     | 
    
         
             
                    o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
         
     | 
| 
       13021 
13030 
     | 
    
         
             
                  end)
         
     | 
| 
       13022 
13031 
     | 
    
         | 
| 
      
 13032 
     | 
    
         
            +
                  api.add_operation(:delete_processing_job, Seahorse::Model::Operation.new.tap do |o|
         
     | 
| 
      
 13033 
     | 
    
         
            +
                    o.name = "DeleteProcessingJob"
         
     | 
| 
      
 13034 
     | 
    
         
            +
                    o.http_method = "POST"
         
     | 
| 
      
 13035 
     | 
    
         
            +
                    o.http_request_uri = "/"
         
     | 
| 
      
 13036 
     | 
    
         
            +
                    o.input = Shapes::ShapeRef.new(shape: DeleteProcessingJobRequest)
         
     | 
| 
      
 13037 
     | 
    
         
            +
                    o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
         
     | 
| 
      
 13038 
     | 
    
         
            +
                    o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
         
     | 
| 
      
 13039 
     | 
    
         
            +
                    o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
         
     | 
| 
      
 13040 
     | 
    
         
            +
                  end)
         
     | 
| 
      
 13041 
     | 
    
         
            +
             
     | 
| 
       13023 
13042 
     | 
    
         
             
                  api.add_operation(:delete_project, Seahorse::Model::Operation.new.tap do |o|
         
     | 
| 
       13024 
13043 
     | 
    
         
             
                    o.name = "DeleteProject"
         
     | 
| 
       13025 
13044 
     | 
    
         
             
                    o.http_method = "POST"
         
     | 
| 
         @@ -13057,6 +13076,16 @@ module Aws::SageMaker 
     | 
|
| 
       13057 
13076 
     | 
    
         
             
                    o.output = Shapes::ShapeRef.new(shape: DeleteTagsOutput)
         
     | 
| 
       13058 
13077 
     | 
    
         
             
                  end)
         
     | 
| 
       13059 
13078 
     | 
    
         | 
| 
      
 13079 
     | 
    
         
            +
                  api.add_operation(:delete_training_job, Seahorse::Model::Operation.new.tap do |o|
         
     | 
| 
      
 13080 
     | 
    
         
            +
                    o.name = "DeleteTrainingJob"
         
     | 
| 
      
 13081 
     | 
    
         
            +
                    o.http_method = "POST"
         
     | 
| 
      
 13082 
     | 
    
         
            +
                    o.http_request_uri = "/"
         
     | 
| 
      
 13083 
     | 
    
         
            +
                    o.input = Shapes::ShapeRef.new(shape: DeleteTrainingJobRequest)
         
     | 
| 
      
 13084 
     | 
    
         
            +
                    o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
         
     | 
| 
      
 13085 
     | 
    
         
            +
                    o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
         
     | 
| 
      
 13086 
     | 
    
         
            +
                    o.errors << Shapes::ShapeRef.new(shape: ResourceInUse)
         
     | 
| 
      
 13087 
     | 
    
         
            +
                  end)
         
     | 
| 
      
 13088 
     | 
    
         
            +
             
     | 
| 
       13060 
13089 
     | 
    
         
             
                  api.add_operation(:delete_trial, Seahorse::Model::Operation.new.tap do |o|
         
     | 
| 
       13061 
13090 
     | 
    
         
             
                    o.name = "DeleteTrial"
         
     | 
| 
       13062 
13091 
     | 
    
         
             
                    o.http_method = "POST"
         
     | 
| 
         @@ -13916,6 +13916,18 @@ module Aws::SageMaker 
     | 
|
| 
       13916 
13916 
     | 
    
         
             
                  include Aws::Structure
         
     | 
| 
       13917 
13917 
     | 
    
         
             
                end
         
     | 
| 
       13918 
13918 
     | 
    
         | 
| 
      
 13919 
     | 
    
         
            +
                # @!attribute [rw] processing_job_name
         
     | 
| 
      
 13920 
     | 
    
         
            +
                #   The name of the processing job to delete.
         
     | 
| 
      
 13921 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 13922 
     | 
    
         
            +
                #
         
     | 
| 
      
 13923 
     | 
    
         
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteProcessingJobRequest AWS API Documentation
         
     | 
| 
      
 13924 
     | 
    
         
            +
                #
         
     | 
| 
      
 13925 
     | 
    
         
            +
                class DeleteProcessingJobRequest < Struct.new(
         
     | 
| 
      
 13926 
     | 
    
         
            +
                  :processing_job_name)
         
     | 
| 
      
 13927 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
      
 13928 
     | 
    
         
            +
                  include Aws::Structure
         
     | 
| 
      
 13929 
     | 
    
         
            +
                end
         
     | 
| 
      
 13930 
     | 
    
         
            +
             
     | 
| 
       13919 
13931 
     | 
    
         
             
                # @!attribute [rw] project_name
         
     | 
| 
       13920 
13932 
     | 
    
         
             
                #   The name of the project to delete.
         
     | 
| 
       13921 
13933 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -13980,6 +13992,18 @@ module Aws::SageMaker 
     | 
|
| 
       13980 
13992 
     | 
    
         
             
                #
         
     | 
| 
       13981 
13993 
     | 
    
         
             
                class DeleteTagsOutput < Aws::EmptyStructure; end
         
     | 
| 
       13982 
13994 
     | 
    
         | 
| 
      
 13995 
     | 
    
         
            +
                # @!attribute [rw] training_job_name
         
     | 
| 
      
 13996 
     | 
    
         
            +
                #   The name of the training job to delete.
         
     | 
| 
      
 13997 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 13998 
     | 
    
         
            +
                #
         
     | 
| 
      
 13999 
     | 
    
         
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteTrainingJobRequest AWS API Documentation
         
     | 
| 
      
 14000 
     | 
    
         
            +
                #
         
     | 
| 
      
 14001 
     | 
    
         
            +
                class DeleteTrainingJobRequest < Struct.new(
         
     | 
| 
      
 14002 
     | 
    
         
            +
                  :training_job_name)
         
     | 
| 
      
 14003 
     | 
    
         
            +
                  SENSITIVE = []
         
     | 
| 
      
 14004 
     | 
    
         
            +
                  include Aws::Structure
         
     | 
| 
      
 14005 
     | 
    
         
            +
                end
         
     | 
| 
      
 14006 
     | 
    
         
            +
             
     | 
| 
       13983 
14007 
     | 
    
         
             
                # @!attribute [rw] trial_component_name
         
     | 
| 
       13984 
14008 
     | 
    
         
             
                #   The name of the component to delete.
         
     | 
| 
       13985 
14009 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -52189,6 +52213,11 @@ module Aws::SageMaker 
     | 
|
| 
       52189 
52213 
     | 
    
         
             
                #   IPv6 addressing.
         
     | 
| 
       52190 
52214 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       52191 
52215 
     | 
    
         
             
                #
         
     | 
| 
      
 52216 
     | 
    
         
            +
                # @!attribute [rw] platform_identifier
         
     | 
| 
      
 52217 
     | 
    
         
            +
                #   The platform identifier of the notebook instance runtime
         
     | 
| 
      
 52218 
     | 
    
         
            +
                #   environment.
         
     | 
| 
      
 52219 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 52220 
     | 
    
         
            +
                #
         
     | 
| 
       52192 
52221 
     | 
    
         
             
                # @!attribute [rw] role_arn
         
     | 
| 
       52193 
52222 
     | 
    
         
             
                #   The Amazon Resource Name (ARN) of the IAM role that SageMaker AI can
         
     | 
| 
       52194 
52223 
     | 
    
         
             
                #   assume to access the notebook instance. For more information, see
         
     | 
| 
         @@ -52316,6 +52345,7 @@ module Aws::SageMaker 
     | 
|
| 
       52316 
52345 
     | 
    
         
             
                  :notebook_instance_name,
         
     | 
| 
       52317 
52346 
     | 
    
         
             
                  :instance_type,
         
     | 
| 
       52318 
52347 
     | 
    
         
             
                  :ip_address_type,
         
     | 
| 
      
 52348 
     | 
    
         
            +
                  :platform_identifier,
         
     | 
| 
       52319 
52349 
     | 
    
         
             
                  :role_arn,
         
     | 
| 
       52320 
52350 
     | 
    
         
             
                  :lifecycle_config_name,
         
     | 
| 
       52321 
52351 
     | 
    
         
             
                  :disassociate_lifecycle_config,
         
     | 
    
        data/lib/aws-sdk-sagemaker.rb
    CHANGED
    
    
    
        data/sig/client.rbs
    CHANGED
    
    | 
         @@ -5167,6 +5167,12 @@ module Aws 
     | 
|
| 
       5167 
5167 
     | 
    
         
             
                                       ) -> _DeletePipelineResponseSuccess
         
     | 
| 
       5168 
5168 
     | 
    
         
             
                                     | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePipelineResponseSuccess
         
     | 
| 
       5169 
5169 
     | 
    
         | 
| 
      
 5170 
     | 
    
         
            +
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#delete_processing_job-instance_method
         
     | 
| 
      
 5171 
     | 
    
         
            +
                  def delete_processing_job: (
         
     | 
| 
      
 5172 
     | 
    
         
            +
                                               processing_job_name: ::String
         
     | 
| 
      
 5173 
     | 
    
         
            +
                                             ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
         
     | 
| 
      
 5174 
     | 
    
         
            +
                                           | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
         
     | 
| 
      
 5175 
     | 
    
         
            +
             
     | 
| 
       5170 
5176 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#delete_project-instance_method
         
     | 
| 
       5171 
5177 
     | 
    
         
             
                  def delete_project: (
         
     | 
| 
       5172 
5178 
     | 
    
         
             
                                        project_name: ::String
         
     | 
| 
         @@ -5196,6 +5202,12 @@ module Aws 
     | 
|
| 
       5196 
5202 
     | 
    
         
             
                                   ) -> _DeleteTagsResponseSuccess
         
     | 
| 
       5197 
5203 
     | 
    
         
             
                                 | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTagsResponseSuccess
         
     | 
| 
       5198 
5204 
     | 
    
         | 
| 
      
 5205 
     | 
    
         
            +
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#delete_training_job-instance_method
         
     | 
| 
      
 5206 
     | 
    
         
            +
                  def delete_training_job: (
         
     | 
| 
      
 5207 
     | 
    
         
            +
                                             training_job_name: ::String
         
     | 
| 
      
 5208 
     | 
    
         
            +
                                           ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
         
     | 
| 
      
 5209 
     | 
    
         
            +
                                         | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
         
     | 
| 
      
 5210 
     | 
    
         
            +
             
     | 
| 
       5199 
5211 
     | 
    
         
             
                  interface _DeleteTrialResponseSuccess
         
     | 
| 
       5200 
5212 
     | 
    
         
             
                    include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTrialResponse]
         
     | 
| 
       5201 
5213 
     | 
    
         
             
                    def trial_arn: () -> ::String
         
     | 
| 
         @@ -6588,7 +6600,7 @@ module Aws 
     | 
|
| 
       6588 
6600 
     | 
    
         
             
                    def labeling_job_arn: () -> ::String
         
     | 
| 
       6589 
6601 
     | 
    
         
             
                    def auto_ml_job_arn: () -> ::String
         
     | 
| 
       6590 
6602 
     | 
    
         
             
                    def model_artifacts: () -> Types::ModelArtifacts
         
     | 
| 
       6591 
     | 
    
         
            -
                    def training_job_status: () -> ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped")
         
     | 
| 
      
 6603 
     | 
    
         
            +
                    def training_job_status: () -> ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting")
         
     | 
| 
       6592 
6604 
     | 
    
         
             
                    def secondary_status: () -> ("Starting" | "LaunchingMLInstances" | "PreparingTrainingStack" | "Downloading" | "DownloadingTrainingImage" | "Training" | "Uploading" | "Stopping" | "Stopped" | "MaxRuntimeExceeded" | "Completed" | "Failed" | "Interrupted" | "MaxWaitTimeExceeded" | "Updating" | "Restarting" | "Pending")
         
     | 
| 
       6593 
6605 
     | 
    
         
             
                    def failure_reason: () -> ::String
         
     | 
| 
       6594 
6606 
     | 
    
         
             
                    def hyper_parameters: () -> ::Hash[::String, ::String]
         
     | 
| 
         @@ -8286,7 +8298,7 @@ module Aws 
     | 
|
| 
       8286 
8298 
     | 
    
         
             
                                            ?last_modified_time_after: ::Time,
         
     | 
| 
       8287 
8299 
     | 
    
         
             
                                            ?last_modified_time_before: ::Time,
         
     | 
| 
       8288 
8300 
     | 
    
         
             
                                            ?name_contains: ::String,
         
     | 
| 
       8289 
     | 
    
         
            -
                                            ?status_equals: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped"),
         
     | 
| 
      
 8301 
     | 
    
         
            +
                                            ?status_equals: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting"),
         
     | 
| 
       8290 
8302 
     | 
    
         
             
                                            ?sort_by: ("Name" | "CreationTime" | "Status"),
         
     | 
| 
       8291 
8303 
     | 
    
         
             
                                            ?sort_order: ("Ascending" | "Descending"),
         
     | 
| 
       8292 
8304 
     | 
    
         
             
                                            ?warm_pool_status_equals: ("Available" | "Terminated" | "Reused" | "InUse"),
         
     | 
| 
         @@ -8304,7 +8316,7 @@ module Aws 
     | 
|
| 
       8304 
8316 
     | 
    
         
             
                                                                           hyper_parameter_tuning_job_name: ::String,
         
     | 
| 
       8305 
8317 
     | 
    
         
             
                                                                           ?next_token: ::String,
         
     | 
| 
       8306 
8318 
     | 
    
         
             
                                                                           ?max_results: ::Integer,
         
     | 
| 
       8307 
     | 
    
         
            -
                                                                           ?status_equals: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped"),
         
     | 
| 
      
 8319 
     | 
    
         
            +
                                                                           ?status_equals: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting"),
         
     | 
| 
       8308 
8320 
     | 
    
         
             
                                                                           ?sort_by: ("Name" | "CreationTime" | "Status" | "FinalObjectiveMetricValue"),
         
     | 
| 
       8309 
8321 
     | 
    
         
             
                                                                           ?sort_order: ("Ascending" | "Descending")
         
     | 
| 
       8310 
8322 
     | 
    
         
             
                                                                         ) -> _ListTrainingJobsForHyperParameterTuningJobResponseSuccess
         
     | 
| 
         @@ -10141,6 +10153,7 @@ module Aws 
     | 
|
| 
       10141 
10153 
     | 
    
         
             
                                                  notebook_instance_name: ::String,
         
     | 
| 
       10142 
10154 
     | 
    
         
             
                                                  ?instance_type: ("ml.t2.medium" | "ml.t2.large" | "ml.t2.xlarge" | "ml.t2.2xlarge" | "ml.t3.medium" | "ml.t3.large" | "ml.t3.xlarge" | "ml.t3.2xlarge" | "ml.m4.xlarge" | "ml.m4.2xlarge" | "ml.m4.4xlarge" | "ml.m4.10xlarge" | "ml.m4.16xlarge" | "ml.m5.xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.12xlarge" | "ml.m5.24xlarge" | "ml.m5d.large" | "ml.m5d.xlarge" | "ml.m5d.2xlarge" | "ml.m5d.4xlarge" | "ml.m5d.8xlarge" | "ml.m5d.12xlarge" | "ml.m5d.16xlarge" | "ml.m5d.24xlarge" | "ml.c4.xlarge" | "ml.c4.2xlarge" | "ml.c4.4xlarge" | "ml.c4.8xlarge" | "ml.c5.xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.18xlarge" | "ml.c5d.xlarge" | "ml.c5d.2xlarge" | "ml.c5d.4xlarge" | "ml.c5d.9xlarge" | "ml.c5d.18xlarge" | "ml.p2.xlarge" | "ml.p2.8xlarge" | "ml.p2.16xlarge" | "ml.p3.2xlarge" | "ml.p3.8xlarge" | "ml.p3.16xlarge" | "ml.p3dn.24xlarge" | "ml.g4dn.xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.r5.large" | "ml.r5.xlarge" | "ml.r5.2xlarge" | "ml.r5.4xlarge" | "ml.r5.8xlarge" | "ml.r5.12xlarge" | "ml.r5.16xlarge" | "ml.r5.24xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.16xlarge" | "ml.g5.12xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.inf1.xlarge" | "ml.inf1.2xlarge" | "ml.inf1.6xlarge" | "ml.inf1.24xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "ml.inf2.xlarge" | "ml.inf2.8xlarge" | "ml.inf2.24xlarge" | "ml.inf2.48xlarge" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.p5.48xlarge" | "ml.p6-b200.48xlarge" | "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.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.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.c7i.large" | "ml.c7i.xlarge" | "ml.c7i.2xlarge" | "ml.c7i.4xlarge" | "ml.c7i.8xlarge" | "ml.c7i.12xlarge" | "ml.c7i.16xlarge" | "ml.c7i.24xlarge" | "ml.c7i.48xlarge" | "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.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.m6id.large" | "ml.m6id.xlarge" | "ml.m6id.2xlarge" | "ml.m6id.4xlarge" | "ml.m6id.8xlarge" | "ml.m6id.12xlarge" | "ml.m6id.16xlarge" | "ml.m6id.24xlarge" | "ml.m6id.32xlarge" | "ml.c6id.large" | "ml.c6id.xlarge" | "ml.c6id.2xlarge" | "ml.c6id.4xlarge" | "ml.c6id.8xlarge" | "ml.c6id.12xlarge" | "ml.c6id.16xlarge" | "ml.c6id.24xlarge" | "ml.c6id.32xlarge" | "ml.r6id.large" | "ml.r6id.xlarge" | "ml.r6id.2xlarge" | "ml.r6id.4xlarge" | "ml.r6id.8xlarge" | "ml.r6id.12xlarge" | "ml.r6id.16xlarge" | "ml.r6id.24xlarge" | "ml.r6id.32xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.12xlarge" | "ml.g6.16xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge"),
         
     | 
| 
       10143 
10155 
     | 
    
         
             
                                                  ?ip_address_type: ("ipv4" | "dualstack"),
         
     | 
| 
      
 10156 
     | 
    
         
            +
                                                  ?platform_identifier: ::String,
         
     | 
| 
       10144 
10157 
     | 
    
         
             
                                                  ?role_arn: ::String,
         
     | 
| 
       10145 
10158 
     | 
    
         
             
                                                  ?lifecycle_config_name: ::String,
         
     | 
| 
       10146 
10159 
     | 
    
         
             
                                                  ?disassociate_lifecycle_config: bool,
         
     | 
    
        data/sig/types.rbs
    CHANGED
    
    | 
         @@ -2833,6 +2833,11 @@ module Aws::SageMaker 
     | 
|
| 
       2833 
2833 
     | 
    
         
             
                  SENSITIVE: []
         
     | 
| 
       2834 
2834 
     | 
    
         
             
                end
         
     | 
| 
       2835 
2835 
     | 
    
         | 
| 
      
 2836 
     | 
    
         
            +
                class DeleteProcessingJobRequest
         
     | 
| 
      
 2837 
     | 
    
         
            +
                  attr_accessor processing_job_name: ::String
         
     | 
| 
      
 2838 
     | 
    
         
            +
                  SENSITIVE: []
         
     | 
| 
      
 2839 
     | 
    
         
            +
                end
         
     | 
| 
      
 2840 
     | 
    
         
            +
             
     | 
| 
       2836 
2841 
     | 
    
         
             
                class DeleteProjectInput
         
     | 
| 
       2837 
2842 
     | 
    
         
             
                  attr_accessor project_name: ::String
         
     | 
| 
       2838 
2843 
     | 
    
         
             
                  SENSITIVE: []
         
     | 
| 
         @@ -2858,6 +2863,11 @@ module Aws::SageMaker 
     | 
|
| 
       2858 
2863 
     | 
    
         
             
                class DeleteTagsOutput < Aws::EmptyStructure
         
     | 
| 
       2859 
2864 
     | 
    
         
             
                end
         
     | 
| 
       2860 
2865 
     | 
    
         | 
| 
      
 2866 
     | 
    
         
            +
                class DeleteTrainingJobRequest
         
     | 
| 
      
 2867 
     | 
    
         
            +
                  attr_accessor training_job_name: ::String
         
     | 
| 
      
 2868 
     | 
    
         
            +
                  SENSITIVE: []
         
     | 
| 
      
 2869 
     | 
    
         
            +
                end
         
     | 
| 
      
 2870 
     | 
    
         
            +
             
     | 
| 
       2861 
2871 
     | 
    
         
             
                class DeleteTrialComponentRequest
         
     | 
| 
       2862 
2872 
     | 
    
         
             
                  attr_accessor trial_component_name: ::String
         
     | 
| 
       2863 
2873 
     | 
    
         
             
                  SENSITIVE: []
         
     | 
| 
         @@ -4299,7 +4309,7 @@ module Aws::SageMaker 
     | 
|
| 
       4299 
4309 
     | 
    
         
             
                  attr_accessor labeling_job_arn: ::String
         
     | 
| 
       4300 
4310 
     | 
    
         
             
                  attr_accessor auto_ml_job_arn: ::String
         
     | 
| 
       4301 
4311 
     | 
    
         
             
                  attr_accessor model_artifacts: Types::ModelArtifacts
         
     | 
| 
       4302 
     | 
    
         
            -
                  attr_accessor training_job_status: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped")
         
     | 
| 
      
 4312 
     | 
    
         
            +
                  attr_accessor training_job_status: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting")
         
     | 
| 
       4303 
4313 
     | 
    
         
             
                  attr_accessor secondary_status: ("Starting" | "LaunchingMLInstances" | "PreparingTrainingStack" | "Downloading" | "DownloadingTrainingImage" | "Training" | "Uploading" | "Stopping" | "Stopped" | "MaxRuntimeExceeded" | "Completed" | "Failed" | "Interrupted" | "MaxWaitTimeExceeded" | "Updating" | "Restarting" | "Pending")
         
     | 
| 
       4304 
4314 
     | 
    
         
             
                  attr_accessor failure_reason: ::String
         
     | 
| 
       4305 
4315 
     | 
    
         
             
                  attr_accessor hyper_parameters: ::Hash[::String, ::String]
         
     | 
| 
         @@ -5400,7 +5410,7 @@ module Aws::SageMaker 
     | 
|
| 
       5400 
5410 
     | 
    
         
             
                  attr_accessor creation_time: ::Time
         
     | 
| 
       5401 
5411 
     | 
    
         
             
                  attr_accessor training_start_time: ::Time
         
     | 
| 
       5402 
5412 
     | 
    
         
             
                  attr_accessor training_end_time: ::Time
         
     | 
| 
       5403 
     | 
    
         
            -
                  attr_accessor training_job_status: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped")
         
     | 
| 
      
 5413 
     | 
    
         
            +
                  attr_accessor training_job_status: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting")
         
     | 
| 
       5404 
5414 
     | 
    
         
             
                  attr_accessor tuned_hyper_parameters: ::Hash[::String, ::String]
         
     | 
| 
       5405 
5415 
     | 
    
         
             
                  attr_accessor failure_reason: ::String
         
     | 
| 
       5406 
5416 
     | 
    
         
             
                  attr_accessor final_hyper_parameter_tuning_job_objective_metric: Types::FinalHyperParameterTuningJobObjectiveMetric
         
     | 
| 
         @@ -7357,7 +7367,7 @@ module Aws::SageMaker 
     | 
|
| 
       7357 
7367 
     | 
    
         
             
                  attr_accessor hyper_parameter_tuning_job_name: ::String
         
     | 
| 
       7358 
7368 
     | 
    
         
             
                  attr_accessor next_token: ::String
         
     | 
| 
       7359 
7369 
     | 
    
         
             
                  attr_accessor max_results: ::Integer
         
     | 
| 
       7360 
     | 
    
         
            -
                  attr_accessor status_equals: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped")
         
     | 
| 
      
 7370 
     | 
    
         
            +
                  attr_accessor status_equals: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting")
         
     | 
| 
       7361 
7371 
     | 
    
         
             
                  attr_accessor sort_by: ("Name" | "CreationTime" | "Status" | "FinalObjectiveMetricValue")
         
     | 
| 
       7362 
7372 
     | 
    
         
             
                  attr_accessor sort_order: ("Ascending" | "Descending")
         
     | 
| 
       7363 
7373 
     | 
    
         
             
                  SENSITIVE: []
         
     | 
| 
         @@ -7377,7 +7387,7 @@ module Aws::SageMaker 
     | 
|
| 
       7377 
7387 
     | 
    
         
             
                  attr_accessor last_modified_time_after: ::Time
         
     | 
| 
       7378 
7388 
     | 
    
         
             
                  attr_accessor last_modified_time_before: ::Time
         
     | 
| 
       7379 
7389 
     | 
    
         
             
                  attr_accessor name_contains: ::String
         
     | 
| 
       7380 
     | 
    
         
            -
                  attr_accessor status_equals: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped")
         
     | 
| 
      
 7390 
     | 
    
         
            +
                  attr_accessor status_equals: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting")
         
     | 
| 
       7381 
7391 
     | 
    
         
             
                  attr_accessor sort_by: ("Name" | "CreationTime" | "Status")
         
     | 
| 
       7382 
7392 
     | 
    
         
             
                  attr_accessor sort_order: ("Ascending" | "Descending")
         
     | 
| 
       7383 
7393 
     | 
    
         
             
                  attr_accessor warm_pool_status_equals: ("Available" | "Terminated" | "Reused" | "InUse")
         
     | 
| 
         @@ -10103,7 +10113,7 @@ module Aws::SageMaker 
     | 
|
| 
       10103 
10113 
     | 
    
         
             
                  attr_accessor labeling_job_arn: ::String
         
     | 
| 
       10104 
10114 
     | 
    
         
             
                  attr_accessor auto_ml_job_arn: ::String
         
     | 
| 
       10105 
10115 
     | 
    
         
             
                  attr_accessor model_artifacts: Types::ModelArtifacts
         
     | 
| 
       10106 
     | 
    
         
            -
                  attr_accessor training_job_status: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped")
         
     | 
| 
      
 10116 
     | 
    
         
            +
                  attr_accessor training_job_status: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting")
         
     | 
| 
       10107 
10117 
     | 
    
         
             
                  attr_accessor secondary_status: ("Starting" | "LaunchingMLInstances" | "PreparingTrainingStack" | "Downloading" | "DownloadingTrainingImage" | "Training" | "Uploading" | "Stopping" | "Stopped" | "MaxRuntimeExceeded" | "Completed" | "Failed" | "Interrupted" | "MaxWaitTimeExceeded" | "Updating" | "Restarting" | "Pending")
         
     | 
| 
       10108 
10118 
     | 
    
         
             
                  attr_accessor failure_reason: ::String
         
     | 
| 
       10109 
10119 
     | 
    
         
             
                  attr_accessor hyper_parameters: ::Hash[::String, ::String]
         
     | 
| 
         @@ -10168,7 +10178,7 @@ module Aws::SageMaker 
     | 
|
| 
       10168 
10178 
     | 
    
         
             
                  attr_accessor creation_time: ::Time
         
     | 
| 
       10169 
10179 
     | 
    
         
             
                  attr_accessor training_end_time: ::Time
         
     | 
| 
       10170 
10180 
     | 
    
         
             
                  attr_accessor last_modified_time: ::Time
         
     | 
| 
       10171 
     | 
    
         
            -
                  attr_accessor training_job_status: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped")
         
     | 
| 
      
 10181 
     | 
    
         
            +
                  attr_accessor training_job_status: ("InProgress" | "Completed" | "Failed" | "Stopping" | "Stopped" | "Deleting")
         
     | 
| 
       10172 
10182 
     | 
    
         
             
                  attr_accessor secondary_status: ("Starting" | "LaunchingMLInstances" | "PreparingTrainingStack" | "Downloading" | "DownloadingTrainingImage" | "Training" | "Uploading" | "Stopping" | "Stopped" | "MaxRuntimeExceeded" | "Completed" | "Failed" | "Interrupted" | "MaxWaitTimeExceeded" | "Updating" | "Restarting" | "Pending")
         
     | 
| 
       10173 
10183 
     | 
    
         
             
                  attr_accessor warm_pool_status: Types::WarmPoolStatus
         
     | 
| 
       10174 
10184 
     | 
    
         
             
                  attr_accessor training_plan_arn: ::String
         
     | 
| 
         @@ -10950,6 +10960,7 @@ module Aws::SageMaker 
     | 
|
| 
       10950 
10960 
     | 
    
         
             
                  attr_accessor notebook_instance_name: ::String
         
     | 
| 
       10951 
10961 
     | 
    
         
             
                  attr_accessor instance_type: ("ml.t2.medium" | "ml.t2.large" | "ml.t2.xlarge" | "ml.t2.2xlarge" | "ml.t3.medium" | "ml.t3.large" | "ml.t3.xlarge" | "ml.t3.2xlarge" | "ml.m4.xlarge" | "ml.m4.2xlarge" | "ml.m4.4xlarge" | "ml.m4.10xlarge" | "ml.m4.16xlarge" | "ml.m5.xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.12xlarge" | "ml.m5.24xlarge" | "ml.m5d.large" | "ml.m5d.xlarge" | "ml.m5d.2xlarge" | "ml.m5d.4xlarge" | "ml.m5d.8xlarge" | "ml.m5d.12xlarge" | "ml.m5d.16xlarge" | "ml.m5d.24xlarge" | "ml.c4.xlarge" | "ml.c4.2xlarge" | "ml.c4.4xlarge" | "ml.c4.8xlarge" | "ml.c5.xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.18xlarge" | "ml.c5d.xlarge" | "ml.c5d.2xlarge" | "ml.c5d.4xlarge" | "ml.c5d.9xlarge" | "ml.c5d.18xlarge" | "ml.p2.xlarge" | "ml.p2.8xlarge" | "ml.p2.16xlarge" | "ml.p3.2xlarge" | "ml.p3.8xlarge" | "ml.p3.16xlarge" | "ml.p3dn.24xlarge" | "ml.g4dn.xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.r5.large" | "ml.r5.xlarge" | "ml.r5.2xlarge" | "ml.r5.4xlarge" | "ml.r5.8xlarge" | "ml.r5.12xlarge" | "ml.r5.16xlarge" | "ml.r5.24xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.16xlarge" | "ml.g5.12xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.inf1.xlarge" | "ml.inf1.2xlarge" | "ml.inf1.6xlarge" | "ml.inf1.24xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "ml.inf2.xlarge" | "ml.inf2.8xlarge" | "ml.inf2.24xlarge" | "ml.inf2.48xlarge" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.p5.48xlarge" | "ml.p6-b200.48xlarge" | "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.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.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.c7i.large" | "ml.c7i.xlarge" | "ml.c7i.2xlarge" | "ml.c7i.4xlarge" | "ml.c7i.8xlarge" | "ml.c7i.12xlarge" | "ml.c7i.16xlarge" | "ml.c7i.24xlarge" | "ml.c7i.48xlarge" | "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.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.m6id.large" | "ml.m6id.xlarge" | "ml.m6id.2xlarge" | "ml.m6id.4xlarge" | "ml.m6id.8xlarge" | "ml.m6id.12xlarge" | "ml.m6id.16xlarge" | "ml.m6id.24xlarge" | "ml.m6id.32xlarge" | "ml.c6id.large" | "ml.c6id.xlarge" | "ml.c6id.2xlarge" | "ml.c6id.4xlarge" | "ml.c6id.8xlarge" | "ml.c6id.12xlarge" | "ml.c6id.16xlarge" | "ml.c6id.24xlarge" | "ml.c6id.32xlarge" | "ml.r6id.large" | "ml.r6id.xlarge" | "ml.r6id.2xlarge" | "ml.r6id.4xlarge" | "ml.r6id.8xlarge" | "ml.r6id.12xlarge" | "ml.r6id.16xlarge" | "ml.r6id.24xlarge" | "ml.r6id.32xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.12xlarge" | "ml.g6.16xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge")
         
     | 
| 
       10952 
10962 
     | 
    
         
             
                  attr_accessor ip_address_type: ("ipv4" | "dualstack")
         
     | 
| 
      
 10963 
     | 
    
         
            +
                  attr_accessor platform_identifier: ::String
         
     | 
| 
       10953 
10964 
     | 
    
         
             
                  attr_accessor role_arn: ::String
         
     | 
| 
       10954 
10965 
     | 
    
         
             
                  attr_accessor lifecycle_config_name: ::String
         
     | 
| 
       10955 
10966 
     | 
    
         
             
                  attr_accessor disassociate_lifecycle_config: bool
         
     |