aws-sdk-sagemaker 1.123.0 → 1.126.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +129 -35
- data/lib/aws-sdk-sagemaker/client_api.rb +17 -0
- data/lib/aws-sdk-sagemaker/types.rb +344 -58
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +2 -2
| @@ -355,12 +355,21 @@ module Aws::SageMaker | |
| 355 355 | 
             
                #
         | 
| 356 356 | 
             
                # @!attribute [rw] training_image
         | 
| 357 357 | 
             
                #   The registry path of the Docker image that contains the training
         | 
| 358 | 
            -
                #   algorithm. For information about docker registry paths for  | 
| 359 | 
            -
                #   algorithms, see [ | 
| 360 | 
            -
                #    | 
| 361 | 
            -
                #   and `registry/repository[@digest]` image | 
| 362 | 
            -
                #    | 
| 363 | 
            -
                #   SageMaker][2].
         | 
| 358 | 
            +
                #   algorithm. For information about docker registry paths for SageMaker
         | 
| 359 | 
            +
                #   built-in algorithms, see [Docker Registry Paths and Example Code][1]
         | 
| 360 | 
            +
                #   in the *Amazon SageMaker developer guide*. SageMaker supports both
         | 
| 361 | 
            +
                #   `registry/repository[:tag]` and `registry/repository[@digest]` image
         | 
| 362 | 
            +
                #   path formats. For more information about using your custom training
         | 
| 363 | 
            +
                #   container, see [Using Your Own Algorithms with Amazon SageMaker][2].
         | 
| 364 | 
            +
                #
         | 
| 365 | 
            +
                #   <note markdown="1"> You must specify either the algorithm name to the `AlgorithmName`
         | 
| 366 | 
            +
                #   parameter or the image URI of the algorithm container to the
         | 
| 367 | 
            +
                #   `TrainingImage` parameter.
         | 
| 368 | 
            +
                #
         | 
| 369 | 
            +
                #    For more information, see the note in the `AlgorithmName` parameter
         | 
| 370 | 
            +
                #   description.
         | 
| 371 | 
            +
                #
         | 
| 372 | 
            +
                #    </note>
         | 
| 364 373 | 
             
                #
         | 
| 365 374 | 
             
                #
         | 
| 366 375 | 
             
                #
         | 
| @@ -371,8 +380,22 @@ module Aws::SageMaker | |
| 371 380 | 
             
                # @!attribute [rw] algorithm_name
         | 
| 372 381 | 
             
                #   The name of the algorithm resource to use for the training job. This
         | 
| 373 382 | 
             
                #   must be an algorithm resource that you created or subscribe to on
         | 
| 374 | 
            -
                #   Amazon Web Services Marketplace. | 
| 375 | 
            -
                # | 
| 383 | 
            +
                #   Amazon Web Services Marketplace.
         | 
| 384 | 
            +
                #
         | 
| 385 | 
            +
                #   <note markdown="1"> You must specify either the algorithm name to the `AlgorithmName`
         | 
| 386 | 
            +
                #   parameter or the image URI of the algorithm container to the
         | 
| 387 | 
            +
                #   `TrainingImage` parameter.
         | 
| 388 | 
            +
                #
         | 
| 389 | 
            +
                #    Note that the `AlgorithmName` parameter is mutually exclusive with
         | 
| 390 | 
            +
                #   the `TrainingImage` parameter. If you specify a value for the
         | 
| 391 | 
            +
                #   `AlgorithmName` parameter, you can't specify a value for
         | 
| 392 | 
            +
                #   `TrainingImage`, and vice versa.
         | 
| 393 | 
            +
                #
         | 
| 394 | 
            +
                #    If you specify values for both parameters, the training job might
         | 
| 395 | 
            +
                #   break; if you don't specify any value for both parameters, the
         | 
| 396 | 
            +
                #   training job might raise a `null` error.
         | 
| 397 | 
            +
                #
         | 
| 398 | 
            +
                #    </note>
         | 
| 376 399 | 
             
                #   @return [String]
         | 
| 377 400 | 
             
                #
         | 
| 378 401 | 
             
                # @!attribute [rw] training_input_mode
         | 
| @@ -2007,6 +2030,38 @@ module Aws::SageMaker | |
| 2007 2030 | 
             
                  include Aws::Structure
         | 
| 2008 2031 | 
             
                end
         | 
| 2009 2032 |  | 
| 2033 | 
            +
                # Stores the config information for how a candidate is generated
         | 
| 2034 | 
            +
                # (optional).
         | 
| 2035 | 
            +
                #
         | 
| 2036 | 
            +
                # @note When making an API call, you may pass AutoMLCandidateGenerationConfig
         | 
| 2037 | 
            +
                #   data as a hash:
         | 
| 2038 | 
            +
                #
         | 
| 2039 | 
            +
                #       {
         | 
| 2040 | 
            +
                #         feature_specification_s3_uri: "S3Uri",
         | 
| 2041 | 
            +
                #       }
         | 
| 2042 | 
            +
                #
         | 
| 2043 | 
            +
                # @!attribute [rw] feature_specification_s3_uri
         | 
| 2044 | 
            +
                #   A URL to the Amazon S3 data source containing selected features from
         | 
| 2045 | 
            +
                #   the input data source to run an Autopilot job (optional). This file
         | 
| 2046 | 
            +
                #   should be in json format as shown below:
         | 
| 2047 | 
            +
                #
         | 
| 2048 | 
            +
                #   `\{ "FeatureAttributeNames":["col1", "col2", ...] \}`.
         | 
| 2049 | 
            +
                #
         | 
| 2050 | 
            +
                #   The key name `FeatureAttributeNames` is fixed. The values listed in
         | 
| 2051 | 
            +
                #   `["col1", "col2", ...]` is case sensitive and should be a list of
         | 
| 2052 | 
            +
                #   strings containing unique values that are a subset of the column
         | 
| 2053 | 
            +
                #   names in the input data. The list of columns provided must not
         | 
| 2054 | 
            +
                #   include the target column.
         | 
| 2055 | 
            +
                #   @return [String]
         | 
| 2056 | 
            +
                #
         | 
| 2057 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AutoMLCandidateGenerationConfig AWS API Documentation
         | 
| 2058 | 
            +
                #
         | 
| 2059 | 
            +
                class AutoMLCandidateGenerationConfig < Struct.new(
         | 
| 2060 | 
            +
                  :feature_specification_s3_uri)
         | 
| 2061 | 
            +
                  SENSITIVE = []
         | 
| 2062 | 
            +
                  include Aws::Structure
         | 
| 2063 | 
            +
                end
         | 
| 2064 | 
            +
             | 
| 2010 2065 | 
             
                # Information about the steps for a candidate and what step it is
         | 
| 2011 2066 | 
             
                # working on.
         | 
| 2012 2067 | 
             
                #
         | 
| @@ -2079,9 +2134,15 @@ module Aws::SageMaker | |
| 2079 2134 | 
             
                #   @return [String]
         | 
| 2080 2135 | 
             
                #
         | 
| 2081 2136 | 
             
                # @!attribute [rw] channel_type
         | 
| 2082 | 
            -
                #   The channel type (optional) is an enum string. The default value | 
| 2083 | 
            -
                #   `training`. Channels for training and validation must share the | 
| 2084 | 
            -
                #   `ContentType` and `TargetAttributeName`.
         | 
| 2137 | 
            +
                #   The channel type (optional) is an `enum` string. The default value
         | 
| 2138 | 
            +
                #   is `training`. Channels for training and validation must share the
         | 
| 2139 | 
            +
                #   same `ContentType` and `TargetAttributeName`. For information on
         | 
| 2140 | 
            +
                #   specifying training and validation channel types, see [ `How to
         | 
| 2141 | 
            +
                #   specify training and validation datasets` ][1].
         | 
| 2142 | 
            +
                #
         | 
| 2143 | 
            +
                #
         | 
