aws-sdk-sagemaker 1.214.0 → 1.216.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 365a427fbdd60c018cb98452a4f03304fbb0f78fa12fac8aff7955f02e39aa0d
4
- data.tar.gz: 41cef9c24305c182b8ed6e60a8a5d264072c07b8ee2735b6121505d0bf01982a
3
+ metadata.gz: ca75f03989ceecfdd619b9896e6af3dbb0554dd81ea98c3f0f6fac9be41493e2
4
+ data.tar.gz: 8c9201413b4e893def08f750d9b561ac560fd77186c1a851fbb54e221c367886
5
5
  SHA512:
6
- metadata.gz: a5cd32a5c604dce79e314f08847107720d7459a685d1e19d11772a6011a798aae1b1767397a9d33f04de6785e11d0fcf958e443a97b203519cba529030d4cb8d
7
- data.tar.gz: bb2ca158921be877a71a8abfaf534ef258fa1e90bb0f988cc2e64d615d016ea2cca206c431c1d002719c730eeedf84b5ff49cce91982444b87b5afeef8c03db2
6
+ metadata.gz: ad24efe1b58d1d0a14a2c7d2e4511b0556674c998b105b84e5e786e81a4666110f9e9d21da5c48c6832c811345f51c10c0416a415aebffa90bfcff2313052d14
7
+ data.tar.gz: 2a6978535604755b73ab331ac9ee44bde9f9e8bb28d26da37e4faaf457a6e7fd3261d886f96d9738848cda3af540c062e553ddd6ebf898acbd7fe9f462a0c0f8
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.216.0 (2023-10-12)
5
+ ------------------
6
+
7
+ * Feature - Amazon SageMaker Canvas adds KendraSettings and DirectDeploySettings support for CanvasAppSettings
8
+
9
+ 1.215.0 (2023-10-04)
10
+ ------------------
11
+
12
+ * Feature - Adding support for AdditionalS3DataSource, a data source used for training or inference that is in addition to the input dataset or model data.
13
+
4
14
  1.214.0 (2023-10-03)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.214.0
1
+ 1.216.0
@@ -619,6 +619,9 @@ module Aws::SageMaker
619
619
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].framework #=> String
620
620
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].framework_version #=> String
621
621
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].nearest_model_name #=> String
622
+ # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].additional_s3_data_source.s3_data_type #=> String, one of "S3Object"
623
+ # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].additional_s3_data_source.s3_uri #=> String
624
+ # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].additional_s3_data_source.compression_type #=> String, one of "None", "Gzip"
622
625
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.supported_transform_instance_types #=> Array
623
626
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.supported_transform_instance_types[0] #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge"
624
627
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.supported_realtime_inference_instance_types #=> Array
@@ -846,6 +849,11 @@ module Aws::SageMaker
846
849
  # metric_name: "MetricName", # required
847
850
  # },
848
851
  # ],
852
+ # additional_s3_data_source: {
853
+ # s3_data_type: "S3Object", # required, accepts S3Object
854
+ # s3_uri: "S3Uri", # required
855
+ # compression_type: "None", # accepts None, Gzip
856
+ # },
849
857
  # },
850
858
  # inference_specification: {
851
859
  # containers: [ # required
@@ -864,6 +872,11 @@ module Aws::SageMaker
864
872
  # framework: "String",
865
873
  # framework_version: "ModelPackageFrameworkVersion",
866
874
  # nearest_model_name: "String",
875
+ # additional_s3_data_source: {
876
+ # s3_data_type: "S3Object", # required, accepts S3Object
877
+ # s3_uri: "S3Uri", # required
878
+ # compression_type: "None", # accepts None, Gzip
879
+ # },
867
880
  # },
868
881
  # ],
869
882
  # supported_transform_instance_types: ["ml.m4.xlarge"], # accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
@@ -2361,6 +2374,12 @@ module Aws::SageMaker
2361
2374
  # secret_arn: "SecretArn",
2362
2375
  # },
2363
2376
  # ],
2377
+ # kendra_settings: {
2378
+ # status: "ENABLED", # accepts ENABLED, DISABLED
2379
+ # },
2380
+ # direct_deploy_settings: {
2381
+ # status: "ENABLED", # accepts ENABLED, DISABLED
2382
+ # },
2364
2383
  # },
