aws-sdk-sagemaker 1.154.0 → 1.156.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 40a3968d304413d8a5157190f3d65265edcd78190a8a2401d4e29e51f28ae8f0
4
- data.tar.gz: f6dbeb97296ae50726b9490d78ae06fc48fb0f6f99b5c474160e622923dcb356
3
+ metadata.gz: 1ea5a222e15f74abae62c3449bfdaf0d50003065a7fd2eaa8124a99adce444f7
4
+ data.tar.gz: 9e8fff8720cf17fb07496681ea3a073dd1afe0e5aa0c1d7897042a5c37630df2
5
5
  SHA512:
6
- metadata.gz: a8eaca682257d3fd18aa088eedd78138ea45ff8cf49be6c1640a90d831482ece403a0a8b4fc66b2c91d79f0e01f34233be0d469bf186feb2dff82fac83a45b3b
7
- data.tar.gz: f6cec82479bfb110d2438174d680af47d8c5030eeb05fcac3ecc4c780b4937cc16bd522811158846673886c7f16165de0311cfd58969a5f0d7e1f259d8739eb4
6
+ metadata.gz: 7ea7af4b20725ca41e4e95c3adce517e443b181aad2e6ca2a9c45eb75de68c66cfd2dda9ba2b9e924ab30245ecea33e776c80c2fceaca1c89fb7b2736317470e
7
+ data.tar.gz: 8e2a6cce64c07e97470ff35b21dae7c45435af198553e734c5d04147e83fffd126d80d7a8a78f9a2fa444331650e948c98433282f6ec469a98715b6f6c01ff8c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.156.0 (2022-12-16)
5
+ ------------------
6
+
7
+ * Feature - AWS sagemaker - Features: This release adds support for random seed, it's an integer value used to initialize a pseudo-random number generator. Setting a random seed will allow the hyperparameter tuning search strategies to produce more consistent configurations for the same tuning job.
8
+
9
+ 1.155.0 (2022-12-15)
10
+ ------------------
11
+
12
+ * Feature - SageMaker Inference Recommender now allows customers to load tests their models on various instance types using private VPC.
13
+
4
14
  1.154.0 (2022-11-30)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.154.0
1
+ 1.156.0
@@ -967,7 +967,8 @@ module Aws::SageMaker
967
967
  # The domain ID.
968
968
  #
969
969
  # @option params [String] :user_profile_name
970
- # The user profile name.
970
+ # The user profile name. If this value is not set, then `SpaceName` must
971
+ # be set.
971
972
  #
972
973
  # @option params [required, String] :app_type
973
974
  # The type of app.
@@ -993,7 +994,8 @@ module Aws::SageMaker
993
994
  # </note>
994
995
  #
995
996
  # @option params [String] :space_name
996
- # The name of the space.
997
+ # The name of the space. If this value is not set, then
998
+ # `UserProfileName` must be set.
997
999
  #
998
1000
  # @return [Types::CreateAppResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
999
1001
  #
@@ -2487,7 +2489,7 @@ module Aws::SageMaker
2487
2489
  # CreateEndpoint request.
2488
2490
  #
2489
2491
  # @option params [required, Array<Types::ProductionVariant>] :production_variants
2490
- # An list of `ProductionVariant` objects, one for each model that you
2492
+ # An array of `ProductionVariant` objects, one for each model that you
2491
2493
  # want to host at this endpoint.
2492
2494
  #
2493
2495
  # @option params [Types::DataCaptureConfig] :data_capture_config
@@ -2562,10 +2564,10 @@ module Aws::SageMaker
2562
2564
  # A member of `CreateEndpointConfig` that enables explainers.
2563
2565
  #
2564
2566
  # @option params [Array<Types::ProductionVariant>] :shadow_production_variants
2565
- # Array of `ProductionVariant` objects. There is one for each model that
2566
- # you want to host at this endpoint in shadow mode with production
2567
- # traffic replicated from the model specified on `ProductionVariants`.If
2568
- # you use this field, you can only specify one variant for
2567
+ # An array of `ProductionVariant` objects, one for each model that you
2568
+ # want to host at this endpoint in shadow mode with production traffic
2569
+ # replicated from the model specified on `ProductionVariants`. If you
2570
+ # use this field, you can only specify one variant for
2569
2571
  # `ProductionVariants` and one variant for `ShadowProductionVariants`.
2570
2572
  #
2571
2573
  # @return [Types::CreateEndpointConfigOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
@@ -2876,11 +2878,15 @@ module Aws::SageMaker
2876
2878
  # defining your [bucket-level key][1] for SSE, you can reduce Amazon
2877
2879
  # Web Services KMS requests costs by up to 99 percent.
2878
2880
  #
2881
+ # * Format for the offline store table. Supported formats are Glue
2882
+ # (Default) and [Apache Iceberg][2].
2883
+ #
2879
2884
  # To learn more about this parameter, see OfflineStoreConfig.
2880
2885
  #
2881
2886
  #
2882
2887
  #
2883
2888
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucket-key.html
2889
+ # [2]: https://iceberg.apache.org/
2884
2890
  #
2885
2891
  # @option params [String] :role_arn
2886
2892
  # The Amazon Resource Name (ARN) of the IAM execution role used to
@@ -3282,6 +3288,7 @@ module Aws::SageMaker
3282
3288
  # tuning_job_completion_criteria: {
3283
3289
  # target_objective_metric_value: 1.0, # required
3284
3290
  # },
3291
+ # random_seed: 1,
3285
3292
  # },
3286
3293
  # training_job_definition: {
3287
3294
  # definition_name: "HyperParameterTrainingJobDefinitionName",
@@ -3669,9 +3676,9 @@ module Aws::SageMaker
3669
3676
  # Creates an inference experiment using the configurations specified in
3670
3677
  # the request.
3671
3678
  #
3672
- # Use this API to schedule an experiment to compare model variants on a
3673
- # Amazon SageMaker inference endpoint. For more information about
3674
- # inference experiments, see [Shadow tests][1].
3679
+ # Use this API to setup and schedule an experiment to compare model
3680
+ # variants on a Amazon SageMaker inference endpoint. For more
3681
+ # information about inference experiments, see [Shadow tests][1].
3675
3682
  #
3676
3683
  # Amazon SageMaker begins your experiment at the scheduled time and
3677
3684
  # routes traffic to your endpoint's model variants based on your
@@ -3704,39 +3711,44 @@ module Aws::SageMaker
3704
3711
  #
3705
3712
  # @option params [Types::InferenceExperimentSchedule] :schedule
3706
3713
  # The duration for which you want the inference experiment to run. If
3707
- # you don't specify this field, the experiment automatically concludes
3708
- # after 7 days.
3714
+ # you don't specify this field, the experiment automatically starts
3715
+ # immediately upon creation and concludes after 7 days.
3709
3716
  #
3710
3717
  # @option params [String] :description
3711
3718
  # A description for the inference experiment.
3712
3719
  #
3713
3720
  # @option params [required, String] :role_arn
3714
3721
  # The ARN of the IAM role that Amazon SageMaker can assume to access
3715
- # model artifacts and container images.
3722
+ # model artifacts and container images, and manage Amazon SageMaker
3723
+ # Inference endpoints for model deployment.
3716
3724
  #
3717
3725
  # @option params [required, String] :endpoint_name
3718
3726
  # The name of the Amazon SageMaker endpoint on which you want to run the
3719
3727
  # inference experiment.
3720
3728
  #
3721
3729
  # @option params [required, Array<Types::ModelVariantConfig>] :model_variants
3722
- # Array of `ModelVariantConfigSummary` objects. There is one for each
3723
- # variant in the inference experiment. Each `ModelVariantConfigSummary`
3724
- # object in the array describes the infrastructure configuration for the
3730
+ # An array of `ModelVariantConfig` objects. There is one for each
3731
+ # variant in the inference experiment. Each `ModelVariantConfig` object
3732
+ # in the array describes the infrastructure configuration for the
3725
3733
  # corresponding variant.
3726
3734
  #
3727
3735
  # @option params [Types::InferenceExperimentDataStorageConfig] :data_storage_config
3728
- # The storage configuration for the inference experiment. This is an
3729
- # optional parameter that you can use for data capture. For more
3730
- # information, see [Capture data][1].
3736
+ # The Amazon S3 location and configuration for storing inference request
3737
+ # and response data.
3738
+ #
3739
+ # This is an optional parameter that you can use for data capture. For
3740
+ # more information, see [Capture data][1].
3731
3741
  #
3732
3742
  #
3733
3743
  #
3734
3744
  # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-monitor-data-capture.html
3735
3745
  #
3736
3746
  # @option params [required, Types::ShadowModeConfig] :shadow_mode_config