| 2144 | 
            +
                #
         | 
| 2145 | 
            +
                #   [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-datasets-problem-types.html#autopilot-data-sources-training-or-validation
         | 
| 2085 2146 | 
             
                #   @return [String]
         | 
| 2086 2147 | 
             
                #
         | 
| 2087 2148 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AutoMLChannel AWS API Documentation
         | 
| @@ -2165,8 +2226,8 @@ module Aws::SageMaker | |
| 2165 2226 | 
             
                # @!attribute [rw] validation_fraction
         | 
| 2166 2227 | 
             
                #   The validation fraction (optional) is a float that specifies the
         | 
| 2167 2228 | 
             
                #   portion of the training dataset to be used for validation. The
         | 
| 2168 | 
            -
                #   default value is 0.2, and values  | 
| 2169 | 
            -
                #   setting this value to be less than 0.5.
         | 
| 2229 | 
            +
                #   default value is 0.2, and values must be greater than 0 and less
         | 
| 2230 | 
            +
                #   than 1. We recommend setting this value to be less than 0.5.
         | 
| 2170 2231 | 
             
                #   @return [Float]
         | 
| 2171 2232 | 
             
                #
         | 
| 2172 2233 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AutoMLDataSplitConfig AWS API Documentation
         | 
| @@ -2261,6 +2322,9 @@ module Aws::SageMaker | |
| 2261 2322 | 
             
                #         data_split_config: {
         | 
| 2262 2323 | 
             
                #           validation_fraction: 1.0,
         | 
| 2263 2324 | 
             
                #         },
         | 
| 2325 | 
            +
                #         candidate_generation_config: {
         | 
| 2326 | 
            +
                #           feature_specification_s3_uri: "S3Uri",
         | 
| 2327 | 
            +
                #         },
         | 
| 2264 2328 | 
             
                #       }
         | 
| 2265 2329 | 
             
                #
         | 
| 2266 2330 | 
             
                # @!attribute [rw] completion_criteria
         | 
| @@ -2279,12 +2343,18 @@ module Aws::SageMaker | |
| 2279 2343 | 
             
                #   Type: AutoMLDataSplitConfig
         | 
| 2280 2344 | 
             
                #   @return [Types::AutoMLDataSplitConfig]
         | 
| 2281 2345 | 
             
                #
         | 
| 2346 | 
            +
                # @!attribute [rw] candidate_generation_config
         | 
| 2347 | 
            +
                #   The configuration for generating a candidate for an AutoML job
         | 
| 2348 | 
            +
                #   (optional).
         | 
| 2349 | 
            +
                #   @return [Types::AutoMLCandidateGenerationConfig]
         | 
| 2350 | 
            +
                #
         | 
| 2282 2351 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AutoMLJobConfig AWS API Documentation
         | 
| 2283 2352 | 
             
                #
         | 
| 2284 2353 | 
             
                class AutoMLJobConfig < Struct.new(
         | 
| 2285 2354 | 
             
                  :completion_criteria,
         | 
| 2286 2355 | 
             
                  :security_config,
         | 
| 2287 | 
            -
                  :data_split_config | 
| 2356 | 
            +
                  :data_split_config,
         | 
| 2357 | 
            +
                  :candidate_generation_config)
         | 
| 2288 2358 | 
             
                  SENSITIVE = []
         | 
| 2289 2359 | 
             
                  include Aws::Structure
         | 
| 2290 2360 | 
             
                end
         | 
| @@ -2888,6 +2958,10 @@ module Aws::SageMaker | |
| 2888 2958 | 
             
                  include Aws::Structure
         | 
| 2889 2959 | 
             
                end
         | 
| 2890 2960 |  | 
| 2961 | 
            +
                # Configuration specifying how to treat different headers. If no headers
         | 
| 2962 | 
            +
                # are specified SageMaker will by default base64 encode when capturing
         | 
| 2963 | 
            +
                # the data.
         | 
| 2964 | 
            +
                #
         | 
| 2891 2965 | 
             
                # @note When making an API call, you may pass CaptureContentTypeHeader
         | 
| 2892 2966 | 
             
                #   data as a hash:
         | 
| 2893 2967 | 
             
                #
         | 
| @@ -2897,9 +2971,13 @@ module Aws::SageMaker | |
| 2897 2971 | 
             
                #       }
         | 
| 2898 2972 | 
             
                #
         | 
| 2899 2973 | 
             
                # @!attribute [rw] csv_content_types
         | 
| 2974 | 
            +
                #   The list of all content type headers that SageMaker will treat as
         | 
| 2975 | 
            +
                #   CSV and capture accordingly.
         | 
| 2900 2976 | 
             
                #   @return [Array<String>]
         | 
| 2901 2977 | 
             
                #
         | 
| 2902 2978 | 
             
                # @!attribute [rw] json_content_types
         | 
| 2979 | 
            +
                #   The list of all content type headers that SageMaker will treat as
         | 
| 2980 | 
            +
                #   JSON and capture accordingly.
         | 
| 2903 2981 | 
             
                #   @return [Array<String>]
         | 
| 2904 2982 | 
             
                #
         | 
| 2905 2983 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CaptureContentTypeHeader AWS API Documentation
         | 
| @@ -2911,6 +2989,8 @@ module Aws::SageMaker | |
| 2911 2989 | 
             
                  include Aws::Structure
         | 
| 2912 2990 | 
             
                end
         | 
| 2913 2991 |  | 
| 2992 | 
            +
                # Specifies data Model Monitor will capture.
         | 
| 2993 | 
            +
                #
         | 
| 2914 2994 | 
             
                # @note When making an API call, you may pass CaptureOption
         | 
| 2915 2995 | 
             
                #   data as a hash:
         | 
| 2916 2996 | 
             
                #
         | 
| @@ -2919,6 +2999,7 @@ module Aws::SageMaker | |
| 2919 2999 | 
             
                #       }
         | 
| 2920 3000 | 
             
                #
         | 
| 2921 3001 | 
             
                # @!attribute [rw] capture_mode
         | 
| 3002 | 
            +
                #   Specify the boundary of data to capture.
         | 
| 2922 3003 | 
             
                #   @return [String]
         | 
| 2923 3004 | 
             
                #
         | 
| 2924 3005 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CaptureOption AWS API Documentation
         | 
| @@ -4271,7 +4352,7 @@ module Aws::SageMaker | |
| 4271 4352 | 
             
                #         resource_spec: {
         | 
| 4272 4353 | 
             
                #           sage_maker_image_arn: "ImageArn",
         | 
| 4273 4354 | 
             
                #           sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 4274 | 
            -
                #           instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 4355 | 
            +
                #           instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 4275 4356 | 
             
                #           lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 4276 4357 | 
             
                #         },
         | 
| 4277 4358 | 
             
                #       }
         | 
| @@ -4455,6 +4536,9 @@ module Aws::SageMaker | |
| 4455 4536 | 
             
                #           data_split_config: {
         | 
| 4456 4537 | 
             
                #             validation_fraction: 1.0,
         | 
| 4457 4538 | 
             
                #           },
         | 
| 4539 | 
            +
                #           candidate_generation_config: {
         | 
| 4540 | 
            +
                #             feature_specification_s3_uri: "S3Uri",
         | 
| 4541 | 
            +
                #           },
         | 
| 4458 4542 | 
             
                #         },
         | 
| 4459 4543 | 
             
                #         role_arn: "RoleArn", # required
         | 
| 4460 4544 | 
             
                #         generate_candidate_definitions_only: false,
         | 
| @@ -4478,8 +4562,9 @@ module Aws::SageMaker | |
| 4478 4562 | 
             
                # @!attribute [rw] input_data_config
         | 
| 4479 4563 | 
             
                #   An array of channel objects that describes the input data and its
         | 
| 4480 4564 | 
             
                #   location. Each channel is a named input source. Similar to
         | 