2365
2384
  # },
2366
2385
  # subnet_ids: ["SubnetId"], # required
@@ -3175,12 +3194,15 @@ module Aws::SageMaker
3175
3194
  # defined in the `FeatureStore` to describe a `Record`.
3176
3195
  #
3177
3196
  # The `FeatureGroup` defines the schema and features contained in the
3178
- # FeatureGroup. A `FeatureGroup` definition is composed of a list of
3197
+ # `FeatureGroup`. A `FeatureGroup` definition is composed of a list of
3179
3198
  # `Features`, a `RecordIdentifierFeatureName`, an `EventTimeFeatureName`
3180
3199
  # and configurations for its `OnlineStore` and `OfflineStore`. Check
3181
3200
  # [Amazon Web Services service quotas][1] to see the `FeatureGroup`s
3182
3201
  # quota for your Amazon Web Services account.
3183
3202
  #
3203
+ # Note that it can take approximately 10-15 minutes to provision an
3204
+ # `OnlineStore` `FeatureGroup` with the `InMemory` `StorageType`.
3205
+ #
3184
3206
  # You must include at least one of `OnlineStoreConfig` and
3185
3207
  # `OfflineStoreConfig` to create a `FeatureGroup`.
3186
3208
  #
@@ -5685,6 +5707,11 @@ module Aws::SageMaker
5685
5707
  # framework: "String",
5686
5708
  # framework_version: "ModelPackageFrameworkVersion",
5687
5709
  # nearest_model_name: "String",
5710
+ # additional_s3_data_source: {
5711
+ # s3_data_type: "S3Object", # required, accepts S3Object
5712
+ # s3_uri: "S3Uri", # required
5713
+ # compression_type: "None", # accepts None, Gzip
5714
+ # },
5688
5715
  # },
5689
5716
  # ],
5690
5717
  # supported_transform_instance_types: ["ml.m4.xlarge"], # accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
@@ -5884,6 +5911,11 @@ module Aws::SageMaker
5884
5911
  # framework: "String",
5885
5912
  # framework_version: "ModelPackageFrameworkVersion",
5886
5913
  # nearest_model_name: "String",
5914
+ # additional_s3_data_source: {
5915
+ # s3_data_type: "S3Object", # required, accepts S3Object
5916
+ # s3_uri: "S3Uri", # required
5917
+ # compression_type: "None", # accepts None, Gzip
5918
+ # },
5887
5919
  # },
5888
5920
  # ],
5889
5921
  # supported_transform_instance_types: ["ml.m4.xlarge"], # accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
@@ -8206,6 +8238,12 @@ module Aws::SageMaker
8206
8238
  # secret_arn: "SecretArn",
8207
8239
  # },
8208
8240
  # ],
8241
+ # kendra_settings: {
8242
+ # status: "ENABLED", # accepts ENABLED, DISABLED
8243
+ # },
8244
+ # direct_deploy_settings: {
8245
+ # status: "ENABLED", # accepts ENABLED, DISABLED
8246
+ # },
8209
8247
  # },
8210
8248
  # },
8211
8249
  # })
@@ -8917,6 +8955,9 @@ module Aws::SageMaker
8917
8955
  # Web Services Glue database and tables that are automatically created
8918
8956
  # for your `OfflineStore` are not deleted.
8919
8957
  #
8958
+ # Note that it can take approximately 10-15 minutes to delete an
8959
+ # `OnlineStore` `FeatureGroup` with the `InMemory` `StorageType`.
8960
+ #
8920
8961
  # @option params [required, String] :feature_group_name
8921
8962
  # The name of the `FeatureGroup` you want to delete. The name must be
8922
8963
  # unique within an Amazon Web Services Region in an Amazon Web Services
@@ -9884,6 +9925,9 @@ module Aws::SageMaker
9884
9925
  # resp.training_specification.supported_tuning_job_objective_metrics #=> Array
9885
9926
  # resp.training_specification.supported_tuning_job_objective_metrics[0].type #=> String, one of "Maximize", "Minimize"