3737
- # Shows which variant is the production variant and which variant is the
3738
- # shadow variant. For the shadow variant, also shows the sampling
3739
- # percentage.
3747
+ # The configuration of `ShadowMode` inference experiment type. Use this
3748
+ # field to specify a production variant which takes all the inference
3749
+ # requests, and a shadow variant to which Amazon SageMaker replicates a
3750
+ # percentage of the inference requests. For the shadow variant also
3751
+ # specify the percentage of requests that Amazon SageMaker replicates.
3740
3752
  #
3741
3753
  # @option params [String] :kms_key
3742
3754
  # The Amazon Web Services Key Management Service (Amazon Web Services
@@ -3963,6 +3975,10 @@ module Aws::SageMaker
3963
3975
  # endpoint_name: "EndpointName", # required
3964
3976
  # },
3965
3977
  # ],
3978
+ # vpc_config: {
3979
+ # security_group_ids: ["RecommendationJobVpcSecurityGroupId"], # required
3980
+ # subnets: ["RecommendationJobVpcSubnetId"], # required
3981
+ # },
3966
3982
  # },
3967
3983
  # job_description: "RecommendationJobDescription",
3968
3984
  # stopping_conditions: {
@@ -7808,7 +7824,8 @@ module Aws::SageMaker
7808
7824
  # The domain ID.
7809
7825
  #
7810
7826
  # @option params [String] :user_profile_name
7811
- # The user profile name.
7827
+ # The user profile name. If this value is not set, then `SpaceName` must
7828
+ # be set.
7812
7829
  #
7813
7830
  # @option params [required, String] :app_type
7814
7831
  # The type of app.
@@ -7817,7 +7834,8 @@ module Aws::SageMaker
7817
7834
  # The name of the app.
7818
7835
  #
7819
7836
  # @option params [String] :space_name
7820
- # The name of the space.
7837
+ # The name of the space. If this value is not set, then
7838
+ # `UserProfileName` must be set.
7821
7839
  #
7822
7840
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
7823
7841
  #
@@ -9253,7 +9271,8 @@ module Aws::SageMaker
9253
9271
  # The domain ID.
9254
9272
  #
9255
9273
  # @option params [String] :user_profile_name
9256
- # The user profile name.
9274
+ # The user profile name. If this value is not set, then `SpaceName` must
9275
+ # be set.
9257
9276
  #
9258
9277
  # @option params [required, String] :app_type
9259
9278
  # The type of app.
@@ -10900,6 +10919,7 @@ module Aws::SageMaker
10900
10919
  # resp.hyper_parameter_tuning_job_config.parameter_ranges.categorical_parameter_ranges[0].values[0] #=> String
10901
10920
  # resp.hyper_parameter_tuning_job_config.training_job_early_stopping_type #=> String, one of "Off", "Auto"
10902
10921
  # resp.hyper_parameter_tuning_job_config.tuning_job_completion_criteria.target_objective_metric_value #=> Float
10922
+ # resp.hyper_parameter_tuning_job_config.random_seed #=> Integer
10903
10923
  # resp.training_job_definition.definition_name #=> String
10904
10924
  # resp.training_job_definition.tuning_objective.type #=> String, one of "Maximize", "Minimize"
10905
10925
  # resp.training_job_definition.tuning_objective.metric_name #=> String
@@ -11362,6 +11382,10 @@ module Aws::SageMaker
11362
11382
  # resp.input_config.container_config.supported_instance_types[0] #=> String
11363
11383
  # resp.input_config.endpoints #=> Array
11364
11384
  # resp.input_config.endpoints[0].endpoint_name #=> String
11385
+ # resp.input_config.vpc_config.security_group_ids #=> Array
11386
+ # resp.input_config.vpc_config.security_group_ids[0] #=> String
11387
+ # resp.input_config.vpc_config.subnets #=> Array
11388
+ # resp.input_config.vpc_config.subnets[0] #=> String
11365
11389
  # resp.stopping_conditions.max_invocations #=> Integer
11366
11390
  # resp.stopping_conditions.model_latency_thresholds #=> Array
11367
11391
  # resp.stopping_conditions.model_latency_thresholds[0].percentile #=> String
@@ -14148,10 +14172,12 @@ module Aws::SageMaker
14148
14172
  # A parameter to search for the domain ID.
14149
14173
  #
14150
14174
  # @option params [String] :user_profile_name_equals
14151
- # A parameter to search by user profile name.
14175
+ # A parameter to search by user profile name. If `SpaceNameEquals` is
14176
+ # set, then this value cannot be set.
14152
14177
  #
14153
14178
  # @option params [String] :space_name_equals
14154
- # A parameter to search by space name.
14179
+ # A parameter to search by space name. If `UserProfileNameEquals` is
14180
+ # set, then this value cannot be set.
14155
14181
  #
14156
14182
  # @return [Types::ListAppsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
14157
14183
  #
@@ -19948,10 +19974,10 @@ module Aws::SageMaker
19948
19974
  # * `Retain` - Keep the variant as it is
19949
19975
  #
19950
19976
  # @option params [Array<Types::ModelVariantConfig>] :desired_model_variants
19951
- # Array of `ModelVariantConfig` objects. There is one for each variant
19952
- # that you want to deploy after the inference experiment stops. Each
19953
- # `ModelVariantConfig` describes the infrastructure configuration for
19954
- # deploying the corresponding variant.
19977
+ # An array of `ModelVariantConfig` objects. There is one for each
19978
+ # variant that you want to deploy after the inference experiment stops.
19979
+ # Each `ModelVariantConfig` describes the infrastructure configuration
19980
+ # for deploying the corresponding variant.
19955
19981
  #
19956
19982
  # @option params [String] :desired_state
19957
19983
  # The desired state of the experiment after stopping. The possible
@@ -21082,14 +21108,19 @@ module Aws::SageMaker
21082
21108
  # The description of the inference experiment.
21083
21109
  #
21084
21110
  # @option params [Array<Types::ModelVariantConfig>] :model_variants
21085
- # Array of `ModelVariantConfigSummary` objects. There is one for each
21111
+ # An array of `ModelVariantConfig` objects. There is one for each
21086
21112
  # variant, whose infrastructure configuration you want to update.
21087
21113
  #
21088
21114
  # @option params [Types::InferenceExperimentDataStorageConfig] :data_storage_config
21089
- # The Amazon S3 storage configuration for the inference experiment.
21115
+ # The Amazon S3 location and configuration for storing inference request
21116
+ # and response data.
21090
21117
  #
21091
21118
  # @option params [Types::ShadowModeConfig] :shadow_mode_config
21092
- # The Amazon S3 storage configuration for the inference experiment.
21119
+ # The configuration of `ShadowMode` inference experiment type. Use this
21120
+ # field to specify a production variant which takes all the inference
21121
+ # requests, and a shadow variant to which Amazon SageMaker replicates a
21122
+ # percentage of the inference requests. For the shadow variant also
21123
+ # specify the percentage of requests that Amazon SageMaker replicates.
21093
21124
  #
21094
21125
  # @return [Types::UpdateInferenceExperimentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
21095
21126
  #
@@ -22441,7 +22472,7 @@ module Aws::SageMaker
22441
22472
  params: params,
22442
22473
  config: config)
22443
22474
  context[:gem_name] = 'aws-sdk-sagemaker'
22444
- context[:gem_version] = '1.154.0'
22475
+ context[:gem_version] = '1.156.0'
22445
22476
  Seahorse::Client::Request.new(handlers, context)
22446
22477
  end
22447
22478
 
@@ -1528,6 +1528,7 @@ module Aws::SageMaker
1528
1528
  RStudioServerProDomainSettings = Shapes::StructureShape.new(name: 'RStudioServerProDomainSettings')
1529
1529
  RStudioServerProDomainSettingsForUpdate = Shapes::StructureShape.new(name: 'RStudioServerProDomainSettingsForUpdate')
1530
1530
  RStudioServerProUserGroup = Shapes::StringShape.new(name: 'RStudioServerProUserGroup')
1531
+ RandomSeed = Shapes::IntegerShape.new(name: 'RandomSeed')
1531
1532
  RealTimeInferenceConfig = Shapes::StructureShape.new(name: 'RealTimeInferenceConfig')
1532
1533
  RealtimeInferenceInstanceTypes = Shapes::ListShape.new(name: 'RealtimeInferenceInstanceTypes')
1533
1534
  RecommendationFailureReason = Shapes::StringShape.new(name: 'RecommendationFailureReason')
@@ -1546,6 +1547,11 @@ module Aws::SageMaker
1546
1547
  RecommendationJobSupportedContentTypes = Shapes::ListShape.new(name: 'RecommendationJobSupportedContentTypes')
1547
1548
  RecommendationJobSupportedInstanceTypes = Shapes::ListShape.new(name: 'RecommendationJobSupportedInstanceTypes')