| 4481 | 
            -
                #   `InputDataConfig` supported by . Format(s) supported: CSV. | 
| 4482 | 
            -
                #   of 500 rows.
         | 
| 4565 | 
            +
                #   `InputDataConfig` supported by . Format(s) supported: CSV, Parquet.
         | 
| 4566 | 
            +
                #   A minimum of 500 rows is required for the training dataset. There is
         | 
| 4567 | 
            +
                #   not a minimum number of rows required for the validation dataset.
         | 
| 4483 4568 | 
             
                #   @return [Array<Types::AutoMLChannel>]
         | 
| 4484 4569 | 
             
                #
         | 
| 4485 4570 | 
             
                # @!attribute [rw] output_data_config
         | 
| @@ -4490,10 +4575,8 @@ module Aws::SageMaker | |
| 4490 4575 | 
             
                #
         | 
| 4491 4576 | 
             
                # @!attribute [rw] problem_type
         | 
| 4492 4577 | 
             
                #   Defines the type of supervised learning available for the
         | 
| 4493 | 
            -
                #   candidates.  | 
| 4494 | 
            -
                #    | 
| 4495 | 
            -
                #   see [ Amazon SageMaker Autopilot problem types and algorithm
         | 
| 4496 | 
            -
                #   support][1].
         | 
| 4578 | 
            +
                #   candidates. For more information, see [ Amazon SageMaker Autopilot
         | 
| 4579 | 
            +
                #   problem types and algorithm support][1].
         | 
| 4497 4580 | 
             
                #
         | 
| 4498 4581 | 
             
                #
         | 
| 4499 4582 | 
             
                #
         | 
| @@ -4507,8 +4590,7 @@ module Aws::SageMaker | |
| 4507 4590 | 
             
                #   @return [Types::AutoMLJobObjective]
         | 
| 4508 4591 | 
             
                #
         | 
| 4509 4592 | 
             
                # @!attribute [rw] auto_ml_job_config
         | 
| 4510 | 
            -
                #    | 
| 4511 | 
            -
                #   AutoML job.
         | 
| 4593 | 
            +
                #   A collection of settings used to configure an AutoML job.
         | 
| 4512 4594 | 
             
                #   @return [Types::AutoMLJobConfig]
         | 
| 4513 4595 | 
             
                #
         | 
| 4514 4596 | 
             
                # @!attribute [rw] role_arn
         | 
| @@ -5085,7 +5167,7 @@ module Aws::SageMaker | |
| 5085 5167 | 
             
                #             default_resource_spec: {
         | 
| 5086 5168 | 
             
                #               sage_maker_image_arn: "ImageArn",
         | 
| 5087 5169 | 
             
                #               sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 5088 | 
            -
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 5170 | 
            +
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 5089 5171 | 
             
                #               lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 5090 5172 | 
             
                #             },
         | 
| 5091 5173 | 
             
                #             lifecycle_config_arns: ["StudioLifecycleConfigArn"],
         | 
| @@ -5094,7 +5176,7 @@ module Aws::SageMaker | |
| 5094 5176 | 
             
                #             default_resource_spec: {
         | 
| 5095 5177 | 
             
                #               sage_maker_image_arn: "ImageArn",
         | 
| 5096 5178 | 
             
                #               sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 5097 | 
            -
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 5179 | 
            +
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 5098 5180 | 
             
                #               lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 5099 5181 | 
             
                #             },
         | 
| 5100 5182 | 
             
                #             custom_images: [
         | 
| @@ -5110,7 +5192,7 @@ module Aws::SageMaker | |
| 5110 5192 | 
             
                #             default_resource_spec: {
         | 
| 5111 5193 | 
             
                #               sage_maker_image_arn: "ImageArn",
         | 
| 5112 5194 | 
             
                #               sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 5113 | 
            -
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 5195 | 
            +
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 5114 5196 | 
             
                #               lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 5115 5197 | 
             
                #             },
         | 
| 5116 5198 | 
             
                #           },
         | 
| @@ -5119,6 +5201,19 @@ module Aws::SageMaker | |
| 5119 5201 | 
             
                #             user_group: "R_STUDIO_ADMIN", # accepts R_STUDIO_ADMIN, R_STUDIO_USER
         | 
| 5120 5202 | 
             
                #           },
         | 
| 5121 5203 | 
             
                #           r_session_app_settings: {
         | 
| 5204 | 
            +
                #             default_resource_spec: {
         | 
| 5205 | 
            +
                #               sage_maker_image_arn: "ImageArn",
         | 
| 5206 | 
            +
                #               sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 5207 | 
            +
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 5208 | 
            +
                #               lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 5209 | 
            +
                #             },
         | 
| 5210 | 
            +
                #             custom_images: [
         | 
| 5211 | 
            +
                #               {
         | 
| 5212 | 
            +
                #                 image_name: "ImageName", # required
         | 
| 5213 | 
            +
                #                 image_version_number: 1,
         | 
| 5214 | 
            +
                #                 app_image_config_name: "AppImageConfigName", # required
         | 
| 5215 | 
            +
                #               },
         | 
| 5216 | 
            +
                #             ],
         | 
| 5122 5217 | 
             
                #           },
         | 
| 5123 5218 | 
             
                #         },
         | 
| 5124 5219 | 
             
                #         subnet_ids: ["SubnetId"], # required
         | 
| @@ -5142,7 +5237,7 @@ module Aws::SageMaker | |
| 5142 5237 | 
             
                #             default_resource_spec: {
         | 
| 5143 5238 | 
             
                #               sage_maker_image_arn: "ImageArn",
         | 
| 5144 5239 | 
             
                #               sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 5145 | 
            -
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 5240 | 
            +
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 5146 5241 | 
             
                #               lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 5147 5242 | 
             
                #             },
         | 
| 5148 5243 | 
             
                #           },
         | 
| @@ -5401,6 +5496,7 @@ module Aws::SageMaker | |
| 5401 5496 | 
             
                #   @return [Array<Types::ProductionVariant>]
         | 
| 5402 5497 | 
             
                #
         | 
| 5403 5498 | 
             
                # @!attribute [rw] data_capture_config
         | 
| 5499 | 
            +
                #   Configuration to control how SageMaker captures inference data.
         | 
| 5404 5500 | 
             
                #   @return [Types::DataCaptureConfig]
         | 
| 5405 5501 | 
             
                #
         | 
| 5406 5502 | 
             
                # @!attribute [rw] tags
         | 
| @@ -7744,7 +7840,12 @@ module Aws::SageMaker | |
| 7744 7840 | 
             
                # @!attribute [rw] task
         | 
| 7745 7841 | 
             
                #   The machine learning task your model package accomplishes. Common
         | 
| 7746 7842 | 
             
                #   machine learning tasks include object detection and image
         | 
| 7747 | 
            -
                #   classification.
         | 
| 7843 | 
            +
                #   classification. The following tasks are supported by Inference
         | 
| 7844 | 
            +
                #   Recommender: `"IMAGE_CLASSIFICATION"` \| `"OBJECT_DETECTION"` \|
         | 
| 7845 | 
            +
                #   `"TEXT_GENERATION"` \|`"IMAGE_SEGMENTATION"` \| `"FILL_MASK"` \|
         | 
| 7846 | 
            +
                #   `"CLASSIFICATION"` \| `"REGRESSION"` \| `"OTHER"`.
         | 
| 7847 | 
            +
                #
         | 
| 7848 | 
            +
                #   Specify "OTHER" if none of the tasks listed fit your use case.
         | 
| 7748 7849 | 
             
                #   @return [String]
         | 
| 7749 7850 | 
             
                #
         | 
| 7750 7851 | 
             
                # @!attribute [rw] sample_payload_url
         | 
| @@ -8106,6 +8207,9 @@ module Aws::SageMaker | |
| 8106 8207 | 
             
                #         additional_code_repositories: ["CodeRepositoryNameOrUrl"],
         | 