9886
9927
  # resp.training_specification.supported_tuning_job_objective_metrics[0].metric_name #=> String
9928
+ # resp.training_specification.additional_s3_data_source.s3_data_type #=> String, one of "S3Object"
9929
+ # resp.training_specification.additional_s3_data_source.s3_uri #=> String
9930
+ # resp.training_specification.additional_s3_data_source.compression_type #=> String, one of "None", "Gzip"
9887
9931
  # resp.inference_specification.containers #=> Array
9888
9932
  # resp.inference_specification.containers[0].container_hostname #=> String
9889
9933
  # resp.inference_specification.containers[0].image #=> String
@@ -9896,6 +9940,9 @@ module Aws::SageMaker
9896
9940
  # resp.inference_specification.containers[0].framework #=> String
9897
9941
  # resp.inference_specification.containers[0].framework_version #=> String
9898
9942
  # resp.inference_specification.containers[0].nearest_model_name #=> String
9943
+ # resp.inference_specification.containers[0].additional_s3_data_source.s3_data_type #=> String, one of "S3Object"
9944
+ # resp.inference_specification.containers[0].additional_s3_data_source.s3_uri #=> String
9945
+ # resp.inference_specification.containers[0].additional_s3_data_source.compression_type #=> String, one of "None", "Gzip"
9899
9946
  # resp.inference_specification.supported_transform_instance_types #=> Array
9900
9947
  # resp.inference_specification.supported_transform_instance_types[0] #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge"
9901
9948
  # resp.inference_specification.supported_realtime_inference_instance_types #=> Array
@@ -10939,6 +10986,8 @@ module Aws::SageMaker
10939
10986
  # resp.default_user_settings.canvas_app_settings.identity_provider_o_auth_settings[0].data_source_name #=> String, one of "SalesforceGenie", "Snowflake"
10940
10987
  # resp.default_user_settings.canvas_app_settings.identity_provider_o_auth_settings[0].status #=> String, one of "ENABLED", "DISABLED"
10941
10988
  # resp.default_user_settings.canvas_app_settings.identity_provider_o_auth_settings[0].secret_arn #=> String
10989
+ # resp.default_user_settings.canvas_app_settings.kendra_settings.status #=> String, one of "ENABLED", "DISABLED"
10990
+ # resp.default_user_settings.canvas_app_settings.direct_deploy_settings.status #=> String, one of "ENABLED", "DISABLED"
10942
10991
  # resp.app_network_access_type #=> String, one of "PublicInternetOnly", "VpcOnly"
10943
10992
  # resp.home_efs_file_system_kms_key_id #=> String
10944
10993
  # resp.subnet_ids #=> Array
@@ -13057,6 +13106,9 @@ module Aws::SageMaker
13057
13106
  # resp.inference_specification.containers[0].framework #=> String
13058
13107
  # resp.inference_specification.containers[0].framework_version #=> String
13059
13108
  # resp.inference_specification.containers[0].nearest_model_name #=> String
13109
+ # resp.inference_specification.containers[0].additional_s3_data_source.s3_data_type #=> String, one of "S3Object"
13110
+ # resp.inference_specification.containers[0].additional_s3_data_source.s3_uri #=> String
13111
+ # resp.inference_specification.containers[0].additional_s3_data_source.compression_type #=> String, one of "None", "Gzip"
13060
13112
  # resp.inference_specification.supported_transform_instance_types #=> Array
13061
13113
  # resp.inference_specification.supported_transform_instance_types[0] #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge"
13062
13114
  # resp.inference_specification.supported_realtime_inference_instance_types #=> Array
@@ -13188,6 +13240,9 @@ module Aws::SageMaker
13188
13240
  # resp.additional_inference_specifications[0].containers[0].framework #=> String
13189
13241
  # resp.additional_inference_specifications[0].containers[0].framework_version #=> String
13190
13242
  # resp.additional_inference_specifications[0].containers[0].nearest_model_name #=> String