1548
1549
  RecommendationJobType = Shapes::StringShape.new(name: 'RecommendationJobType')
1550
+ RecommendationJobVpcConfig = Shapes::StructureShape.new(name: 'RecommendationJobVpcConfig')
1551
+ RecommendationJobVpcSecurityGroupId = Shapes::StringShape.new(name: 'RecommendationJobVpcSecurityGroupId')
1552
+ RecommendationJobVpcSecurityGroupIds = Shapes::ListShape.new(name: 'RecommendationJobVpcSecurityGroupIds')
1553
+ RecommendationJobVpcSubnetId = Shapes::StringShape.new(name: 'RecommendationJobVpcSubnetId')
1554
+ RecommendationJobVpcSubnets = Shapes::ListShape.new(name: 'RecommendationJobVpcSubnets')
1549
1555
  RecommendationMetrics = Shapes::StructureShape.new(name: 'RecommendationMetrics')
1550
1556
  RecommendationStepType = Shapes::StringShape.new(name: 'RecommendationStepType')
1551
1557
  RecordWrapper = Shapes::StringShape.new(name: 'RecordWrapper')
@@ -5106,6 +5112,7 @@ module Aws::SageMaker
5106
5112
  HyperParameterTuningJobConfig.add_member(:parameter_ranges, Shapes::ShapeRef.new(shape: ParameterRanges, location_name: "ParameterRanges"))
5107
5113
  HyperParameterTuningJobConfig.add_member(:training_job_early_stopping_type, Shapes::ShapeRef.new(shape: TrainingJobEarlyStoppingType, location_name: "TrainingJobEarlyStoppingType"))
5108
5114
  HyperParameterTuningJobConfig.add_member(:tuning_job_completion_criteria, Shapes::ShapeRef.new(shape: TuningJobCompletionCriteria, location_name: "TuningJobCompletionCriteria"))
5115
+ HyperParameterTuningJobConfig.add_member(:random_seed, Shapes::ShapeRef.new(shape: RandomSeed, location_name: "RandomSeed"))
5109
5116
  HyperParameterTuningJobConfig.struct_class = Types::HyperParameterTuningJobConfig
5110
5117
 
5111
5118
  HyperParameterTuningJobObjective.add_member(:type, Shapes::ShapeRef.new(shape: HyperParameterTuningJobObjectiveType, required: true, location_name: "Type"))
@@ -7541,6 +7548,7 @@ module Aws::SageMaker
7541
7548
  RecommendationJobInputConfig.add_member(:volume_kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "VolumeKmsKeyId"))
7542
7549
  RecommendationJobInputConfig.add_member(:container_config, Shapes::ShapeRef.new(shape: RecommendationJobContainerConfig, location_name: "ContainerConfig"))
7543
7550
  RecommendationJobInputConfig.add_member(:endpoints, Shapes::ShapeRef.new(shape: Endpoints, location_name: "Endpoints"))
7551
+ RecommendationJobInputConfig.add_member(:vpc_config, Shapes::ShapeRef.new(shape: RecommendationJobVpcConfig, location_name: "VpcConfig"))
7544
7552
  RecommendationJobInputConfig.struct_class = Types::RecommendationJobInputConfig
7545
7553
 
7546
7554
  RecommendationJobOutputConfig.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
@@ -7563,6 +7571,14 @@ module Aws::SageMaker
7563
7571
 
7564
7572
  RecommendationJobSupportedInstanceTypes.member = Shapes::ShapeRef.new(shape: String)
7565
7573
 
7574
+ RecommendationJobVpcConfig.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: RecommendationJobVpcSecurityGroupIds, required: true, location_name: "SecurityGroupIds"))
7575
+ RecommendationJobVpcConfig.add_member(:subnets, Shapes::ShapeRef.new(shape: RecommendationJobVpcSubnets, required: true, location_name: "Subnets"))
7576
+ RecommendationJobVpcConfig.struct_class = Types::RecommendationJobVpcConfig
7577
+
7578
+ RecommendationJobVpcSecurityGroupIds.member = Shapes::ShapeRef.new(shape: RecommendationJobVpcSecurityGroupId)
7579
+
7580
+ RecommendationJobVpcSubnets.member = Shapes::ShapeRef.new(shape: RecommendationJobVpcSubnetId)
7581
+
7566
7582
  RecommendationMetrics.add_member(:cost_per_hour, Shapes::ShapeRef.new(shape: Float, required: true, location_name: "CostPerHour"))
7567
7583
  RecommendationMetrics.add_member(:cost_per_inference, Shapes::ShapeRef.new(shape: Float, required: true, location_name: "CostPerInference"))
7568
7584
  RecommendationMetrics.add_member(:max_invocations, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "MaxInvocations"))
@@ -50,78 +50,76 @@ IHRoaXMgcmVxdWVzdCIsInR5cGUiOiJTdHJpbmcifX0sInJ1bGVzIjpbeyJj
50
50
  b25kaXRpb25zIjpbeyJmbiI6ImF3cy5wYXJ0aXRpb24iLCJhcmd2IjpbeyJy
51
51
  ZWYiOiJSZWdpb24ifV0sImFzc2lnbiI6IlBhcnRpdGlvblJlc3VsdCJ9XSwi
52
52
  dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJp
53
- c1NldCIsImFyZ3YiOlt7InJlZiI6IkVuZHBvaW50In1dfSx7ImZuIjoicGFy
54
- c2VVUkwiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XSwiYXNzaWduIjoi
55
- dXJsIn1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
56
- eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBT
57
- In0sdHJ1ZV19XSwiZXJyb3IiOiJJbnZhbGlkIENvbmZpZ3VyYXRpb246IEZJ
58
- UFMgYW5kIGN1c3RvbSBlbmRwb2ludCBhcmUgbm90IHN1cHBvcnRlZCIsInR5
59
- cGUiOiJlcnJvciJ9LHsiY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwi
60
- cnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIs
61
- ImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0sImVycm9y
62
- IjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBEdWFsc3RhY2sgYW5kIGN1c3Rv
63
- bSBlbmRwb2ludCBhcmUgbm90IHN1cHBvcnRlZCIsInR5cGUiOiJlcnJvciJ9
64
- LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6eyJyZWYiOiJF
65
- bmRwb2ludCJ9LCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBl
66
- IjoiZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xl
67
- YW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19LHsi
68
- Zm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0
69
- YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
70
- aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJm
71
- biI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQi
72
- fSwic3VwcG9ydHNGSVBTIl19XX0seyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJh
73
- cmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBh
74
- cnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlw
75
- ZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50
76
- Ijp7InVybCI6Imh0dHBzOi8vYXBpLnNhZ2VtYWtlci1maXBzLntSZWdpb259
77
- LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3Bl
78
- cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0s
79
- eyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sg
80
- YXJlIGVuYWJsZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBw
81
- b3J0IG9uZSBvciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlv
82
- bnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVz
83
- ZUZJUFMifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25k
84
- aXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7
85
- ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3Vs
86
- dCJ9LCJzdXBwb3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMi
87
- Olt7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJj
88
- b25kaXRpb25zIjpbeyJmbiI6InN0cmluZ0VxdWFscyIsImFyZ3YiOlsiYXdz
89
- Iix7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJl
90
- c3VsdCJ9LCJuYW1lIl19XX1dLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczov
91
- L2FwaS1maXBzLnNhZ2VtYWtlci57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0
92
- I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0
93
- eXBlIjoiZW5kcG9pbnQifSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoic3RyaW5n
94
- RXF1YWxzIiwiYXJndiI6W3sicmVmIjoiUmVnaW9uIn0sInVzLWdvdi13ZXN0
95
- LTEtc2Vjb25kYXJ5Il19XSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9h
96
- cGkuc2FnZW1ha2VyLnVzLWdvdi13ZXN0LTEuYW1hem9uYXdzLmNvbSIsInBy
97
- b3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9
98
- LHsiY29uZGl0aW9ucyI6W3siZm4iOiJzdHJpbmdFcXVhbHMiLCJhcmd2Ijpb
99
- ImF3cy11cy1nb3YiLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoi
100
- UGFydGl0aW9uUmVzdWx0In0sIm5hbWUiXX1dfV0sImVuZHBvaW50Ijp7InVy
101
- bCI6Imh0dHBzOi8vYXBpLWZpcHMuc2FnZW1ha2VyLntSZWdpb259LntQYXJ0
102
- aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFk
103
- ZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9LHsiY29uZGl0aW9ucyI6W10s
104
- ImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vYXBpLnNhZ2VtYWtlci1maXBz
105
- LntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3Bl
53
+ c1NldCIsImFyZ3YiOlt7InJlZiI6IkVuZHBvaW50In1dfV0sInR5cGUiOiJ0
54
+ cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVx
55
+ dWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX1dLCJlcnJv
56
+ ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRklQUyBhbmQgY3VzdG9tIGVu
57
+ ZHBvaW50IGFyZSBub3Qgc3VwcG9ydGVkIiwidHlwZSI6ImVycm9yIn0seyJj
58
+ b25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
59
+ aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoi
60
+ VXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwiZXJyb3IiOiJJbnZhbGlkIENvbmZp
61
+ Z3VyYXRpb246IER1YWxzdGFjayBhbmQgY3VzdG9tIGVuZHBvaW50IGFyZSBu
62
+ b3Qgc3VwcG9ydGVkIiwidHlwZSI6ImVycm9yIn0seyJjb25kaXRpb25zIjpb
63
+ XSwiZW5kcG9pbnQiOnsidXJsIjp7InJlZiI6IkVuZHBvaW50In0sInByb3Bl
106
64
  cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1d