| 8107 8208 | 
             
                #         root_access: "Enabled", # accepts Enabled, Disabled
         | 
| 8108 8209 | 
             
                #         platform_identifier: "PlatformIdentifier",
         | 
| 8210 | 
            +
                #         instance_metadata_service_configuration: {
         | 
| 8211 | 
            +
                #           minimum_instance_metadata_service_version: "MinimumInstanceMetadataServiceVersion", # required
         | 
| 8212 | 
            +
                #         },
         | 
| 8109 8213 | 
             
                #       }
         | 
| 8110 8214 | 
             
                #
         | 
| 8111 8215 | 
             
                # @!attribute [rw] notebook_instance_name
         | 
| @@ -8258,6 +8362,10 @@ module Aws::SageMaker | |
| 8258 8362 | 
             
                #   environment.
         | 
| 8259 8363 | 
             
                #   @return [String]
         | 
| 8260 8364 | 
             
                #
         | 
| 8365 | 
            +
                # @!attribute [rw] instance_metadata_service_configuration
         | 
| 8366 | 
            +
                #   Information on the IMDS configuration of the notebook instance
         | 
| 8367 | 
            +
                #   @return [Types::InstanceMetadataServiceConfiguration]
         | 
| 8368 | 
            +
                #
         | 
| 8261 8369 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateNotebookInstanceInput AWS API Documentation
         | 
| 8262 8370 | 
             
                #
         | 
| 8263 8371 | 
             
                class CreateNotebookInstanceInput < Struct.new(
         | 
| @@ -8275,7 +8383,8 @@ module Aws::SageMaker | |
| 8275 8383 | 
             
                  :default_code_repository,
         | 
| 8276 8384 | 
             
                  :additional_code_repositories,
         | 
| 8277 8385 | 
             
                  :root_access,
         | 
| 8278 | 
            -
                  :platform_identifier | 
| 8386 | 
            +
                  :platform_identifier,
         | 
| 8387 | 
            +
                  :instance_metadata_service_configuration)
         | 
| 8279 8388 | 
             
                  SENSITIVE = []
         | 
| 8280 8389 | 
             
                  include Aws::Structure
         | 
| 8281 8390 | 
             
                end
         | 
| @@ -9716,7 +9825,7 @@ module Aws::SageMaker | |
| 9716 9825 | 
             
                #             default_resource_spec: {
         | 
| 9717 9826 | 
             
                #               sage_maker_image_arn: "ImageArn",
         | 
| 9718 9827 | 
             
                #               sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 9719 | 
            -
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 9828 | 
            +
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 9720 9829 | 
             
                #               lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 9721 9830 | 
             
                #             },
         | 
| 9722 9831 | 
             
                #             lifecycle_config_arns: ["StudioLifecycleConfigArn"],
         | 
| @@ -9725,7 +9834,7 @@ module Aws::SageMaker | |
| 9725 9834 | 
             
                #             default_resource_spec: {
         | 
| 9726 9835 | 
             
                #               sage_maker_image_arn: "ImageArn",
         | 
| 9727 9836 | 
             
                #               sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 9728 | 
            -
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 9837 | 
            +
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 9729 9838 | 
             
                #               lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 9730 9839 | 
             
                #             },
         | 
| 9731 9840 | 
             
                #             custom_images: [
         | 
| @@ -9741,7 +9850,7 @@ module Aws::SageMaker | |
| 9741 9850 | 
             
                #             default_resource_spec: {
         | 
| 9742 9851 | 
             
                #               sage_maker_image_arn: "ImageArn",
         | 
| 9743 9852 | 
             
                #               sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 9744 | 
            -
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 9853 | 
            +
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 9745 9854 | 
             
                #               lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 9746 9855 | 
             
                #             },
         | 
| 9747 9856 | 
             
                #           },
         | 
| @@ -9750,6 +9859,19 @@ module Aws::SageMaker | |
| 9750 9859 | 
             
                #             user_group: "R_STUDIO_ADMIN", # accepts R_STUDIO_ADMIN, R_STUDIO_USER
         | 
| 9751 9860 | 
             
                #           },
         | 
| 9752 9861 | 
             
                #           r_session_app_settings: {
         | 
| 9862 | 
            +
                #             default_resource_spec: {
         | 
| 9863 | 
            +
                #               sage_maker_image_arn: "ImageArn",
         | 
| 9864 | 
            +
                #               sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 9865 | 
            +
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 9866 | 
            +
                #               lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 9867 | 
            +
                #             },
         | 
| 9868 | 
            +
                #             custom_images: [
         | 
| 9869 | 
            +
                #               {
         | 
| 9870 | 
            +
                #                 image_name: "ImageName", # required
         | 
| 9871 | 
            +
                #                 image_version_number: 1,
         | 
| 9872 | 
            +
                #                 app_image_config_name: "AppImageConfigName", # required
         | 
| 9873 | 
            +
                #               },
         | 
| 9874 | 
            +
                #             ],
         | 
| 9753 9875 | 
             
                #           },
         | 
| 9754 9876 | 
             
                #         },
         | 
| 9755 9877 | 
             
                #       }
         | 
| @@ -10061,6 +10183,8 @@ module Aws::SageMaker | |
| 10061 10183 | 
             
                  include Aws::Structure
         | 
| 10062 10184 | 
             
                end
         | 
| 10063 10185 |  | 
| 10186 | 
            +
                # Configuration to control how SageMaker captures inference data.
         | 
| 10187 | 
            +
                #
         | 
| 10064 10188 | 
             
                # @note When making an API call, you may pass DataCaptureConfig
         | 
| 10065 10189 | 
             
                #   data as a hash:
         | 
| 10066 10190 | 
             
                #
         | 
| @@ -10081,21 +10205,47 @@ module Aws::SageMaker | |
| 10081 10205 | 
             
                #       }
         | 
| 10082 10206 | 
             
                #
         | 
| 10083 10207 | 
             
                # @!attribute [rw] enable_capture
         | 
| 10208 | 
            +
                #   Whether data capture should be enabled or disabled (defaults to
         | 
| 10209 | 
            +
                #   enabled).
         | 
| 10084 10210 | 
             
                #   @return [Boolean]
         | 
| 10085 10211 | 
             
                #
         | 
| 10086 10212 | 
             
                # @!attribute [rw] initial_sampling_percentage
         | 
| 10213 | 
            +
                #   The percentage of requests SageMaker will capture. A lower value is
         | 
| 10214 | 
            +
                #   recommended for Endpoints with high traffic.
         | 
| 10087 10215 | 
             
                #   @return [Integer]
         | 
| 10088 10216 | 
             
                #
         | 
| 10089 10217 | 
             
                # @!attribute [rw] destination_s3_uri
         | 
| 10218 | 
            +
                #   The Amazon S3 location used to capture the data.
         | 
| 10090 10219 | 
             
                #   @return [String]
         | 
| 10091 10220 | 
             
                #
         | 
| 10092 10221 | 
             
                # @!attribute [rw] kms_key_id
         | 
| 10222 | 
            +
                #   The Amazon Resource Name (ARN) of a Amazon Web Services Key
         | 
| 10223 | 
            +
                #   Management Service key that SageMaker uses to encrypt data on the
         | 
| 10224 | 
            +
                #   storage volume attached to the ML compute instance that hosts the
         | 
| 10225 | 
            +
                #   endpoint.
         | 
| 10226 | 
            +
                #
         | 
| 10227 | 
            +
                #   The KmsKeyId can be any of the following formats:
         | 
| 10228 | 
            +
                #
         | 
| 10229 | 
            +
                #   * Key ID: `1234abcd-12ab-34cd-56ef-1234567890ab`
         | 
| 10230 | 
            +
                #
         | 
| 10231 | 
            +
                #   * Key ARN:
         | 
| 10232 | 
            +
                #     `arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab`
         | 
| 10233 | 
            +
                #
         | 
| 10234 | 
            +
                #   * Alias name: `alias/ExampleAlias`
         | 