13243
+ # resp.additional_inference_specifications[0].containers[0].additional_s3_data_source.s3_data_type #=> String, one of "S3Object"
13244
+ # resp.additional_inference_specifications[0].containers[0].additional_s3_data_source.s3_uri #=> String
13245
+ # resp.additional_inference_specifications[0].containers[0].additional_s3_data_source.compression_type #=> String, one of "None", "Gzip"
13191
13246
  # resp.additional_inference_specifications[0].supported_transform_instance_types #=> Array
13192
13247
  # resp.additional_inference_specifications[0].supported_transform_instance_types[0] #=> String, one of "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.m5.large", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge"
13193
13248
  # resp.additional_inference_specifications[0].supported_realtime_inference_instance_types #=> Array
@@ -14619,6 +14674,8 @@ module Aws::SageMaker
14619
14674
  # resp.user_settings.canvas_app_settings.identity_provider_o_auth_settings[0].data_source_name #=> String, one of "SalesforceGenie", "Snowflake"
14620
14675
  # resp.user_settings.canvas_app_settings.identity_provider_o_auth_settings[0].status #=> String, one of "ENABLED", "DISABLED"
14621
14676
  # resp.user_settings.canvas_app_settings.identity_provider_o_auth_settings[0].secret_arn #=> String
14677
+ # resp.user_settings.canvas_app_settings.kendra_settings.status #=> String, one of "ENABLED", "DISABLED"
14678
+ # resp.user_settings.canvas_app_settings.direct_deploy_settings.status #=> String, one of "ENABLED", "DISABLED"
14622
14679
  #
14623
14680
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeUserProfile AWS API Documentation
14624
14681
  #
@@ -22172,6 +22229,12 @@ module Aws::SageMaker
22172
22229
  # secret_arn: "SecretArn",
22173
22230
  # },
22174
22231
  # ],
22232
+ # kendra_settings: {
22233
+ # status: "ENABLED", # accepts ENABLED, DISABLED
22234
+ # },
22235
+ # direct_deploy_settings: {
22236
+ # status: "ENABLED", # accepts ENABLED, DISABLED
22237
+ # },
22175
22238
  # },
22176
22239
  # },
22177
22240
  # domain_settings_for_update: {
@@ -22984,6 +23047,11 @@ module Aws::SageMaker
22984
23047
  # framework: "String",
22985
23048
  # framework_version: "ModelPackageFrameworkVersion",
22986
23049
  # nearest_model_name: "String",
23050
+ # additional_s3_data_source: {
23051
+ # s3_data_type: "S3Object", # required, accepts S3Object
23052
+ # s3_uri: "S3Uri", # required
23053
+ # compression_type: "None", # accepts None, Gzip
23054
+ # },
22987
23055
  # },
22988
23056
  # ],
22989
23057
  # supported_transform_instance_types: ["ml.m4.xlarge"], # accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
@@ -23936,6 +24004,12 @@ module Aws::SageMaker
23936
24004
  # secret_arn: "SecretArn",
23937
24005
  # },
23938
24006
  # ],
24007
+ # kendra_settings: {
24008
+ # status: "ENABLED", # accepts ENABLED, DISABLED
24009
+ # },
24010
+ # direct_deploy_settings: {
24011
+ # status: "ENABLED", # accepts ENABLED, DISABLED
24012
+ # },
23939
24013
  # },
23940
24014
  # },
23941
24015
  # })
@@ -24193,7 +24267,7 @@ module Aws::SageMaker
24193
24267
  params: params,
24194
24268
  config: config)
24195
24269
  context[:gem_name] = 'aws-sdk-sagemaker'
24196
- context[:gem_version] = '1.214.0'
24270
+ context[:gem_version] = '1.216.0'
24197
24271
  Seahorse::Client::Request.new(handlers, context)
24198
24272
  end
24199
24273
 
@@ -27,6 +27,8 @@ module Aws::SageMaker
27
27
  AdditionalCodeRepositoryNamesOrUrls = Shapes::ListShape.new(name: 'AdditionalCodeRepositoryNamesOrUrls')
28
28
  AdditionalInferenceSpecificationDefinition = Shapes::StructureShape.new(name: 'AdditionalInferenceSpecificationDefinition')
29
29
  AdditionalInferenceSpecifications = Shapes::ListShape.new(name: 'AdditionalInferenceSpecifications')