107
- fSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgaXMgZW5hYmxlZCBi
108
- dXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBGSVBTIiwidHlw
109
- ZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVx
110
- dWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0s
65
+ fSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3Yi
66
+ Olt7InJlZiI6IlVzZUZJUFMifSx0cnVlXX0seyJmbiI6ImJvb2xlYW5FcXVh
67
+ bHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJ0
68
+ eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJv
69
+ b2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFy
70
+ Z3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0ZJUFMi
71
+ XX1dfSx7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4i
72
+ OiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0s
73
+ InN1cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVz
74
+ IjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6
75
+ Ly9hcGkuc2FnZW1ha2VyLWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3Vs
76
+ dCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRl
77
+ cnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNvbmRpdGlvbnMiOltd
78
+ LCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFjayBhcmUgZW5hYmxlZCwgYnV0
79
+ IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgb25lIG9yIGJvdGgi
80
+ LCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
81
+ ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfV0s
111
82
  InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
112
83
  Ym9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRBdHRyIiwi
113
- YXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBvcnRzRHVh
114
- bFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRp
115
- b25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9hcGkuc2FnZW1h
116
- a2VyLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3Vm
117
- Zml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJl
118
- bmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3Rh
119
- Y2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3Vw
120
- cG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9u
121
- cyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vYXBpLnNhZ2VtYWtl
122
- ci57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9w
123
- ZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19
124
- XX0=
84
+ YXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBvcnRzRklQ
85
+ UyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
86
+ W10sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZu
87
+ Ijoic3RyaW5nRXF1YWxzIiwiYXJndiI6WyJhd3MiLHsiZm4iOiJnZXRBdHRy
88
+ IiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sIm5hbWUiXX1d
89
+ fV0sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vYXBpLWZpcHMuc2FnZW1h
90
+ a2VyLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInBy
91
+ b3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9
92
+ LHsiY29uZGl0aW9ucyI6W3siZm4iOiJzdHJpbmdFcXVhbHMiLCJhcmd2Ijpb
93
+ eyJyZWYiOiJSZWdpb24ifSwidXMtZ292LXdlc3QtMS1zZWNvbmRhcnkiXX1d
94
+ LCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2FwaS5zYWdlbWFrZXIudXMt
95
+ Z292LXdlc3QtMS5hbWF6b25hd3MuY29tIiwicHJvcGVydGllcyI6e30sImhl
96
+ YWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In0seyJjb25kaXRpb25zIjpb
97
+ eyJmbiI6InN0cmluZ0VxdWFscyIsImFyZ3YiOlsiYXdzLXVzLWdvdiIseyJm
98
+ biI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQi
99
+ fSwibmFtZSJdfV19XSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9hcGkt
100
+ Zmlwcy5zYWdlbWFrZXIue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNT
101
+ dWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6
102
+ ImVuZHBvaW50In0seyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJs
103
+ IjoiaHR0cHM6Ly9hcGkuc2FnZW1ha2VyLWZpcHMue1JlZ2lvbn0ue1BhcnRp
104
+ dGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRl
105
+ cnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6
106
+ W10sImVycm9yIjoiRklQUyBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlv
107
+ biBkb2VzIG5vdCBzdXBwb3J0IEZJUFMiLCJ0eXBlIjoiZXJyb3IifV19LHsi
108
+ Y29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3si
109
+ cmVmIjoiVXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJy
110
+ dWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwi
111
+ YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
112
+ YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
113
+ cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
114
+ dCI6eyJ1cmwiOiJodHRwczovL2FwaS5zYWdlbWFrZXIue1JlZ2lvbn0ue1Bh
115
+ cnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGll
116
+ cyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNv
117
+ bmRpdGlvbnMiOltdLCJlcnJvciI6IkR1YWxTdGFjayBpcyBlbmFibGVkIGJ1
118
+ dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IER1YWxTdGFjayIs
119
+ InR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQi
120
+ OnsidXJsIjoiaHR0cHM6Ly9hcGkuc2FnZW1ha2VyLntSZWdpb259LntQYXJ0
121
+ aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFk
122
+ ZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfQ==
125
123
 
126
124
  JSON
127
125
  end
@@ -4011,7 +4011,8 @@ module Aws::SageMaker
4011
4011
  # @return [String]
4012
4012
  #
4013
4013
  # @!attribute [rw] user_profile_name
4014
- # The user profile name.
4014
+ # The user profile name. If this value is not set, then `SpaceName`
4015
+ # must be set.
4015
4016
  # @return [String]
4016
4017
  #
4017
4018
  # @!attribute [rw] app_type
@@ -4042,7 +4043,8 @@ module Aws::SageMaker
4042
4043
  # @return [Types::ResourceSpec]
4043
4044
  #
4044
4045
  # @!attribute [rw] space_name
4045
- # The name of the space.
4046
+ # The name of the space. If this value is not set, then
4047
+ # `UserProfileName` must be set.
4046
4048
  # @return [String]
4047
4049
  #
4048
4050
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateAppRequest AWS API Documentation
@@ -4766,7 +4768,7 @@ module Aws::SageMaker
4766
4768
  # @return [String]
4767
4769
  #
4768
4770
  # @!attribute [rw] production_variants
4769
- # An list of `ProductionVariant` objects, one for each model that you
4771
+ # An array of `ProductionVariant` objects, one for each model that you
4770
4772
  # want to host at this endpoint.
4771
4773
  # @return [Array<Types::ProductionVariant>]
4772
4774
  #
@@ -4848,12 +4850,11 @@ module Aws::SageMaker
4848
4850
  # @return [Types::ExplainerConfig]
4849
4851
  #
4850
4852
  # @!attribute [rw] shadow_production_variants
4851
- # Array of `ProductionVariant` objects. There is one for each model
4852
- # that you want to host at this endpoint in shadow mode with
4853
- # production traffic replicated from the model specified on
4854
- # `ProductionVariants`.If you use this field, you can only specify one
4855
- # variant for `ProductionVariants` and one variant for
4856
- # `ShadowProductionVariants`.
4853
+ # An array of `ProductionVariant` objects, one for each model that you
4854
+ # want to host at this endpoint in shadow mode with production traffic
4855
+ # replicated from the model specified on `ProductionVariants`. If you
4856
+ # use this field, you can only specify one variant for
4857
+ # `ProductionVariants` and one variant for `ShadowProductionVariants`.
4857
4858
  # @return [Array<Types::ProductionVariant>]
4858
4859
  #
4859
4860
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateEndpointConfigInput AWS API Documentation
@@ -5067,11 +5068,15 @@ module Aws::SageMaker
5067
5068
  # defining your [bucket-level key][1] for SSE, you can reduce Amazon
5068
5069
  # Web Services KMS requests costs by up to 99 percent.
5069
5070
  #
5071
+ # * Format for the offline store table. Supported formats are Glue
5072
+ # (Default) and [Apache Iceberg][2].
5073
+ #
5070
5074
  # To learn more about this parameter, see OfflineStoreConfig.
5071
5075
  #
5072
5076
  #
5073
5077
  #
5074
5078
  # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucket-key.html
5079
+ # [2]: https://iceberg.apache.org/
5075
5080
  # @return [Types::OfflineStoreConfig]
5076
5081
  #
5077
5082
  # @!attribute [rw] role_arn
@@ -5472,8 +5477,8 @@ module Aws::SageMaker
5472
5477
  #
5473
5478
  # @!attribute [rw] schedule
5474
5479
  # The duration for which you want the inference experiment to run. If
5475
- # you don't specify this field, the experiment automatically
5476
- # concludes after 7 days.
5480
+ # you don't specify this field, the experiment automatically starts
5481
+ # immediately upon creation and concludes after 7 days.
5477
5482
  # @return [Types::InferenceExperimentSchedule]
5478
5483
  #
5479
5484
  # @!attribute [rw] description