| 10235 | 
            +
                #
         | 
| 10236 | 
            +
                #   * Alias name ARN:
         | 
| 10237 | 
            +
                #     `arn:aws:kms:us-west-2:111122223333:alias/ExampleAlias`
         | 
| 10093 10238 | 
             
                #   @return [String]
         | 
| 10094 10239 | 
             
                #
         | 
| 10095 10240 | 
             
                # @!attribute [rw] capture_options
         | 
| 10241 | 
            +
                #   Specifies data Model Monitor will capture. You can configure whether
         | 
| 10242 | 
            +
                #   to collect only input, only output, or both
         | 
| 10096 10243 | 
             
                #   @return [Array<Types::CaptureOption>]
         | 
| 10097 10244 | 
             
                #
         | 
| 10098 10245 | 
             
                # @!attribute [rw] capture_content_type_header
         | 
| 10246 | 
            +
                #   Configuration specifying how to treat different headers. If no
         | 
| 10247 | 
            +
                #   headers are specified SageMaker will by default base64 encode when
         | 
| 10248 | 
            +
                #   capturing the data.
         | 
| 10099 10249 | 
             
                #   @return [Types::CaptureContentTypeHeader]
         | 
| 10100 10250 | 
             
                #
         | 
| 10101 10251 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DataCaptureConfig AWS API Documentation
         | 
| @@ -10111,19 +10261,26 @@ module Aws::SageMaker | |
| 10111 10261 | 
             
                  include Aws::Structure
         | 
| 10112 10262 | 
             
                end
         | 
| 10113 10263 |  | 
| 10264 | 
            +
                # The currently active data capture configuration used by your Endpoint.
         | 
| 10265 | 
            +
                #
         | 
| 10114 10266 | 
             
                # @!attribute [rw] enable_capture
         | 
| 10267 | 
            +
                #   Whether data capture is enabled or disabled.
         | 
| 10115 10268 | 
             
                #   @return [Boolean]
         | 
| 10116 10269 | 
             
                #
         | 
| 10117 10270 | 
             
                # @!attribute [rw] capture_status
         | 
| 10271 | 
            +
                #   Whether data capture is currently functional.
         | 
| 10118 10272 | 
             
                #   @return [String]
         | 
| 10119 10273 | 
             
                #
         | 
| 10120 10274 | 
             
                # @!attribute [rw] current_sampling_percentage
         | 
| 10275 | 
            +
                #   The percentage of requests being captured by your Endpoint.
         | 
| 10121 10276 | 
             
                #   @return [Integer]
         | 
| 10122 10277 | 
             
                #
         | 
| 10123 10278 | 
             
                # @!attribute [rw] destination_s3_uri
         | 
| 10279 | 
            +
                #   The Amazon S3 location being used to capture the data.
         | 
| 10124 10280 | 
             
                #   @return [String]
         | 
| 10125 10281 | 
             
                #
         | 
| 10126 10282 | 
             
                # @!attribute [rw] kms_key_id
         | 
| 10283 | 
            +
                #   The KMS key being used to encrypt the data in Amazon S3.
         | 
| 10127 10284 | 
             
                #   @return [String]
         | 
| 10128 10285 | 
             
                #
         | 
| 10129 10286 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DataCaptureConfigSummary AWS API Documentation
         | 
| @@ -13107,6 +13264,7 @@ module Aws::SageMaker | |
| 13107 13264 | 
             
                #   @return [Array<Types::ProductionVariant>]
         | 
| 13108 13265 | 
             
                #
         | 
| 13109 13266 | 
             
                # @!attribute [rw] data_capture_config
         | 
| 13267 | 
            +
                #   Configuration to control how SageMaker captures inference data.
         | 
| 13110 13268 | 
             
                #   @return [Types::DataCaptureConfig]
         | 
| 13111 13269 | 
             
                #
         | 
| 13112 13270 | 
             
                # @!attribute [rw] kms_key_id
         | 
| @@ -13179,6 +13337,8 @@ module Aws::SageMaker | |
| 13179 13337 | 
             
                #   @return [Array<Types::ProductionVariantSummary>]
         | 
| 13180 13338 | 
             
                #
         | 
| 13181 13339 | 
             
                # @!attribute [rw] data_capture_config
         | 
| 13340 | 
            +
                #   The currently active data capture configuration used by your
         | 
| 13341 | 
            +
                #   Endpoint.
         | 
| 13182 13342 | 
             
                #   @return [Types::DataCaptureConfigSummary]
         | 
| 13183 13343 | 
             
                #
         | 
| 13184 13344 | 
             
                # @!attribute [rw] endpoint_status
         | 
| @@ -15103,6 +15263,10 @@ module Aws::SageMaker | |
| 15103 15263 | 
             
                #   environment.
         | 
| 15104 15264 | 
             
                #   @return [String]
         | 
| 15105 15265 | 
             
                #
         | 
| 15266 | 
            +
                # @!attribute [rw] instance_metadata_service_configuration
         | 
| 15267 | 
            +
                #   Information on the IMDS configuration of the notebook instance
         | 
| 15268 | 
            +
                #   @return [Types::InstanceMetadataServiceConfiguration]
         | 
| 15269 | 
            +
                #
         | 
| 15106 15270 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeNotebookInstanceOutput AWS API Documentation
         | 
| 15107 15271 | 
             
                #
         | 
| 15108 15272 | 
             
                class DescribeNotebookInstanceOutput < Struct.new(
         | 
| @@ -15126,7 +15290,8 @@ module Aws::SageMaker | |
| 15126 15290 | 
             
                  :default_code_repository,
         | 
| 15127 15291 | 
             
                  :additional_code_repositories,
         | 
| 15128 15292 | 
             
                  :root_access,
         | 
| 15129 | 
            -
                  :platform_identifier | 
| 15293 | 
            +
                  :platform_identifier,
         | 
| 15294 | 
            +
                  :instance_metadata_service_configuration)
         | 
| 15130 15295 | 
             
                  SENSITIVE = []
         | 
| 15131 15296 | 
             
                  include Aws::Structure
         | 
| 15132 15297 | 
             
                end
         | 
| @@ -16853,7 +17018,7 @@ module Aws::SageMaker | |
| 16853 17018 | 
             
                #           default_resource_spec: {
         | 
| 16854 17019 | 
             
                #             sage_maker_image_arn: "ImageArn",
         | 
| 16855 17020 | 
             
                #             sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 16856 | 
            -
                #             instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 17021 | 
            +
                #             instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 16857 17022 | 
             
                #             lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 16858 17023 | 
             
                #           },
         | 
| 16859 17024 | 
             
                #         },
         | 
| @@ -16890,7 +17055,7 @@ module Aws::SageMaker | |
| 16890 17055 | 
             
                #           default_resource_spec: {
         | 
| 16891 17056 | 
             
                #             sage_maker_image_arn: "ImageArn",
         | 
| 16892 17057 | 
             
                #             sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 16893 | 
            -
                #             instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 17058 | 
            +
                #             instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 16894 17059 | 
             
                #             lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 16895 17060 | 
             
                #           },
         | 
| 16896 17061 | 
             
                #         },
         | 
| @@ -17488,6 +17653,8 @@ module Aws::SageMaker | |
| 17488 17653 | 
             
                #   @return [Array<Types::ProductionVariantSummary>]
         | 
| 17489 17654 | 
             
                #
         | 
| 17490 17655 | 
             
                # @!attribute [rw] data_capture_config
         | 
| 17656 | 
            +
                #   The currently active data capture configuration used by your
         | 
| 17657 | 
            +
                #   Endpoint.
         | 
| 17491 17658 | 
             
                #   @return [Types::DataCaptureConfigSummary]
         | 
| 17492 17659 | 
             
                #
         | 
| 17493 17660 | 
             
                # @!attribute [rw] endpoint_status
         | 