30
+ AdditionalS3DataSource = Shapes::StructureShape.new(name: 'AdditionalS3DataSource')
31
+ AdditionalS3DataSourceDataType = Shapes::StringShape.new(name: 'AdditionalS3DataSourceDataType')
30
32
  AgentVersion = Shapes::StructureShape.new(name: 'AgentVersion')
31
33
  AgentVersions = Shapes::ListShape.new(name: 'AgentVersions')
32
34
  AggregationTransformationValue = Shapes::StringShape.new(name: 'AggregationTransformationValue')
@@ -651,6 +653,7 @@ module Aws::SageMaker
651
653
  DeviceSummary = Shapes::StructureShape.new(name: 'DeviceSummary')
652
654
  Devices = Shapes::ListShape.new(name: 'Devices')
653
655
  Dimension = Shapes::IntegerShape.new(name: 'Dimension')
656
+ DirectDeploySettings = Shapes::StructureShape.new(name: 'DirectDeploySettings')
654
657
  DirectInternetAccess = Shapes::StringShape.new(name: 'DirectInternetAccess')
655
658
  Direction = Shapes::StringShape.new(name: 'Direction')
656
659
  DirectoryPath = Shapes::StringShape.new(name: 'DirectoryPath')
@@ -1016,6 +1019,7 @@ module Aws::SageMaker
1016
1019
  JsonPath = Shapes::StringShape.new(name: 'JsonPath')
1017
1020
  JupyterServerAppSettings = Shapes::StructureShape.new(name: 'JupyterServerAppSettings')
1018
1021
  KeepAlivePeriodInSeconds = Shapes::IntegerShape.new(name: 'KeepAlivePeriodInSeconds')
1022
+ KendraSettings = Shapes::StructureShape.new(name: 'KendraSettings')
1019
1023
  KernelDisplayName = Shapes::StringShape.new(name: 'KernelDisplayName')
1020
1024
  KernelGatewayAppSettings = Shapes::StructureShape.new(name: 'KernelGatewayAppSettings')
1021
1025
  KernelGatewayImageConfig = Shapes::StructureShape.new(name: 'KernelGatewayImageConfig')
@@ -2148,6 +2152,11 @@ module Aws::SageMaker
2148
2152
 
2149
2153
  AdditionalInferenceSpecifications.member = Shapes::ShapeRef.new(shape: AdditionalInferenceSpecificationDefinition)
2150
2154
 
2155
+ AdditionalS3DataSource.add_member(:s3_data_type, Shapes::ShapeRef.new(shape: AdditionalS3DataSourceDataType, required: true, location_name: "S3DataType"))
2156
+ AdditionalS3DataSource.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3Uri, required: true, location_name: "S3Uri"))
2157
+ AdditionalS3DataSource.add_member(:compression_type, Shapes::ShapeRef.new(shape: CompressionType, location_name: "CompressionType"))
2158
+ AdditionalS3DataSource.struct_class = Types::AdditionalS3DataSource
2159
+
2151
2160
  AgentVersion.add_member(:version, Shapes::ShapeRef.new(shape: EdgeVersion, required: true, location_name: "Version"))
2152
2161
  AgentVersion.add_member(:agent_count, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "AgentCount"))
2153
2162
  AgentVersion.struct_class = Types::AgentVersion
@@ -2540,6 +2549,8 @@ module Aws::SageMaker
2540
2549
  CanvasAppSettings.add_member(:model_register_settings, Shapes::ShapeRef.new(shape: ModelRegisterSettings, location_name: "ModelRegisterSettings"))
2541
2550
  CanvasAppSettings.add_member(:workspace_settings, Shapes::ShapeRef.new(shape: WorkspaceSettings, location_name: "WorkspaceSettings"))
2542
2551
  CanvasAppSettings.add_member(:identity_provider_o_auth_settings, Shapes::ShapeRef.new(shape: IdentityProviderOAuthSettings, location_name: "IdentityProviderOAuthSettings"))