@@ -5482,7 +5487,8 @@ module Aws::SageMaker
5482
5487
  #
5483
5488
  # @!attribute [rw] role_arn
5484
5489
  # The ARN of the IAM role that Amazon SageMaker can assume to access
5485
- # model artifacts and container images.
5490
+ # model artifacts and container images, and manage Amazon SageMaker
5491
+ # Inference endpoints for model deployment.
5486
5492
  # @return [String]
5487
5493
  #
5488
5494
  # @!attribute [rw] endpoint_name
@@ -5491,16 +5497,18 @@ module Aws::SageMaker
5491
5497
  # @return [String]
5492
5498
  #
5493
5499
  # @!attribute [rw] model_variants
5494
- # Array of `ModelVariantConfigSummary` objects. There is one for each
5495
- # variant in the inference experiment. Each
5496
- # `ModelVariantConfigSummary` object in the array describes the
5497
- # infrastructure configuration for the corresponding variant.
5500
+ # An array of `ModelVariantConfig` objects. There is one for each
5501
+ # variant in the inference experiment. Each `ModelVariantConfig`
5502
+ # object in the array describes the infrastructure configuration for
5503
+ # the corresponding variant.
5498
5504
  # @return [Array<Types::ModelVariantConfig>]
5499
5505
  #
5500
5506
  # @!attribute [rw] data_storage_config
5501
- # The storage configuration for the inference experiment. This is an
5502
- # optional parameter that you can use for data capture. For more
5503
- # information, see [Capture data][1].
5507
+ # The Amazon S3 location and configuration for storing inference
5508
+ # request and response data.
5509
+ #
5510
+ # This is an optional parameter that you can use for data capture. For
5511
+ # more information, see [Capture data][1].
5504
5512
  #
5505
5513
  #
5506
5514
  #
@@ -5508,9 +5516,12 @@ module Aws::SageMaker
5508
5516
  # @return [Types::InferenceExperimentDataStorageConfig]
5509
5517
  #
5510
5518
  # @!attribute [rw] shadow_mode_config
5511
- # Shows which variant is the production variant and which variant is
5512
- # the shadow variant. For the shadow variant, also shows the sampling
5513
- # percentage.
5519
+ # The configuration of `ShadowMode` inference experiment type. Use
5520
+ # this field to specify a production variant which takes all the
5521
+ # inference requests, and a shadow variant to which Amazon SageMaker
5522
+ # replicates a percentage of the inference requests. For the shadow
5523
+ # variant also specify the percentage of requests that Amazon
5524
+ # SageMaker replicates.
5514
5525
  # @return [Types::ShadowModeConfig]
5515
5526
  #
5516
5527
  # @!attribute [rw] kms_key
@@ -8008,9 +8019,8 @@ module Aws::SageMaker
8008
8019
  #
8009
8020
  # @!attribute [rw] kms_key_id
8010
8021
  # The Amazon Resource Name (ARN) of a Amazon Web Services Key
8011
- # Management Service key that SageMaker uses to encrypt data on the
8012
- # storage volume attached to the ML compute instance that hosts the
8013
- # endpoint.
8022
+ # Management Service key that SageMaker uses to encrypt the captured
8023
+ # data at rest using Amazon S3 server-side encryption.
8014
8024
  #
8015
8025
  # The KmsKeyId can be any of the following formats:
8016
8026
  #
@@ -8568,7 +8578,8 @@ module Aws::SageMaker
8568
8578
  # @return [String]
8569
8579
  #
8570
8580
  # @!attribute [rw] user_profile_name
8571
- # The user profile name.
8581
+ # The user profile name. If this value is not set, then `SpaceName`
8582
+ # must be set.
8572
8583
  # @return [String]
8573
8584
  #
8574
8585
  # @!attribute [rw] app_type
@@ -8580,7 +8591,8 @@ module Aws::SageMaker
8580
8591
  # @return [String]
8581
8592
  #
8582
8593
  # @!attribute [rw] space_name
8583
- # The name of the space.
8594
+ # The name of the space. If this value is not set, then
8595
+ # `UserProfileName` must be set.
8584
8596
  # @return [String]
8585
8597
  #
8586
8598
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteAppRequest AWS API Documentation
@@ -9650,7 +9662,8 @@ module Aws::SageMaker
9650
9662
  # @return [String]
9651
9663
  #
9652
9664
  # @!attribute [rw] user_profile_name
9653
- # The user profile name.
9665
+ # The user profile name. If this value is not set, then `SpaceName`
9666
+ # must be set.
9654
9667
  # @return [String]
9655
9668
  #
9656
9669
  # @!attribute [rw] app_type
@@ -9726,7 +9739,8 @@ module Aws::SageMaker
9726
9739
  # @return [Types::ResourceSpec]
9727
9740
  #
9728
9741
  # @!attribute [rw] space_name
9729
- # The name of the space.
9742
+ # The name of the space. If this value is not set, then
9743
+ # `UserProfileName` must be set.
9730
9744
  # @return [String]
9731
9745
  #
9732
9746
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeAppResponse AWS API Documentation
@@ -10818,12 +10832,9 @@ module Aws::SageMaker
10818
10832
  # @return [Types::ExplainerConfig]
10819
10833
  #
10820
10834
  # @!attribute [rw] shadow_production_variants
10821
- # Array of `ProductionVariant` objects. There is one for each model
10822
- # that you want to host at this endpoint in shadow mode with
10823
- # production traffic replicated from the model specified on
10824
- # `ProductionVariants`.If you use this field, you can only specify one
10825
- # variant for `ProductionVariants` and one variant for
10826
- # `ShadowProductionVariants`.
10835
+ # An array of `ProductionVariant` objects, one for each model that you
10836
+ # want to host at this endpoint in shadow mode with production traffic
10837
+ # replicated from the model specified on `ProductionVariants`.
10827
10838
  # @return [Array<Types::ProductionVariant>]
10828
10839
  #
10829
10840
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeEndpointConfigOutput AWS API Documentation
@@ -10949,12 +10960,10 @@ module Aws::SageMaker
10949
10960
  # @return [Types::ExplainerConfig]
10950
10961
  #
10951
10962
  # @!attribute [rw] shadow_production_variants
10952
- # Array of `ProductionVariant` objects. There is one for each model
10963
+ # An array of ProductionVariantSummary objects, one for each model
10953
10964
  # that you want to host at this endpoint in shadow mode with
10954
10965
  # production traffic replicated from the model specified on
10955
- # `ProductionVariants`.If you use this field, you can only specify one
10956
- # variant for `ProductionVariants` and one variant for
10957
- # `ShadowProductionVariants`.
10966
+ # `ProductionVariants`.
10958
10967
  # @return [Array<Types::ProductionVariantSummary>]
10959
10968
  #
10960
10969
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeEndpointOutput AWS API Documentation
@@ -11103,14 +11112,24 @@ module Aws::SageMaker
11103
11112
  # @return [Types::OnlineStoreConfig]
11104
11113
  #
11105
11114
  # @!attribute [rw] offline_store_config
11106
- # The configuration of the `OfflineStore`, inducing the S3 location of
11107
- # the `OfflineStore`, Amazon Web Services Glue or Amazon Web Services
11108
- # Hive data catalogue configurations, and the security configuration.
11115
+ # The configuration of the offline store. It includes the following
11116
+ # configurations:
11117
+ #
11118
+ # * Amazon S3 location of the offline store.
11119
+ #
11120
+ # * Configuration of the Glue data catalog.
11121
+ #
11122
+ # * Table format of the offline store.
11123
+ #
11124
+ # * Option to disable the automatic creation of a Glue table for the
11125
+ # offline store.
11126
+ #
11127
+ # * Encryption configuration.
11109
11128
  # @return [Types::OfflineStoreConfig]
11110
11129
  #
11111
11130
  # @!attribute [rw] role_arn
11112
11131
  # The Amazon Resource Name (ARN) of the IAM execution role used to
11113
- # persist data into the `OfflineStore` if an `OfflineStoreConfig` is
11132
+ # persist data into the OfflineStore if an OfflineStoreConfig is
11114
11133
  # provided.
11115
11134
  # @return [String]
11116
11135
  #
@@ -11830,8 +11849,8 @@ module Aws::SageMaker
11830
11849
  #
11831
11850
  # * `Creating` - Amazon SageMaker is creating your experiment.
11832
11851
  #
11833
- # * `Created` - Amazon SageMaker has finished creating your experiment
11834
- # and it will begin at the scheduled time.
11852
+ # * `Created` - Amazon SageMaker has finished the creation of your
11853
+ # experiment and will begin the experiment at the scheduled time.
11835
11854
  #
11836
11855
  # * `Updating` - When you make changes to your experiment, your
11837
11856
  # experiment shows as updating.
@@ -11844,12 +11863,15 @@ module Aws::SageMaker
11844
11863
  #