| @@ -21478,6 +21645,31 @@ module Aws::SageMaker | |
| 21478 21645 | 
             
                  include Aws::Structure
         | 
| 21479 21646 | 
             
                end
         | 
| 21480 21647 |  | 
| 21648 | 
            +
                # Information on the IMDS configuration of the notebook instance
         | 
| 21649 | 
            +
                #
         | 
| 21650 | 
            +
                # @note When making an API call, you may pass InstanceMetadataServiceConfiguration
         | 
| 21651 | 
            +
                #   data as a hash:
         | 
| 21652 | 
            +
                #
         | 
| 21653 | 
            +
                #       {
         | 
| 21654 | 
            +
                #         minimum_instance_metadata_service_version: "MinimumInstanceMetadataServiceVersion", # required
         | 
| 21655 | 
            +
                #       }
         | 
| 21656 | 
            +
                #
         | 
| 21657 | 
            +
                # @!attribute [rw] minimum_instance_metadata_service_version
         | 
| 21658 | 
            +
                #   Indicates the minimum IMDS version that the notebook instance
         | 
| 21659 | 
            +
                #   supports. When passed as part of `CreateNotebookInstance`, if no
         | 
| 21660 | 
            +
                #   value is selected, then it defaults to IMDSv1. This means that both
         | 
| 21661 | 
            +
                #   IMDSv1 and IMDSv2 are supported. If passed as part of
         | 
| 21662 | 
            +
                #   `UpdateNotebookInstance`, there is no default.
         | 
| 21663 | 
            +
                #   @return [String]
         | 
| 21664 | 
            +
                #
         | 
| 21665 | 
            +
                # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InstanceMetadataServiceConfiguration AWS API Documentation
         | 
| 21666 | 
            +
                #
         | 
| 21667 | 
            +
                class InstanceMetadataServiceConfiguration < Struct.new(
         | 
| 21668 | 
            +
                  :minimum_instance_metadata_service_version)
         | 
| 21669 | 
            +
                  SENSITIVE = []
         | 
| 21670 | 
            +
                  include Aws::Structure
         | 
| 21671 | 
            +
                end
         | 
| 21672 | 
            +
             | 
| 21481 21673 | 
             
                # For a hyperparameter of the integer type, specifies the range that a
         | 
| 21482 21674 | 
             
                # hyperparameter tuning job searches.
         | 
| 21483 21675 | 
             
                #
         | 
| @@ -21579,7 +21771,7 @@ module Aws::SageMaker | |
| 21579 21771 | 
             
                #         default_resource_spec: {
         | 
| 21580 21772 | 
             
                #           sage_maker_image_arn: "ImageArn",
         | 
| 21581 21773 | 
             
                #           sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 21582 | 
            -
                #           instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 21774 | 
            +
                #           instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 21583 21775 | 
             
                #           lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 21584 21776 | 
             
                #         },
         | 
| 21585 21777 | 
             
                #         lifecycle_config_arns: ["StudioLifecycleConfigArn"],
         | 
| @@ -21621,7 +21813,7 @@ module Aws::SageMaker | |
| 21621 21813 | 
             
                #         default_resource_spec: {
         | 
| 21622 21814 | 
             
                #           sage_maker_image_arn: "ImageArn",
         | 
| 21623 21815 | 
             
                #           sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 21624 | 
            -
                #           instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 21816 | 
            +
                #           instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 21625 21817 | 
             
                #           lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 21626 21818 | 
             
                #         },
         | 
| 21627 21819 | 
             
                #         custom_images: [
         | 
| @@ -27363,12 +27555,26 @@ module Aws::SageMaker | |
| 27363 27555 | 
             
                #   The dataset split from which the AutoML job produced the metric.
         | 
| 27364 27556 | 
             
                #   @return [String]
         | 
| 27365 27557 | 
             
                #
         | 
| 27558 | 
            +
                # @!attribute [rw] standard_metric_name
         | 
| 27559 | 
            +
                #   The name of the standard metric.
         | 
| 27560 | 
            +
                #
         | 
| 27561 | 
            +
                #   <note markdown="1"> For definitions of the standard metrics, see [ `Autopilot candidate
         | 
| 27562 | 
            +
                #   metrics` ][1].
         | 
| 27563 | 
            +
                #
         | 
| 27564 | 
            +
                #    </note>
         | 
| 27565 | 
            +
                #
         | 
| 27566 | 
            +
                #
         | 
| 27567 | 
            +
                #
         | 
| 27568 | 
            +
                #   [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-model-support-validation.html#autopilot-metrics
         | 
| 27569 | 
            +
                #   @return [String]
         | 
| 27570 | 
            +
                #
         | 
| 27366 27571 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MetricDatum AWS API Documentation
         | 
| 27367 27572 | 
             
                #
         | 
| 27368 27573 | 
             
                class MetricDatum < Struct.new(
         | 
| 27369 27574 | 
             
                  :metric_name,
         | 
| 27370 27575 | 
             
                  :value,
         | 
| 27371 | 
            -
                  :set | 
| 27576 | 
            +
                  :set,
         | 
| 27577 | 
            +
                  :standard_metric_name)
         | 
| 27372 27578 | 
             
                  SENSITIVE = []
         | 
| 27373 27579 | 
             
                  include Aws::Structure
         | 
| 27374 27580 | 
             
                end
         | 
| @@ -33522,11 +33728,43 @@ module Aws::SageMaker | |
| 33522 33728 |  | 
| 33523 33729 | 
             
                # A collection of settings that apply to an `RSessionGateway` app.
         | 
| 33524 33730 | 
             
                #
         | 
| 33525 | 
            -
                # @ | 
| 33731 | 
            +
                # @note When making an API call, you may pass RSessionAppSettings
         | 
| 33732 | 
            +
                #   data as a hash:
         | 
| 33733 | 
            +
                #
         | 
| 33734 | 
            +
                #       {
         | 
| 33735 | 
            +
                #         default_resource_spec: {
         | 
| 33736 | 
            +
                #           sage_maker_image_arn: "ImageArn",
         | 
| 33737 | 
            +
                #           sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 33738 | 
            +
                #           instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 33739 | 
            +
                #           lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 33740 | 
            +
                #         },
         | 
| 33741 | 
            +
                #         custom_images: [
         | 
| 33742 | 
            +
                #           {
         | 
| 33743 | 
            +
                #             image_name: "ImageName", # required
         | 
| 33744 | 
            +
                #             image_version_number: 1,
         | 
| 33745 | 
            +
                #             app_image_config_name: "AppImageConfigName", # required
         | 
| 33746 | 
            +
                #           },
         | 
| 33747 | 
            +
                #         ],
         | 
| 33748 | 
            +
                #       }
         | 
| 33749 | 
            +
                #
         | 
| 33750 | 
            +
                # @!attribute [rw] default_resource_spec
         | 
| 33751 | 
            +
                #   Specifies the ARN's of a SageMaker image and SageMaker image
         | 
| 33752 | 
            +
                #   version, and the instance type that the version runs on.
         | 
| 33753 | 
            +
                #   @return [Types::ResourceSpec]
         | 
| 33754 | 
            +
                #
         | 
| 33755 | 
            +
                # @!attribute [rw] custom_images
         | 
| 33756 | 
            +
                #   A list of custom SageMaker images that are configured to run as a
         | 
| 33757 | 
            +
                #   RSession app.
         | 
| 33758 | 
            +
                #   @return [Array<Types::CustomImage>]
         | 
| 33526 33759 | 
             
                #
         | 
| 33527 33760 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RSessionAppSettings AWS API Documentation
         | 
| 33528 33761 | 
             
                #
         | 
| 33529 | 
            -
                class RSessionAppSettings <  | 
| 33762 | 
            +
                class RSessionAppSettings < Struct.new(
         | 
| 33763 | 
            +
                  :default_resource_spec,
         | 
| 33764 | 
            +
                  :custom_images)
         | 