2552
+ CanvasAppSettings.add_member(:kendra_settings, Shapes::ShapeRef.new(shape: KendraSettings, location_name: "KendraSettings"))
2553
+ CanvasAppSettings.add_member(:direct_deploy_settings, Shapes::ShapeRef.new(shape: DirectDeploySettings, location_name: "DirectDeploySettings"))
2543
2554
  CanvasAppSettings.struct_class = Types::CanvasAppSettings
2544
2555
 
2545
2556
  CapacitySize.add_member(:type, Shapes::ShapeRef.new(shape: CapacitySizeType, required: true, location_name: "Type"))
@@ -4850,6 +4861,9 @@ module Aws::SageMaker
4850
4861
 
4851
4862
  Devices.member = Shapes::ShapeRef.new(shape: Device)
4852
4863
 
4864
+ DirectDeploySettings.add_member(:status, Shapes::ShapeRef.new(shape: FeatureStatus, location_name: "Status"))
4865
+ DirectDeploySettings.struct_class = Types::DirectDeploySettings
4866
+
4853
4867
  DisableSagemakerServicecatalogPortfolioInput.struct_class = Types::DisableSagemakerServicecatalogPortfolioInput
4854
4868
 
4855
4869
  DisableSagemakerServicecatalogPortfolioOutput.struct_class = Types::DisableSagemakerServicecatalogPortfolioOutput
@@ -5726,6 +5740,9 @@ module Aws::SageMaker
5726
5740
  JupyterServerAppSettings.add_member(:code_repositories, Shapes::ShapeRef.new(shape: CodeRepositories, location_name: "CodeRepositories"))
5727
5741
  JupyterServerAppSettings.struct_class = Types::JupyterServerAppSettings
5728
5742
 
5743
+ KendraSettings.add_member(:status, Shapes::ShapeRef.new(shape: FeatureStatus, location_name: "Status"))
5744
+ KendraSettings.struct_class = Types::KendraSettings
5745
+
5729
5746
  KernelGatewayAppSettings.add_member(:default_resource_spec, Shapes::ShapeRef.new(shape: ResourceSpec, location_name: "DefaultResourceSpec"))
5730
5747
  KernelGatewayAppSettings.add_member(:custom_images, Shapes::ShapeRef.new(shape: CustomImages, location_name: "CustomImages"))
5731
5748
  KernelGatewayAppSettings.add_member(:lifecycle_config_arns, Shapes::ShapeRef.new(shape: LifecycleConfigArns, location_name: "LifecycleConfigArns"))
@@ -7137,6 +7154,7 @@ module Aws::SageMaker
7137
7154
  ModelPackageContainerDefinition.add_member(:framework, Shapes::ShapeRef.new(shape: String, location_name: "Framework"))
7138
7155
  ModelPackageContainerDefinition.add_member(:framework_version, Shapes::ShapeRef.new(shape: ModelPackageFrameworkVersion, location_name: "FrameworkVersion"))
7139
7156
  ModelPackageContainerDefinition.add_member(:nearest_model_name, Shapes::ShapeRef.new(shape: String, location_name: "NearestModelName"))
7157
+ ModelPackageContainerDefinition.add_member(:additional_s3_data_source, Shapes::ShapeRef.new(shape: AdditionalS3DataSource, location_name: "AdditionalS3DataSource"))
7140
7158
  ModelPackageContainerDefinition.struct_class = Types::ModelPackageContainerDefinition
7141
7159
 
7142
7160
  ModelPackageContainerDefinitionList.member = Shapes::ShapeRef.new(shape: ModelPackageContainerDefinition)
@@ -8639,6 +8657,7 @@ module Aws::SageMaker
8639
8657
  TrainingSpecification.add_member(:metric_definitions, Shapes::ShapeRef.new(shape: MetricDefinitionList, location_name: "MetricDefinitions"))
8640
8658
  TrainingSpecification.add_member(:training_channels, Shapes::ShapeRef.new(shape: ChannelSpecifications, required: true, location_name: "TrainingChannels"))
8641
8659
  TrainingSpecification.add_member(:supported_tuning_job_objective_metrics, Shapes::ShapeRef.new(shape: HyperParameterTuningJobObjectives, location_name: "SupportedTuningJobObjectiveMetrics"))