11845
11864
  # * `Completed` - Your experiment has completed.
11846
11865
  #
11847
- # * `Cancelled` - When you conclude your experiment early, it shows as
11848
- # canceled.
11866
+ # * `Cancelled` - When you conclude your experiment early using the
11867
+ # StopInferenceExperiment API, or if any operation fails with an
11868
+ # unexpected error, it shows as cancelled.
11849
11869
  # @return [String]
11850
11870
  #
11851
11871
  # @!attribute [rw] status_reason
11852
- # The error message for the inference experiment status result.
11872
+ # The error message or client-specified `Reason` from the
11873
+ # StopInferenceExperiment API, that explains the status of the
11874
+ # inference experiment.
11853
11875
  # @return [String]
11854
11876
  #
11855
11877
  # @!attribute [rw] description
@@ -11861,8 +11883,7 @@ module Aws::SageMaker
11861
11883
  # @return [Time]
11862
11884
  #
11863
11885
  # @!attribute [rw] completion_time
11864
- # The timestamp at which the inference experiment was completed or
11865
- # will complete.
11886
+ # The timestamp at which the inference experiment was completed.
11866
11887
  # @return [Time]
11867
11888
  #
11868
11889
  # @!attribute [rw] last_modified_time
@@ -11871,7 +11892,8 @@ module Aws::SageMaker
11871
11892
  #
11872
11893
  # @!attribute [rw] role_arn
11873
11894
  # The ARN of the IAM role that Amazon SageMaker can assume to access
11874
- # model artifacts and container images.
11895
+ # model artifacts and container images, and manage Amazon SageMaker
11896
+ # Inference endpoints for model deployment.
11875
11897
  # @return [String]
11876
11898
  #
11877
11899
  # @!attribute [rw] endpoint_metadata
@@ -11879,21 +11901,24 @@ module Aws::SageMaker
11879
11901
  # @return [Types::EndpointMetadata]
11880
11902
  #
11881
11903
  # @!attribute [rw] model_variants
11882
- # Array of `ModelVariantConfigSummary` objects. There is one for each
11883
- # variant in the inference experiment. Each
11904
+ # An array of `ModelVariantConfigSummary` objects. There is one for
11905
+ # each variant in the inference experiment. Each
11884
11906
  # `ModelVariantConfigSummary` object in the array describes the
11885
11907
  # infrastructure configuration for deploying the corresponding
11886
11908
  # variant.
11887
11909
  # @return [Array<Types::ModelVariantConfigSummary>]
11888
11910
  #
11889
11911
  # @!attribute [rw] data_storage_config
11890
- # The Amazon S3 storage configuration for the inference experiment.
11912
+ # The Amazon S3 location and configuration for storing inference
11913
+ # request and response data.
11891
11914
  # @return [Types::InferenceExperimentDataStorageConfig]
11892
11915
  #
11893
11916
  # @!attribute [rw] shadow_mode_config
11894
- # Shows which variant is a production variant and which variant is a
11895
- # shadow variant. For shadow variants, also shows the sampling
11896
- # percentage.
11917
+ # The configuration of `ShadowMode` inference experiment type, which
11918
+ # shows the production variant that takes all the inference requests,
11919
+ # and the shadow variant to which Amazon SageMaker replicates a
11920
+ # percentage of the inference requests. For the shadow variant it also
11921
+ # shows the percentage of requests that Amazon SageMaker replicates.
11897
11922
  # @return [Types::ShadowModeConfig]
11898
11923
  #
11899
11924
  # @!attribute [rw] kms_key
@@ -14978,6 +15003,8 @@ module Aws::SageMaker
14978
15003
  include Aws::Structure
14979
15004
  end
14980
15005
 
15006
+ # @api private
15007
+ #
14981
15008
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DisableSagemakerServicecatalogPortfolioInput AWS API Documentation
14982
15009
  #
14983
15010
  class DisableSagemakerServicecatalogPortfolioInput < Aws::EmptyStructure; end
@@ -15670,6 +15697,8 @@ module Aws::SageMaker
15670
15697
  include Aws::Structure
15671
15698
  end
15672
15699
 
15700
+ # @api private
15701
+ #
15673
15702
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EnableSagemakerServicecatalogPortfolioInput AWS API Documentation
15674
15703
  #
15675
15704
  class EnableSagemakerServicecatalogPortfolioInput < Aws::EmptyStructure; end
@@ -15738,11 +15767,9 @@ module Aws::SageMaker
15738
15767
  # @return [Array<Types::Tag>]
15739
15768
  #
15740
15769
  # @!attribute [rw] shadow_production_variants
15741
- # Array of `ProductionVariant` objects, one for each model that you
15742
- # want to host at this endpoint in shadow mode with production traffic
15743
- # replicated from the model specified on `ProductionVariants`.If you
15744
- # use this field, you can only specify one variant for
15745
- # `ProductionVariants` and one variant for `ShadowProductionVariants`.
15770
+ # A list of the shadow variants hosted on the endpoint. Each shadow
15771
+ # variant is a model in shadow mode with production traffic replicated
15772
+ # from the proudction variant.
15746
15773
  # @return [Array<Types::ProductionVariantSummary>]
15747
15774
  #
15748
15775
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Endpoint AWS API Documentation
@@ -15923,8 +15950,9 @@ module Aws::SageMaker
15923
15950
  # @return [String]
15924
15951
  #
15925
15952
  # @!attribute [rw] failure_reason
15926
- # If the status of the endpoint is `Failed`, this provides the reason
15927
- # why it failed.
15953
+ # If the status of the endpoint is `Failed`, or the status is
15954
+ # `InService` but update operation fails, this provides the reason why
15955
+ # it failed.
15928
15956
  # @return [String]
15929
15957
  #
15930
15958
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EndpointMetadata AWS API Documentation
@@ -17036,6 +17064,8 @@ module Aws::SageMaker
17036
17064
  include Aws::Structure
17037
17065
  end
17038
17066
 
17067
+ # @api private
17068
+ #
17039
17069
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/GetSagemakerServicecatalogPortfolioStatusInput AWS API Documentation
17040
17070
  #
17041
17071
  class GetSagemakerServicecatalogPortfolioStatusInput < Aws::EmptyStructure; end
@@ -18855,18 +18885,22 @@ module Aws::SageMaker
18855
18885
  # @return [Types::HyperParameterTuningJobStrategyConfig]
18856
18886
  #
18857
18887
  # @!attribute [rw] hyper_parameter_tuning_job_objective
18858
- # The HyperParameterTuningJobObjective object that specifies the
18859
- # objective metric for this tuning job.
18888
+ # The HyperParameterTuningJobObjective specifies the objective metric
18889
+ # used to evaluate the performance of training jobs launched by this
18890
+ # tuning job.
18860
18891
  # @return [Types::HyperParameterTuningJobObjective]
18861
18892
  #
18862
18893
  # @!attribute [rw] resource_limits
18863
18894
  # The ResourceLimits object that specifies the maximum number of
18864
- # training jobs and parallel training jobs for this tuning job.
18895
+ # training and parallel training jobs that can be used for this
18896
+ # hyperparameter tuning job.
18865
18897
  # @return [Types::ResourceLimits]
18866
18898
  #
18867
18899
  # @!attribute [rw] parameter_ranges
18868
18900
  # The ParameterRanges object that specifies the ranges of
18869
- # hyperparameters that this tuning job searches.
18901
+ # hyperparameters that this tuning job searches over to find the
18902
+ # optimal configuration for the highest model performance against
18903
+ # .your chosen objective metric.
18870
18904
  # @return [Types::ParameterRanges]
18871
18905
  #
18872
18906
  # @!attribute [rw] training_job_early_stopping_type
@@ -18898,6 +18932,13 @@ module Aws::SageMaker
18898
18932
  # The tuning job's completion criteria.
18899
18933
  # @return [Types::TuningJobCompletionCriteria]
18900
18934
  #
18935
+ # @!attribute [rw] random_seed
18936
+ # A value used to initialize a pseudo-random number generator. Setting
18937
+ # a random seed and using the same seed later for the same tuning job
18938
+ # will allow hyperparameter optimization to find more a consistent
18939
+ # hyperparameter configuration between the two runs.
18940
+ # @return [Integer]
18941
+ #
18901
18942
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/HyperParameterTuningJobConfig AWS API Documentation
18902
18943
  #
18903
18944
  class HyperParameterTuningJobConfig < Struct.new(
@@ -18907,7 +18948,8 @@ module Aws::SageMaker
18907
18948
  :resource_limits,
18908
18949
  :parameter_ranges,
18909
18950
  :training_job_early_stopping_type,
18910
- :tuning_job_completion_criteria)
18951
+ :tuning_job_completion_criteria,
18952
+ :random_seed)
18911
18953
  SENSITIVE = []