| 33765 | 
            +
                  SENSITIVE = []
         | 
| 33766 | 
            +
                  include Aws::Structure
         | 
| 33767 | 
            +
                end
         | 
| 33530 33768 |  | 
| 33531 33769 | 
             
                # A collection of settings that configure user interaction with the
         | 
| 33532 33770 | 
             
                # `RStudioServerPro` app. `RStudioServerProAppSettings` cannot be
         | 
| @@ -33575,7 +33813,7 @@ module Aws::SageMaker | |
| 33575 33813 | 
             
                #         default_resource_spec: {
         | 
| 33576 33814 | 
             
                #           sage_maker_image_arn: "ImageArn",
         | 
| 33577 33815 | 
             
                #           sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 33578 | 
            -
                #           instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 33816 | 
            +
                #           instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 33579 33817 | 
             
                #           lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 33580 33818 | 
             
                #         },
         | 
| 33581 33819 | 
             
                #       }
         | 
| @@ -33620,7 +33858,7 @@ module Aws::SageMaker | |
| 33620 33858 | 
             
                #         default_resource_spec: {
         | 
| 33621 33859 | 
             
                #           sage_maker_image_arn: "ImageArn",
         | 
| 33622 33860 | 
             
                #           sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 33623 | 
            -
                #           instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 33861 | 
            +
                #           instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 33624 33862 | 
             
                #           lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 33625 33863 | 
             
                #         },
         | 
| 33626 33864 | 
             
                #       }
         | 
| @@ -34415,7 +34653,7 @@ module Aws::SageMaker | |
| 34415 34653 | 
             
                #       {
         | 
| 34416 34654 | 
             
                #         sage_maker_image_arn: "ImageArn",
         | 
| 34417 34655 | 
             
                #         sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 34418 | 
            -
                #         instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 34656 | 
            +
                #         instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 34419 34657 | 
             
                #         lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 34420 34658 | 
             
                #       }
         | 
| 34421 34659 | 
             
                #
         | 
| @@ -36240,7 +36478,7 @@ module Aws::SageMaker | |
| 36240 36478 | 
             
                #         default_resource_spec: {
         | 
| 36241 36479 | 
             
                #           sage_maker_image_arn: "ImageArn",
         | 
| 36242 36480 | 
             
                #           sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 36243 | 
            -
                #           instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 36481 | 
            +
                #           instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 36244 36482 | 
             
                #           lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 36245 36483 | 
             
                #         },
         | 
| 36246 36484 | 
             
                #       }
         | 
| @@ -37586,14 +37824,15 @@ module Aws::SageMaker | |
| 37586 37824 | 
             
                #   Simple Storage Service Developer Guide.*
         | 
| 37587 37825 | 
             
                #
         | 
| 37588 37826 | 
             
                #   The KMS key policy must grant permission to the IAM role that you
         | 
| 37589 | 
            -
                #   specify in your CreateModel request. For more information, see
         | 
| 37590 | 
            -
                #   [Using Key Policies in Amazon Web Services KMS][ | 
| 37827 | 
            +
                #   specify in your [CreateModel][2] request. For more information, see
         | 
| 37828 | 
            +
                #   [Using Key Policies in Amazon Web Services KMS][3] in the *Amazon
         | 
| 37591 37829 | 
             
                #   Web Services Key Management Service Developer Guide*.
         | 
| 37592 37830 | 
             
                #
         | 
| 37593 37831 | 
             
                #
         | 
| 37594 37832 | 
             
                #
         | 
| 37595 37833 | 
             
                #   [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingKMSEncryption.html
         | 
| 37596 | 
            -
                #   [2]:  | 
| 37834 | 
            +
                #   [2]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateModel.html
         | 
| 37835 | 
            +
                #   [3]: https://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html
         | 
| 37597 37836 | 
             
                #   @return [String]
         | 
| 37598 37837 | 
             
                #
         | 
| 37599 37838 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TransformOutput AWS API Documentation
         | 
| @@ -38879,7 +39118,7 @@ module Aws::SageMaker | |
| 38879 39118 | 
             
                #             default_resource_spec: {
         | 
| 38880 39119 | 
             
                #               sage_maker_image_arn: "ImageArn",
         | 
| 38881 39120 | 
             
                #               sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 38882 | 
            -
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 39121 | 
            +
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 38883 39122 | 
             
                #               lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 38884 39123 | 
             
                #             },
         | 
| 38885 39124 | 
             
                #             lifecycle_config_arns: ["StudioLifecycleConfigArn"],
         | 
| @@ -38888,7 +39127,7 @@ module Aws::SageMaker | |
| 38888 39127 | 
             
                #             default_resource_spec: {
         | 
| 38889 39128 | 
             
                #               sage_maker_image_arn: "ImageArn",
         | 
| 38890 39129 | 
             
                #               sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 38891 | 
            -
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 39130 | 
            +
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 38892 39131 | 
             
                #               lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 38893 39132 | 
             
                #             },
         | 
| 38894 39133 | 
             
                #             custom_images: [
         | 
| @@ -38904,7 +39143,7 @@ module Aws::SageMaker | |
| 38904 39143 | 
             
                #             default_resource_spec: {
         | 
| 38905 39144 | 
             
                #               sage_maker_image_arn: "ImageArn",
         | 
| 38906 39145 | 
             
                #               sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 38907 | 
            -
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 39146 | 
            +
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 38908 39147 | 
             
                #               lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 38909 39148 | 
             
                #             },
         | 
| 38910 39149 | 
             
                #           },
         | 
| @@ -38913,6 +39152,19 @@ module Aws::SageMaker | |
| 38913 39152 | 
             
                #             user_group: "R_STUDIO_ADMIN", # accepts R_STUDIO_ADMIN, R_STUDIO_USER
         | 
| 38914 39153 | 
             
                #           },
         | 
| 38915 39154 | 
             
                #           r_session_app_settings: {
         | 
| 39155 | 
            +
                #             default_resource_spec: {
         | 
| 39156 | 
            +
                #               sage_maker_image_arn: "ImageArn",
         | 
| 39157 | 
            +
                #               sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 39158 | 
            +
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 39159 | 
            +
                #               lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 39160 | 
            +
                #             },
         | 
| 39161 | 
            +
                #             custom_images: [
         | 
| 39162 | 
            +
                #               {
         | 
| 39163 | 
            +
                #                 image_name: "ImageName", # required
         | 
| 39164 | 
            +
                #                 image_version_number: 1,
         | 
| 39165 | 
            +
                #                 app_image_config_name: "AppImageConfigName", # required
         | 
| 39166 | 
            +
                #               },
         | 
| 39167 | 
            +
                #             ],
         | 
| 38916 39168 | 
             
                #           },
         | 
| 38917 39169 | 
             
                #         },
         | 
| 38918 39170 | 
             
                #         domain_settings_for_update: {
         | 
| @@ -38921,7 +39173,7 @@ module Aws::SageMaker | |
| 38921 39173 | 
             
                #             default_resource_spec: {
         | 
| 38922 39174 | 
             
                #               sage_maker_image_arn: "ImageArn",
         | 
| 38923 39175 | 
             
                #               sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 38924 | 
            -
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 39176 | 
            +
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 38925 39177 | 
             
                #               lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 38926 39178 | 
             
                #             },
         | 
| 38927 39179 | 
             
                #           },
         | 
| @@ -39441,6 +39693,9 @@ module Aws::SageMaker | |
| 39441 39693 | 
             
                #         disassociate_default_code_repository: false,
         | 
| 39442 39694 | 
             
                #         disassociate_additional_code_repositories: false,
         | 
| 39443 39695 | 
             
                #         root_access: "Enabled", # accepts Enabled, Disabled
         | 
| 39696 | 
            +
                #         instance_metadata_service_configuration: {
         | 
| 39697 | 
            +
                #           minimum_instance_metadata_service_version: "MinimumInstanceMetadataServiceVersion", # required
         | 