8660
+ TrainingSpecification.add_member(:additional_s3_data_source, Shapes::ShapeRef.new(shape: AdditionalS3DataSource, location_name: "AdditionalS3DataSource"))
8642
8661
  TrainingSpecification.struct_class = Types::TrainingSpecification
8643
8662
 
8644
8663
  TransformDataSource.add_member(:s3_data_source, Shapes::ShapeRef.new(shape: TransformS3DataSource, required: true, location_name: "S3DataSource"))
@@ -223,6 +223,35 @@ module Aws::SageMaker
223
223
  include Aws::Structure
224
224
  end
225
225
 
226
+ # A data source used for training or inference that is in addition to
227
+ # the input dataset or model data.
228
+ #
229
+ # @!attribute [rw] s3_data_type
230
+ # The data type of the additional data source that you specify for use
231
+ # in inference or training.
232
+ # @return [String]
233
+ #
234
+ # @!attribute [rw] s3_uri
235
+ # The uniform resource identifier (URI) used to identify an additional
236
+ # data source used in inference or training.
237
+ # @return [String]
238
+ #
239
+ # @!attribute [rw] compression_type
240
+ # The type of compression used for an additional data source used in
241
+ # inference or training. Specify `None` if your additional data source
242
+ # is not compressed.
243
+ # @return [String]
244
+ #
245
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AdditionalS3DataSource AWS API Documentation
246
+ #
247
+ class AdditionalS3DataSource < Struct.new(
248
+ :s3_data_type,
249
+ :s3_uri,
250
+ :compression_type)
251
+ SENSITIVE = []
252
+ include Aws::Structure
253
+ end
254
+
226
255
  # Edge Manager agent version.
227
256
  #
228
257
  # @!attribute [rw] version
@@ -3095,7 +3124,7 @@ module Aws::SageMaker
3095
3124
  # The SageMaker Canvas application settings.
3096
3125
  #
3097
3126
  # @!attribute [rw] time_series_forecasting_settings
3098
- # Time series forecast settings for the Canvas application.
3127
+ # Time series forecast settings for the SageMaker Canvas application.
3099
3128
  # @return [Types::TimeSeriesForecastingSettings]
3100
3129
  #
3101
3130
  # @!attribute [rw] model_register_settings
@@ -3110,13 +3139,23 @@ module Aws::SageMaker
3110
3139
  # The settings for connecting to an external data source with OAuth.
3111
3140
  # @return [Array<Types::IdentityProviderOAuthSetting>]
3112
3141
  #
3142
+ # @!attribute [rw] kendra_settings
3143
+ # The settings for document querying.
3144
+ # @return [Types::KendraSettings]
3145
+ #
3146
+ # @!attribute [rw] direct_deploy_settings
3147
+ # The model deployment settings for the SageMaker Canvas application.
3148
+ # @return [Types::DirectDeploySettings]
3149
+ #
3113
3150
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CanvasAppSettings AWS API Documentation
3114
3151
  #
3115
3152
  class CanvasAppSettings < Struct.new(
3116
3153
  :time_series_forecasting_settings,
3117
3154
  :model_register_settings,
3118
3155
  :workspace_settings,
3119
- :identity_provider_o_auth_settings)
3156
+ :identity_provider_o_auth_settings,
3157
+ :kendra_settings,
3158
+ :direct_deploy_settings)
3120
3159
  SENSITIVE = []
3121
3160
  include Aws::Structure
3122
3161
  end
@@ -16312,6 +16351,30 @@ module Aws::SageMaker
16312
16351
  include Aws::Structure
16313
16352
  end
16314
16353
 
16354
+ # The model deployment settings for the SageMaker Canvas application.
16355
+ #
16356
+ # <note markdown="1"> In order to enable model deployment for Canvas, the SageMaker
16357
+ # Domain's or user profile's Amazon Web Services IAM execution role
16358
+ # must have the `AmazonSageMakerCanvasDirectDeployAccess` policy
16359
+ # attached. You can also turn on model deployment permissions through
16360
+ # the SageMaker Domain's or user profile's settings in the SageMaker
16361
+ # console.
16362
+ #
16363
+ # </note>
16364
+ #
16365
+ # @!attribute [rw] status
16366
+ # Describes whether model deployment permissions are enabled or
16367
+ # disabled in the Canvas application.
16368
+ # @return [String]
16369
+ #
16370
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DirectDeploySettings AWS API Documentation
16371
+ #
16372
+ class DirectDeploySettings < Struct.new(
16373
+ :status)
16374
+ SENSITIVE = []
16375
+ include Aws::Structure
16376
+ end
16377
+
16315
16378
  # @api private