18912
18954
  include Aws::Structure
18913
18955
  end
@@ -19222,12 +19264,16 @@ module Aws::SageMaker
19222
19264
 
19223
19265
  # The configuration of resources, including compute instances and
19224
19266
  # storage volumes for use in training jobs launched by hyperparameter
19225
- # tuning jobs. Specify one or more instance type and count and the
19226
- # allocation strategy for instance selection.
19267
+ # tuning jobs. `HyperParameterTuningResourceConfig` is similar to
19268
+ # `ResourceConfig`, but has the additional `InstanceConfigs` and
19269
+ # `AllocationStrategy` fields to allow for flexible instance management.
19270
+ # Specify one or more instance types, count, and the allocation strategy
19271
+ # for instance selection.
19227
19272
  #
19228
- # <note markdown="1"> `HyperParameterTuningResourceConfig` supports all of the capabilities
19229
- # of ResourceConfig with added functionality for flexible instance
19230
- # management.
19273
+ # <note markdown="1"> `HyperParameterTuningResourceConfig` supports the capabilities of
19274
+ # `ResourceConfig` with the exception of `KeepAlivePeriodInSeconds`.
19275
+ # Hyperparameter tuning jobs use warm pools by default, which reuse
19276
+ # clusters between training jobs.
19231
19277
  #
19232
19278
  # </note>
19233
19279
  #
@@ -19623,17 +19669,18 @@ module Aws::SageMaker
19623
19669
  include Aws::Structure
19624
19670
  end
19625
19671
 
19626
- # The Amazon S3 location and configuration for storing inference
19627
- # experiment data.
19672
+ # The Amazon S3 location and configuration for storing inference request
19673
+ # and response data.
19628
19674
  #
19629
19675
  # @!attribute [rw] destination
19630
- # The Amazon S3 bucket where the inference experiment data is stored.
19676
+ # The Amazon S3 bucket where the inference request and response data
19677
+ # is stored.
19631
19678
  # @return [String]
19632
19679
  #
19633
19680
  # @!attribute [rw] kms_key
19634
- # The Amazon Resource Name (ARN) of a Amazon Web Services Key
19635
- # Management Service key that Amazon SageMaker uses to encrypt
19636
- # captured data when uploading to Amazon S3.
19681
+ # The Amazon Web Services Key Management Service key that Amazon
19682
+ # SageMaker uses to encrypt captured data at rest using Amazon S3
19683
+ # server-side encryption.
19637
19684
  # @return [String]
19638
19685
  #
19639
19686
  # @!attribute [rw] content_type
@@ -19718,7 +19765,8 @@ module Aws::SageMaker
19718
19765
  #
19719
19766
  # @!attribute [rw] role_arn
19720
19767
  # The ARN of the IAM role that Amazon SageMaker can assume to access
19721
- # model artifacts and container images.
19768
+ # model artifacts and container images, and manage Amazon SageMaker
19769
+ # Inference endpoints for model deployment.
19722
19770
  # @return [String]
19723
19771
  #
19724
19772
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/InferenceExperimentSummary AWS API Documentation
@@ -21217,11 +21265,13 @@ module Aws::SageMaker
21217
21265
  # @return [String]
21218
21266
  #
21219
21267
  # @!attribute [rw] user_profile_name_equals
21220
- # A parameter to search by user profile name.
21268
+ # A parameter to search by user profile name. If `SpaceNameEquals` is
21269
+ # set, then this value cannot be set.
21221
21270
  # @return [String]
21222
21271
  #
21223
21272
  # @!attribute [rw] space_name_equals
21224
- # A parameter to search by space name.
21273
+ # A parameter to search by space name. If `UserProfileNameEquals` is
21274
+ # set, then this value cannot be set.
21225
21275
  # @return [String]
21226
21276
  #
21227
21277
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListAppsRequest AWS API Documentation
@@ -27859,7 +27909,7 @@ module Aws::SageMaker
27859
27909
  # Contains information about the deployment options of a model.
27860
27910
  #
27861
27911
  # @!attribute [rw] model_name
27862
- # The name of the model.
27912
+ # The name of the Amazon SageMaker Model entity.
27863
27913
  # @return [String]
27864
27914
  #
27865
27915
  # @!attribute [rw] variant_name
@@ -27884,7 +27934,7 @@ module Aws::SageMaker
27884
27934
  # Summary of the deployment configuration of a model.
27885
27935
  #
27886
27936
  # @!attribute [rw] model_name
27887
- # The name of the model.
27937
+ # The name of the Amazon SageMaker Model entity.
27888
27938
  # @return [String]
27889
27939
  #
27890
27940
  # @!attribute [rw] variant_name
@@ -27897,7 +27947,24 @@ module Aws::SageMaker
27897
27947
  # @return [Types::ModelInfrastructureConfig]
27898
27948
  #
27899
27949
  # @!attribute [rw] status
27900
- # The status of the deployment.
27950
+ # The status of deployment for the model variant on the hosted
27951
+ # inference endpoint.
27952
+ #
27953
+ # * `Creating` - Amazon SageMaker is preparing the model variant on
27954
+ # the hosted inference endpoint.
27955
+ #
27956
+ # * `InService` - The model variant is running on the hosted inference
27957
+ # endpoint.
27958
+ #
27959
+ # * `Updating` - Amazon SageMaker is updating the model variant on the
27960
+ # hosted inference endpoint.
27961
+ #
27962
+ # * `Deleting` - Amazon SageMaker is deleting the model variant on the
27963
+ # hosted inference endpoint.
27964
+ #
27965
+ # * `Deleted` - The model variant has been deleted on the hosted
27966
+ # inference endpoint. This can only happen after stopping the
27967
+ # experiment.
27901
27968
  # @return [String]
27902
27969
  #
27903
27970
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelVariantConfigSummary AWS API Documentation
@@ -28437,6 +28504,8 @@ module Aws::SageMaker
28437
28504
  # Represents the Parquet dataset format used when running a monitoring
28438
28505
  # job.
28439
28506
  #
28507
+ # @api private
28508
+ #
28440
28509
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MonitoringParquetDatasetFormat AWS API Documentation
28441
28510
  #
28442
28511
  class MonitoringParquetDatasetFormat < Aws::EmptyStructure; end
@@ -29041,8 +29110,12 @@ module Aws::SageMaker
29041
29110
  # @return [Types::DataCatalogConfig]
29042
29111
  #
29043
29112
  # @!attribute [rw] table_format
29044
- # Format for the offline store feature group. `Iceberg` is the optimal
29045
- # format for feature groups shared between offline and online stores.
29113
+ # Format for the offline store table. Supported formats are Glue
29114
+ # (Default) and [Apache Iceberg][1].
29115
+ #
29116
+ #
29117
+ #
29118
+ # [1]: https://iceberg.apache.org/
29046
29119
  # @return [String]
29047
29120
  #
29048
29121
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/OfflineStoreConfig AWS API Documentation
@@ -29715,7 +29788,8 @@ module Aws::SageMaker
29715
29788
  # @return [String]
29716
29789
  #
29717
29790
  # @!attribute [rw] production_variants
29718
- # List of `PendingProductionVariantSummary` objects.
29791
+ # An array of PendingProductionVariantSummary objects, one for each
29792
+ # model hosted behind this endpoint for the in-progress deployment.
29719
29793
  # @return [Array<Types::PendingProductionVariantSummary>]
29720
29794
  #
29721
29795
  # @!attribute [rw] start_time
@@ -29723,11 +29797,10 @@ module Aws::SageMaker
29723
29797
  # @return [Time]
29724
29798
  #
29725
29799
  # @!attribute [rw] shadow_production_variants
29726
- # Array of `ProductionVariant` objects, one for each model that you
29727
- # want to host at this endpoint in shadow mode with production traffic
29728
- # replicated from the model specified on `ProductionVariants`.If you
29729
- # use this field, you can only specify one variant for
29730
- # `ProductionVariants` and one variant for `ShadowProductionVariants`.
29800
+ # An array of PendingProductionVariantSummary objects, one for each
29801
+ # model hosted behind this endpoint in shadow mode with production
29802
+ # traffic replicated from the model specified on `ProductionVariants`
29803
+ # for the in-progress deployment.
29731
29804
  # @return [Array<Types::PendingProductionVariantSummary>]
29732
29805
  #
29733
29806
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PendingDeploymentSummary AWS API Documentation
@@ -32061,15 +32134,15 @@ module Aws::SageMaker
32061
32134
  include Aws::Structure
32062
32135
  end
32063
32136
 
32064
- # The infrastructure configuration for deploying the model to real-time
32065
- # inference.
32137
+ # The infrastructure configuration for deploying the model to a
32138
+ # real-time inference endpoint.
32066
32139
  #
32067
32140
  # @!attribute [rw] instance_type