| 39698 | 
            +
                #         },
         | 
| 39444 39699 | 
             
                #       }
         | 
| 39445 39700 | 
             
                #
         | 
| 39446 39701 | 
             
                # @!attribute [rw] notebook_instance_name
         | 
| @@ -39569,6 +39824,10 @@ module Aws::SageMaker | |
| 39569 39824 | 
             
                #    </note>
         | 
| 39570 39825 | 
             
                #   @return [String]
         | 
| 39571 39826 | 
             
                #
         | 
| 39827 | 
            +
                # @!attribute [rw] instance_metadata_service_configuration
         | 
| 39828 | 
            +
                #   Information on the IMDS configuration of the notebook instance
         | 
| 39829 | 
            +
                #   @return [Types::InstanceMetadataServiceConfiguration]
         | 
| 39830 | 
            +
                #
         | 
| 39572 39831 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateNotebookInstanceInput AWS API Documentation
         | 
| 39573 39832 | 
             
                #
         | 
| 39574 39833 | 
             
                class UpdateNotebookInstanceInput < Struct.new(
         | 
| @@ -39584,7 +39843,8 @@ module Aws::SageMaker | |
| 39584 39843 | 
             
                  :disassociate_accelerator_types,
         | 
| 39585 39844 | 
             
                  :disassociate_default_code_repository,
         | 
| 39586 39845 | 
             
                  :disassociate_additional_code_repositories,
         | 
| 39587 | 
            -
                  :root_access | 
| 39846 | 
            +
                  :root_access,
         | 
| 39847 | 
            +
                  :instance_metadata_service_configuration)
         | 
| 39588 39848 | 
             
                  SENSITIVE = []
         | 
| 39589 39849 | 
             
                  include Aws::Structure
         | 
| 39590 39850 | 
             
                end
         | 
| @@ -40079,7 +40339,7 @@ module Aws::SageMaker | |
| 40079 40339 | 
             
                #             default_resource_spec: {
         | 
| 40080 40340 | 
             
                #               sage_maker_image_arn: "ImageArn",
         | 
| 40081 40341 | 
             
                #               sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 40082 | 
            -
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 40342 | 
            +
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 40083 40343 | 
             
                #               lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 40084 40344 | 
             
                #             },
         | 
| 40085 40345 | 
             
                #             lifecycle_config_arns: ["StudioLifecycleConfigArn"],
         | 
| @@ -40088,7 +40348,7 @@ module Aws::SageMaker | |
| 40088 40348 | 
             
                #             default_resource_spec: {
         | 
| 40089 40349 | 
             
                #               sage_maker_image_arn: "ImageArn",
         | 
| 40090 40350 | 
             
                #               sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 40091 | 
            -
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 40351 | 
            +
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 40092 40352 | 
             
                #               lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 40093 40353 | 
             
                #             },
         | 
| 40094 40354 | 
             
                #             custom_images: [
         | 
| @@ -40104,7 +40364,7 @@ module Aws::SageMaker | |
| 40104 40364 | 
             
                #             default_resource_spec: {
         | 
| 40105 40365 | 
             
                #               sage_maker_image_arn: "ImageArn",
         | 
| 40106 40366 | 
             
                #               sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 40107 | 
            -
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 40367 | 
            +
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 40108 40368 | 
             
                #               lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 40109 40369 | 
             
                #             },
         | 
| 40110 40370 | 
             
                #           },
         | 
| @@ -40113,6 +40373,19 @@ module Aws::SageMaker | |
| 40113 40373 | 
             
                #             user_group: "R_STUDIO_ADMIN", # accepts R_STUDIO_ADMIN, R_STUDIO_USER
         | 
| 40114 40374 | 
             
                #           },
         | 
| 40115 40375 | 
             
                #           r_session_app_settings: {
         | 
| 40376 | 
            +
                #             default_resource_spec: {
         | 
| 40377 | 
            +
                #               sage_maker_image_arn: "ImageArn",
         | 
| 40378 | 
            +
                #               sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 40379 | 
            +
                #               instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 40380 | 
            +
                #               lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 40381 | 
            +
                #             },
         | 
| 40382 | 
            +
                #             custom_images: [
         | 
| 40383 | 
            +
                #               {
         | 
| 40384 | 
            +
                #                 image_name: "ImageName", # required
         | 
| 40385 | 
            +
                #                 image_version_number: 1,
         | 
| 40386 | 
            +
                #                 app_image_config_name: "AppImageConfigName", # required
         | 
| 40387 | 
            +
                #               },
         | 
| 40388 | 
            +
                #             ],
         | 
| 40116 40389 | 
             
                #           },
         | 
| 40117 40390 | 
             
                #         },
         | 
| 40118 40391 | 
             
                #       }
         | 
| @@ -40397,7 +40670,7 @@ module Aws::SageMaker | |
| 40397 40670 | 
             
                #           default_resource_spec: {
         | 
| 40398 40671 | 
             
                #             sage_maker_image_arn: "ImageArn",
         | 
| 40399 40672 | 
             
                #             sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 40400 | 
            -
                #             instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 40673 | 
            +
                #             instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 40401 40674 | 
             
                #             lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 40402 40675 | 
             
                #           },
         | 
| 40403 40676 | 
             
                #           lifecycle_config_arns: ["StudioLifecycleConfigArn"],
         | 
| @@ -40406,7 +40679,7 @@ module Aws::SageMaker | |
| 40406 40679 | 
             
                #           default_resource_spec: {
         | 
| 40407 40680 | 
             
                #             sage_maker_image_arn: "ImageArn",
         | 
| 40408 40681 | 
             
                #             sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 40409 | 
            -
                #             instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 40682 | 
            +
                #             instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 40410 40683 | 
             
                #             lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 40411 40684 | 
             
                #           },
         | 
| 40412 40685 | 
             
                #           custom_images: [
         | 
| @@ -40422,7 +40695,7 @@ module Aws::SageMaker | |
| 40422 40695 | 
             
                #           default_resource_spec: {
         | 
| 40423 40696 | 
             
                #             sage_maker_image_arn: "ImageArn",
         | 
| 40424 40697 | 
             
                #             sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 40425 | 
            -
                #             instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 40698 | 
            +
                #             instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 40426 40699 | 
             
                #             lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 40427 40700 | 
             
                #           },
         | 
| 40428 40701 | 
             
                #         },
         | 
| @@ -40431,6 +40704,19 @@ module Aws::SageMaker | |
| 40431 40704 | 
             
                #           user_group: "R_STUDIO_ADMIN", # accepts R_STUDIO_ADMIN, R_STUDIO_USER
         | 
| 40432 40705 | 
             
                #         },
         | 
| 40433 40706 | 
             
                #         r_session_app_settings: {
         | 
| 40707 | 
            +
                #           default_resource_spec: {
         | 
| 40708 | 
            +
                #             sage_maker_image_arn: "ImageArn",
         | 
| 40709 | 
            +
                #             sage_maker_image_version_arn: "ImageVersionArn",
         | 
| 40710 | 
            +
                #             instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, 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.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, 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.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
         | 
| 40711 | 
            +
                #             lifecycle_config_arn: "StudioLifecycleConfigArn",
         | 
| 40712 | 
            +
                #           },
         | 
| 40713 | 
            +
                #           custom_images: [
         | 
| 40714 | 
            +
                #             {
         | 
| 40715 | 
            +
                #               image_name: "ImageName", # required
         | 
| 40716 | 
            +
                #               image_version_number: 1,
         | 
| 40717 | 
            +
                #               app_image_config_name: "AppImageConfigName", # required
         | 
| 40718 | 
            +
                #             },
         | 
| 40719 | 
            +
                #           ],
         | 
| 40434 40720 | 
             
                #         },
         | 
| 40435 40721 | 
             
                #       }
         | 
| 40436 40722 | 
             
                #
         |