16316
16379
  #
16317
16380
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DisableSagemakerServicecatalogPortfolioInput AWS API Documentation
@@ -21167,8 +21230,8 @@ module Aws::SageMaker
21167
21230
  include Aws::Structure
21168
21231
  end
21169
21232
 
21170
- # The Amazon SageMaker Canvas app setting where you configure OAuth for
21171
- # connecting to an external data source, such as Snowflake.
21233
+ # The Amazon SageMaker Canvas application setting where you configure
21234
+ # OAuth for connecting to an external data source, such as Snowflake.
21172
21235
  #
21173
21236
  # @!attribute [rw] data_source_name
21174
21237
  # The name of the data source that you're connecting to. Canvas
@@ -22165,6 +22228,22 @@ module Aws::SageMaker
22165
22228
  include Aws::Structure
22166
22229
  end
22167
22230
 
22231
+ # The Amazon SageMaker Canvas application setting where you configure
22232
+ # document querying.
22233
+ #
22234
+ # @!attribute [rw] status
22235
+ # Describes whether the document querying feature is enabled or
22236
+ # disabled in the Canvas application.
22237
+ # @return [String]
22238
+ #
22239
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/KendraSettings AWS API Documentation
22240
+ #
22241
+ class KendraSettings < Struct.new(
22242
+ :status)
22243
+ SENSITIVE = []
22244
+ include Aws::Structure
22245
+ end
22246
+
22168
22247
  # The KernelGateway app settings.
22169
22248
  #
22170
22249
  # @!attribute [rw] default_resource_spec
@@ -29537,6 +29616,11 @@ module Aws::SageMaker
29537
29616
  # `ListModelMetadata`.
29538
29617
  # @return [String]
29539
29618
  #
29619
+ # @!attribute [rw] additional_s3_data_source
29620
+ # The additional data source that is used during inference in the
29621
+ # Docker container for your model package.
29622
+ # @return [Types::AdditionalS3DataSource]
29623
+ #
29540
29624
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelPackageContainerDefinition AWS API Documentation
29541
29625
  #
29542
29626
  class ModelPackageContainerDefinition < Struct.new(
@@ -29549,7 +29633,8 @@ module Aws::SageMaker
29549
29633
  :model_input,
29550
29634
  :framework,
29551
29635
  :framework_version,
29552
- :nearest_model_name)
29636
+ :nearest_model_name,
29637
+ :additional_s3_data_source)
29553
29638
  SENSITIVE = []
29554
29639
  include Aws::Structure
29555
29640
  end
@@ -38664,6 +38749,10 @@ module Aws::SageMaker
38664
38749
  # the objective metric in a hyperparameter tuning job.
38665
38750
  # @return [Array<Types::HyperParameterTuningJobObjective>]
38666
38751
  #
38752
+ # @!attribute [rw] additional_s3_data_source
38753
+ # The additional data source used during the training job.
38754
+ # @return [Types::AdditionalS3DataSource]
38755
+ #
38667
38756
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TrainingSpecification AWS API Documentation
38668
38757
  #
38669
38758
  class TrainingSpecification < Struct.new(
@@ -38674,7 +38763,8 @@ module Aws::SageMaker
38674
38763
  :supports_distributed_training,
38675
38764
  :metric_definitions,
38676
38765
  :training_channels,
38677
- :supported_tuning_job_objective_metrics)
38766
+ :supported_tuning_job_objective_metrics,
38767
+ :additional_s3_data_source)
38678
38768
  SENSITIVE = []
38679
38769
  include Aws::Structure
38680
38770
  end
@@ -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.214.0'
56
+ GEM_VERSION = '1.216.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.214.0
4
+ version: 1.216.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: 2023-10-03 00:00:00.000000000 Z
11
+ date: 2023-10-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core