32068
- # The number of instances of the type specified by `InstanceType`.
32141
+ # The instance type the model is deployed to.
32069
32142
  # @return [String]
32070
32143
  #
32071
32144
  # @!attribute [rw] instance_count
32072
- # The instance type the model is deployed to.
32145
+ # The number of instances of the type specified by `InstanceType`.
32073
32146
  # @return [Integer]
32074
32147
  #
32075
32148
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RealTimeInferenceConfig AWS API Documentation
@@ -32274,6 +32347,11 @@ module Aws::SageMaker
32274
32347
  # job.
32275
32348
  # @return [Array<Types::EndpointInfo>]
32276
32349
  #
32350
+ # @!attribute [rw] vpc_config
32351
+ # Inference Recommender provisions SageMaker endpoints with access to
32352
+ # VPC in the inference recommendation job.
32353
+ # @return [Types::RecommendationJobVpcConfig]
32354
+ #
32277
32355
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RecommendationJobInputConfig AWS API Documentation
32278
32356
  #
32279
32357
  class RecommendationJobInputConfig < Struct.new(
@@ -32284,7 +32362,8 @@ module Aws::SageMaker
32284
32362
  :endpoint_configurations,
32285
32363
  :volume_kms_key_id,
32286
32364
  :container_config,
32287
- :endpoints)
32365
+ :endpoints,
32366
+ :vpc_config)
32288
32367
  SENSITIVE = []
32289
32368
  include Aws::Structure
32290
32369
  end
@@ -32405,6 +32484,29 @@ module Aws::SageMaker
32405
32484
  include Aws::Structure
32406
32485
  end
32407
32486
 
32487
+ # Inference Recommender provisions SageMaker endpoints with access to
32488
+ # VPC in the inference recommendation job.
32489
+ #
32490
+ # @!attribute [rw] security_group_ids
32491
+ # The VPC security group IDs. IDs have the form of `sg-xxxxxxxx`.
32492
+ # Specify the security groups for the VPC that is specified in the
32493
+ # `Subnets` field.
32494
+ # @return [Array<String>]
32495
+ #
32496
+ # @!attribute [rw] subnets
32497
+ # The ID of the subnets in the VPC to which you want to connect your
32498
+ # model.
32499
+ # @return [Array<String>]
32500
+ #
32501
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RecommendationJobVpcConfig AWS API Documentation
32502
+ #
32503
+ class RecommendationJobVpcConfig < Struct.new(
32504
+ :security_group_ids,
32505
+ :subnets)
32506
+ SENSITIVE = []
32507
+ include Aws::Structure
32508
+ end
32509
+
32408
32510
  # The metrics of recommendations.
32409
32511
  #
32410
32512
  # @!attribute [rw] cost_per_hour
@@ -32673,11 +32775,37 @@ module Aws::SageMaker
32673
32775
  include Aws::Structure
32674
32776
  end
32675
32777
 
32676
- # Describes the resources, including ML compute instances and ML storage
32677
- # volumes, to use for model training.
32778
+ # Describes the resources, including machine learning (ML) compute
32779
+ # instances and ML storage volumes, to use for model training.
32678
32780
  #
32679
32781
  # @!attribute [rw] instance_type
32680
32782
  # The ML compute instance type.
32783
+ #
32784
+ # <note markdown="1"> SageMaker Training on Amazon Elastic Compute Cloud (EC2) P4de
32785
+ # instances is in preview release starting December 9th, 2022.
32786
+ #
32787
+ # [Amazon EC2 P4de instances][1] (currently in preview) are powered by
32788
+ # 8 NVIDIA A100 GPUs with 80GB high-performance HBM2e GPU memory,
32789
+ # which accelerate the speed of training ML models that need to be
32790
+ # trained on large datasets of high-resolution data. In this preview
32791
+ # release, Amazon SageMaker supports ML training jobs on P4de
32792
+ # instances (`ml.p4de.24xlarge`) to reduce model training time. The
32793
+ # `ml.p4de.24xlarge` instances are available in the following Amazon
32794
+ # Web Services Regions.
32795
+ #
32796
+ # * US East (N. Virginia) (us-east-1)
32797
+ #
32798
+ # * US West (Oregon) (us-west-2)
32799
+ #
32800
+ # To request quota limit increase and start using P4de instances,
32801
+ # contact the SageMaker Training service team through your account
32802
+ # team.
32803
+ #
32804
+ # </note>
32805
+ #
32806
+ #
32807
+ #
32808
+ # [1]: http://aws.amazon.com/ec2/instance-types/p4/
32681
32809
  # @return [String]
32682
32810
  #
32683
32811
  # @!attribute [rw] instance_count
@@ -33692,12 +33820,15 @@ module Aws::SageMaker
33692
33820
  include Aws::Structure
33693
33821
  end
33694
33822
 
33695
- # Shows which variant is a production variant and which variant is a
33696
- # shadow variant. For shadow variants, also shows the sampling
33697
- # percentages.
33823
+ # The configuration of `ShadowMode` inference experiment type, which
33824
+ # specifies a production variant to take all the inference requests, and
33825
+ # a shadow variant to which Amazon SageMaker replicates a percentage of
33826
+ # the inference requests. For the shadow variant it also specifies the
33827
+ # percentage of requests that Amazon SageMaker replicates.
33698
33828
  #
33699
33829
  # @!attribute [rw] source_model_variant_name
33700
- # The name of the production variant.
33830
+ # The name of the production variant, which takes all the inference
33831
+ # requests.
33701
33832
  # @return [String]
33702
33833
  #
33703
33834
  # @!attribute [rw] shadow_model_variants
@@ -33720,8 +33851,8 @@ module Aws::SageMaker
33720
33851
  # @return [String]
33721
33852
  #
33722
33853
  # @!attribute [rw] sampling_percentage
33723
- # The percentage of inference requests that are replicated to the
33724
- # shadow variant.
33854
+ # The percentage of inference requests that Amazon SageMaker
33855
+ # replicates from the production variant to the shadow variant.
33725
33856
  # @return [Integer]
33726
33857
  #
33727
33858
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ShadowModelVariantConfig AWS API Documentation
@@ -34127,10 +34258,10 @@ module Aws::SageMaker
34127
34258
  # @return [Hash<String,String>]
34128
34259
  #
34129
34260
  # @!attribute [rw] desired_model_variants
34130
- # Array of `ModelVariantConfig` objects. There is one for each variant
34131
- # that you want to deploy after the inference experiment stops. Each
34132
- # `ModelVariantConfig` describes the infrastructure configuration for
34133
- # deploying the corresponding variant.
34261
+ # An array of `ModelVariantConfig` objects. There is one for each
34262
+ # variant that you want to deploy after the inference experiment
34263
+ # stops. Each `ModelVariantConfig` describes the infrastructure
34264
+ # configuration for deploying the corresponding variant.
34134
34265
  # @return [Array<Types::ModelVariantConfig>]
34135
34266
  #
34136
34267
  # @!attribute [rw] desired_state
@@ -37148,16 +37279,22 @@ module Aws::SageMaker
37148
37279
  # @return [String]
37149
37280
  #
37150
37281
  # @!attribute [rw] model_variants
37151
- # Array of `ModelVariantConfigSummary` objects. There is one for each
37282
+ # An array of `ModelVariantConfig` objects. There is one for each
37152
37283
  # variant, whose infrastructure configuration you want to update.
37153
37284
  # @return [Array<Types::ModelVariantConfig>]
37154
37285
  #
37155
37286
  # @!attribute [rw] data_storage_config
37156
- # The Amazon S3 storage configuration for the inference experiment.
37287
+ # The Amazon S3 location and configuration for storing inference
37288
+ # request and response data.
37157
37289
  # @return [Types::InferenceExperimentDataStorageConfig]
37158
37290
  #
37159
37291
  # @!attribute [rw] shadow_mode_config
37160
- # The Amazon S3 storage configuration for the inference experiment.
37292
+ # The configuration of `ShadowMode` inference experiment type. Use
37293
+ # this field to specify a production variant which takes all the
37294
+ # inference requests, and a shadow variant to which Amazon SageMaker
37295
+ # replicates a percentage of the inference requests. For the shadow
37296
+ # variant also specify the percentage of requests that Amazon
37297
+ # SageMaker replicates.
37161
37298
  # @return [Types::ShadowModeConfig]
37162
37299
  #
37163
37300
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateInferenceExperimentRequest AWS API Documentation
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-sagemaker/customizations'
53
53
  # @!group service
54
54
  module Aws::SageMaker
55
55
 
56
- GEM_VERSION = '1.154.0'
56
+ GEM_VERSION = '1.156.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sagemaker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.154.0
4
+ version: 1.156.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-30 00:00:00.000000000 Z
11
+ date: 2022-12-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core