aws-sdk-sagemaker 1.205.0 → 1.207.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: 88d91cfd13bc367946d074931339b0434659c8cb71e56271cbd335ed05f52f10
4
- data.tar.gz: 4035934625187688d3d8506cf442e8ce3d3b4d040426cdc509f0510f9d49a7b5
3
+ metadata.gz: 04546f4a01e3f71103b4bd895c6af9606228edf6db98c8cbf0ac9da9552e803f
4
+ data.tar.gz: 51e82fdade39ee3b2c11c370d4118d8c6ad505219d6653a172b430a1e4e0b2fa
5
5
  SHA512:
6
- metadata.gz: 400478bb94bb77046e380a2c7747736908cfe336c225ef5f02d87f6ad04c6dd34ff8c5d3b950a5a460e41a25e3a9995702ed532250bf3f01cfbd7a7b09d355c3
7
- data.tar.gz: 4424cd867f5509c35d31ad2403fbb681fdbd76fe1581514d3d250cb6b7208a8327822cccd0ad3d2f58b12ac186492bbec4efcdc04478c2d12804af5b5ddab4ac
6
+ metadata.gz: 99a6d5ff454c72b82077875181a1cb24a653afaf0f679f05f94f149cac44d482d73f67880a9675b16d9e13693a704429af74022adf84d9cf1d4ba40ff04a9877
7
+ data.tar.gz: b069c081e80fd868eea0b18fc37e30af3f8684f1c15f8aadf1545241482dae1b65831acf48078b65c0ecffb16fcf79546254ae68d707b4e4e51c97bbc2a12e9e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.207.0 (2023-08-30)
5
+ ------------------
6
+
7
+ * Feature - Amazon SageMaker Canvas adds IdentityProviderOAuthSettings support for CanvasAppSettings
8
+
9
+ 1.206.0 (2023-08-15)
10
+ ------------------
11
+
12
+ * Feature - SageMaker Inference Recommender now provides SupportedResponseMIMETypes from DescribeInferenceRecommendationsJob response
13
+
4
14
  1.205.0 (2023-08-09)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.205.0
1
+ 1.207.0
@@ -2345,6 +2345,13 @@ module Aws::SageMaker
2345
2345
  # s3_artifact_path: "S3Uri",
2346
2346
  # s3_kms_key_id: "KmsKeyId",
2347
2347
  # },
2348
+ # identity_provider_o_auth_settings: [
2349
+ # {
2350
+ # data_source_name: "SalesforceGenie", # accepts SalesforceGenie, Snowflake
2351
+ # status: "ENABLED", # accepts ENABLED, DISABLED
2352
+ # secret_arn: "SecretArn",
2353
+ # },
2354
+ # ],
2348
2355
  # },
2349
2356
  # },
2350
2357
  # subnet_ids: ["SubnetId"], # required
@@ -2606,10 +2613,6 @@ module Aws::SageMaker
2606
2613
  #
2607
2614
  # Use this API to deploy models using SageMaker hosting services.
2608
2615
  #
2609
- # For an example that calls this method when deploying a model to
2610
- # SageMaker hosting services, see the [Create Endpoint example
2611
- # notebook.][2]
2612
- #
2613
2616
  # <note markdown="1"> You must not delete an `EndpointConfig` that is in use by an endpoint
2614
2617
  # that is live or while the `UpdateEndpoint` or `CreateEndpoint`
2615
2618
  # operations are being performed on the endpoint. To update an endpoint,
@@ -2624,16 +2627,16 @@ module Aws::SageMaker
2624
2627
  # the resources (ML compute instances), and deploys the model(s) on
2625
2628
  # them.
2626
2629
  #
2627
- # <note markdown="1"> When you call [CreateEndpoint][3], a load call is made to DynamoDB to
2630
+ # <note markdown="1"> When you call [CreateEndpoint][2], a load call is made to DynamoDB to
2628
2631
  # verify that your endpoint configuration exists. When you read data
2629
- # from a DynamoDB table supporting [ `Eventually Consistent Reads` ][4],
2632
+ # from a DynamoDB table supporting [ `Eventually Consistent Reads` ][3],
2630
2633
  # the response might not reflect the results of a recently completed
2631
2634
  # write operation. The response might include some stale data. If the
2632
2635
  # dependent entities are not yet in DynamoDB, this causes a validation
2633
2636
  # error. If you repeat your read request after a short time, the
2634
2637
  # response should return the latest data. So retry logic is recommended
2635
2638
  # to handle these possible issues. We also recommend that customers call
2636
- # [DescribeEndpointConfig][5] before calling [CreateEndpoint][3] to
2639
+ # [DescribeEndpointConfig][4] before calling [CreateEndpoint][2] to
2637
2640
  # minimize the potential impact of a DynamoDB eventually consistent
2638
2641
  # read.
2639
2642
  #
@@ -2643,7 +2646,7 @@ module Aws::SageMaker
2643
2646
  # `Creating`. After it creates the endpoint, it sets the status to
2644
2647
  # `InService`. SageMaker can then process incoming requests for
2645
2648
  # inferences. To check the status of an endpoint, use the
2646
- # [DescribeEndpoint][6] API.
2649
+ # [DescribeEndpoint][5] API.
2647
2650
  #
2648
2651
  # If any of the models hosted at this endpoint get model data from an
2649
2652
  # Amazon S3 location, SageMaker uses Amazon Web Services Security Token
@@ -2652,13 +2655,13 @@ module Aws::SageMaker
2652
2655
  # account by default. If you previously deactivated Amazon Web Services
2653
2656
  # STS for a region, you need to reactivate Amazon Web Services STS for
2654
2657
  # that region. For more information, see [Activating and Deactivating
2655
- # Amazon Web Services STS in an Amazon Web Services Region][7] in the
2658
+ # Amazon Web Services STS in an Amazon Web Services Region][6] in the
2656
2659
  # *Amazon Web Services Identity and Access Management User Guide*.
2657
2660
  #
2658
2661
  # <note markdown="1"> To add the IAM role policies for using this API operation, go to the
2659
- # [IAM console][8], and choose Roles in the left navigation pane. Search
2662
+ # [IAM console][7], and choose Roles in the left navigation pane. Search
2660
2663
  # the IAM role that you want to grant access to use the
2661
- # [CreateEndpoint][3] and [CreateEndpointConfig][1] API operations, add
2664
+ # [CreateEndpoint][2] and [CreateEndpointConfig][1] API operations, add
2662
2665
  # the following policies to the role.
2663
2666
  #
2664
2667
  # * Option 1: For a full SageMaker access, search and attach the
@@ -2680,21 +2683,20 @@ module Aws::SageMaker
2680
2683
  # `]`
2681
2684
  #
2682
2685
  # For more information, see [SageMaker API Permissions: Actions,
2683
- # Permissions, and Resources Reference][9].
2686
+ # Permissions, and Resources Reference][8].
2684
2687
  #
2685
2688
  # </note>
2686
2689
  #
2687
2690
  #
2688
2691
  #
2689
2692
  # [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateEndpointConfig.html
2690
- # [2]: https://github.com/aws/amazon-sagemaker-examples/blob/master/sagemaker-fundamentals/create-endpoint/create_endpoint.ipynb
2691
- # [3]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateEndpoint.html
2692
- # [4]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadConsistency.html
2693
- # [5]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DescribeEndpointConfig.html
2694
- # [6]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DescribeEndpoint.html
2695
- # [7]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_enable-regions.html
2696
- # [8]: https://console.aws.amazon.com/iam/
2697
- # [9]: https://docs.aws.amazon.com/sagemaker/latest/dg/api-permissions-reference.html
2693
+ # [2]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateEndpoint.html
2694
+ # [3]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadConsistency.html
2695
+ # [4]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DescribeEndpointConfig.html
2696
+ # [5]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DescribeEndpoint.html
2697
+ # [6]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_enable-regions.html
2698
+ # [7]: https://console.aws.amazon.com/iam/
2699
+ # [8]: https://docs.aws.amazon.com/sagemaker/latest/dg/api-permissions-reference.html
2698
2700
  #
2699
2701
  # @option params [required, String] :endpoint_name
2700
2702
  # The name of the endpoint.The name must be unique within an Amazon Web
@@ -4514,6 +4516,7 @@ module Aws::SageMaker
4514
4516
  # supported_instance_types: ["String"],
4515
4517
  # data_input_config: "RecommendationJobDataInputConfig",
4516
4518
  # supported_endpoint_type: "RealTime", # accepts RealTime, Serverless
4519
+ # supported_response_mime_types: ["RecommendationJobSupportedResponseMIMEType"],
4517
4520
  # },
4518
4521
  # endpoints: [
4519
4522
  # {
@@ -5557,6 +5560,10 @@ module Aws::SageMaker
5557
5560
  # information, see [Tagging Amazon Web Services resources][1] in the
5558
5561
  # *Amazon Web Services General Reference Guide*.
5559
5562
  #
5563
+ # If you supply `ModelPackageGroupName`, your model package belongs to
5564
+ # the model group you specify and uses the tags associated with the
5565
+ # model group. In this case, you cannot supply a `tag` argument.
5566
+ #
5560
5567
  #
5561
5568
  #
5562
5569
  # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
@@ -8162,6 +8169,13 @@ module Aws::SageMaker
8162
8169
  # s3_artifact_path: "S3Uri",
8163
8170
  # s3_kms_key_id: "KmsKeyId",
8164
8171
  # },
8172
+ # identity_provider_o_auth_settings: [
8173
+ # {
8174
+ # data_source_name: "SalesforceGenie", # accepts SalesforceGenie, Snowflake
8175
+ # status: "ENABLED", # accepts ENABLED, DISABLED
8176
+ # secret_arn: "SecretArn",
8177
+ # },
8178
+ # ],
8165
8179
  # },
8166
8180
  # },
8167
8181
  # })
@@ -10885,6 +10899,10 @@ module Aws::SageMaker
10885
10899
  # resp.default_user_settings.canvas_app_settings.model_register_settings.cross_account_model_register_role_arn #=> String
10886
10900
  # resp.default_user_settings.canvas_app_settings.workspace_settings.s3_artifact_path #=> String
10887
10901
  # resp.default_user_settings.canvas_app_settings.workspace_settings.s3_kms_key_id #=> String
10902
+ # resp.default_user_settings.canvas_app_settings.identity_provider_o_auth_settings #=> Array
10903
+ # resp.default_user_settings.canvas_app_settings.identity_provider_o_auth_settings[0].data_source_name #=> String, one of "SalesforceGenie", "Snowflake"
10904
+ # resp.default_user_settings.canvas_app_settings.identity_provider_o_auth_settings[0].status #=> String, one of "ENABLED", "DISABLED"
10905
+ # resp.default_user_settings.canvas_app_settings.identity_provider_o_auth_settings[0].secret_arn #=> String
10888
10906
  # resp.app_network_access_type #=> String, one of "PublicInternetOnly", "VpcOnly"
10889
10907
  # resp.home_efs_file_system_kms_key_id #=> String
10890
10908
  # resp.subnet_ids #=> Array
@@ -12354,6 +12372,8 @@ module Aws::SageMaker
12354
12372
  # resp.input_config.container_config.supported_instance_types[0] #=> String
12355
12373
  # resp.input_config.container_config.data_input_config #=> String
12356
12374
  # resp.input_config.container_config.supported_endpoint_type #=> String, one of "RealTime", "Serverless"
12375
+ # resp.input_config.container_config.supported_response_mime_types #=> Array
12376
+ # resp.input_config.container_config.supported_response_mime_types[0] #=> String
12357
12377
  # resp.input_config.endpoints #=> Array
12358
12378
  # resp.input_config.endpoints[0].endpoint_name #=> String
12359
12379
  # resp.input_config.vpc_config.security_group_ids #=> Array
@@ -14544,6 +14564,10 @@ module Aws::SageMaker
14544
14564
  # resp.user_settings.canvas_app_settings.model_register_settings.cross_account_model_register_role_arn #=> String
14545
14565
  # resp.user_settings.canvas_app_settings.workspace_settings.s3_artifact_path #=> String
14546
14566
  # resp.user_settings.canvas_app_settings.workspace_settings.s3_kms_key_id #=> String
14567
+ # resp.user_settings.canvas_app_settings.identity_provider_o_auth_settings #=> Array
14568
+ # resp.user_settings.canvas_app_settings.identity_provider_o_auth_settings[0].data_source_name #=> String, one of "SalesforceGenie", "Snowflake"
14569
+ # resp.user_settings.canvas_app_settings.identity_provider_o_auth_settings[0].status #=> String, one of "ENABLED", "DISABLED"
14570
+ # resp.user_settings.canvas_app_settings.identity_provider_o_auth_settings[0].secret_arn #=> String
14547
14571
  #
14548
14572
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeUserProfile AWS API Documentation
14549
14573
  #
@@ -22088,6 +22112,13 @@ module Aws::SageMaker
22088
22112
  # s3_artifact_path: "S3Uri",
22089
22113
  # s3_kms_key_id: "KmsKeyId",
22090
22114
  # },
22115
+ # identity_provider_o_auth_settings: [
22116
+ # {
22117
+ # data_source_name: "SalesforceGenie", # accepts SalesforceGenie, Snowflake
22118
+ # status: "ENABLED", # accepts ENABLED, DISABLED
22119
+ # secret_arn: "SecretArn",
22120
+ # },
22121
+ # ],
22091
22122
  # },
22092
22123
  # },
22093
22124
  # domain_settings_for_update: {
@@ -23835,6 +23866,13 @@ module Aws::SageMaker
23835
23866
  # s3_artifact_path: "S3Uri",
23836
23867
  # s3_kms_key_id: "KmsKeyId",
23837
23868
  # },
23869
+ # identity_provider_o_auth_settings: [
23870
+ # {
23871
+ # data_source_name: "SalesforceGenie", # accepts SalesforceGenie, Snowflake
23872
+ # status: "ENABLED", # accepts ENABLED, DISABLED
23873
+ # secret_arn: "SecretArn",
23874
+ # },
23875
+ # ],
23838
23876
  # },
23839
23877
  # },
23840
23878
  # })
@@ -24092,7 +24130,7 @@ module Aws::SageMaker
24092
24130
  params: params,
24093
24131
  config: config)
24094
24132
  context[:gem_name] = 'aws-sdk-sagemaker'
24095
- context[:gem_version] = '1.205.0'
24133
+ context[:gem_version] = '1.207.0'
24096
24134
  Seahorse::Client::Request.new(handlers, context)
24097
24135
  end
24098
24136
 
@@ -422,6 +422,7 @@ module Aws::SageMaker
422
422
  DataQualityBaselineConfig = Shapes::StructureShape.new(name: 'DataQualityBaselineConfig')
423
423
  DataQualityJobInput = Shapes::StructureShape.new(name: 'DataQualityJobInput')
424
424
  DataSource = Shapes::StructureShape.new(name: 'DataSource')
425
+ DataSourceName = Shapes::StringShape.new(name: 'DataSourceName')
425
426
  Database = Shapes::StringShape.new(name: 'Database')
426
427
  DatasetDefinition = Shapes::StructureShape.new(name: 'DatasetDefinition')
427
428
  DebugHookConfig = Shapes::StructureShape.new(name: 'DebugHookConfig')
@@ -921,6 +922,8 @@ module Aws::SageMaker
921
922
  HyperbandStrategyMinResource = Shapes::IntegerShape.new(name: 'HyperbandStrategyMinResource')
922
923
  IamIdentity = Shapes::StructureShape.new(name: 'IamIdentity')
923
924
  IdempotencyToken = Shapes::StringShape.new(name: 'IdempotencyToken')
925
+ IdentityProviderOAuthSetting = Shapes::StructureShape.new(name: 'IdentityProviderOAuthSetting')
926
+ IdentityProviderOAuthSettings = Shapes::ListShape.new(name: 'IdentityProviderOAuthSettings')
924
927
  Image = Shapes::StructureShape.new(name: 'Image')
925
928
  ImageArn = Shapes::StringShape.new(name: 'ImageArn')
926
929
  ImageBaseImage = Shapes::StringShape.new(name: 'ImageBaseImage')
@@ -1634,6 +1637,8 @@ module Aws::SageMaker
1634
1637
  RecommendationJobSupportedContentTypes = Shapes::ListShape.new(name: 'RecommendationJobSupportedContentTypes')
1635
1638
  RecommendationJobSupportedEndpointType = Shapes::StringShape.new(name: 'RecommendationJobSupportedEndpointType')
1636
1639
  RecommendationJobSupportedInstanceTypes = Shapes::ListShape.new(name: 'RecommendationJobSupportedInstanceTypes')
1640
+ RecommendationJobSupportedResponseMIMEType = Shapes::StringShape.new(name: 'RecommendationJobSupportedResponseMIMEType')
1641
+ RecommendationJobSupportedResponseMIMETypes = Shapes::ListShape.new(name: 'RecommendationJobSupportedResponseMIMETypes')
1637
1642
  RecommendationJobType = Shapes::StringShape.new(name: 'RecommendationJobType')
1638
1643
  RecommendationJobVpcConfig = Shapes::StructureShape.new(name: 'RecommendationJobVpcConfig')
1639
1644
  RecommendationJobVpcSecurityGroupId = Shapes::StringShape.new(name: 'RecommendationJobVpcSecurityGroupId')
@@ -2522,6 +2527,7 @@ module Aws::SageMaker
2522
2527
  CanvasAppSettings.add_member(:time_series_forecasting_settings, Shapes::ShapeRef.new(shape: TimeSeriesForecastingSettings, location_name: "TimeSeriesForecastingSettings"))
2523
2528
  CanvasAppSettings.add_member(:model_register_settings, Shapes::ShapeRef.new(shape: ModelRegisterSettings, location_name: "ModelRegisterSettings"))
2524
2529
  CanvasAppSettings.add_member(:workspace_settings, Shapes::ShapeRef.new(shape: WorkspaceSettings, location_name: "WorkspaceSettings"))
2530
+ CanvasAppSettings.add_member(:identity_provider_o_auth_settings, Shapes::ShapeRef.new(shape: IdentityProviderOAuthSettings, location_name: "IdentityProviderOAuthSettings"))
2525
2531
  CanvasAppSettings.struct_class = Types::CanvasAppSettings
2526
2532
 
2527
2533
  CapacitySize.add_member(:type, Shapes::ShapeRef.new(shape: CapacitySizeType, required: true, location_name: "Type"))
@@ -5519,6 +5525,13 @@ module Aws::SageMaker
5519
5525
  IamIdentity.add_member(:source_identity, Shapes::ShapeRef.new(shape: String, location_name: "SourceIdentity"))
5520
5526
  IamIdentity.struct_class = Types::IamIdentity
5521
5527
 
5528
+ IdentityProviderOAuthSetting.add_member(:data_source_name, Shapes::ShapeRef.new(shape: DataSourceName, location_name: "DataSourceName"))
5529
+ IdentityProviderOAuthSetting.add_member(:status, Shapes::ShapeRef.new(shape: FeatureStatus, location_name: "Status"))
5530
+ IdentityProviderOAuthSetting.add_member(:secret_arn, Shapes::ShapeRef.new(shape: SecretArn, location_name: "SecretArn"))
5531
+ IdentityProviderOAuthSetting.struct_class = Types::IdentityProviderOAuthSetting
5532
+
5533
+ IdentityProviderOAuthSettings.member = Shapes::ShapeRef.new(shape: IdentityProviderOAuthSetting)
5534
+
5522
5535
  Image.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreationTime"))
5523
5536
  Image.add_member(:description, Shapes::ShapeRef.new(shape: ImageDescription, location_name: "Description"))
5524
5537
  Image.add_member(:display_name, Shapes::ShapeRef.new(shape: ImageDisplayName, location_name: "DisplayName"))
@@ -7957,6 +7970,7 @@ module Aws::SageMaker
7957
7970
  RecommendationJobContainerConfig.add_member(:supported_instance_types, Shapes::ShapeRef.new(shape: RecommendationJobSupportedInstanceTypes, location_name: "SupportedInstanceTypes"))
7958
7971
  RecommendationJobContainerConfig.add_member(:data_input_config, Shapes::ShapeRef.new(shape: RecommendationJobDataInputConfig, location_name: "DataInputConfig"))
7959
7972
  RecommendationJobContainerConfig.add_member(:supported_endpoint_type, Shapes::ShapeRef.new(shape: RecommendationJobSupportedEndpointType, location_name: "SupportedEndpointType"))
7973
+ RecommendationJobContainerConfig.add_member(:supported_response_mime_types, Shapes::ShapeRef.new(shape: RecommendationJobSupportedResponseMIMETypes, location_name: "SupportedResponseMIMETypes"))
7960
7974
  RecommendationJobContainerConfig.struct_class = Types::RecommendationJobContainerConfig
7961
7975
 
7962
7976
  RecommendationJobInferenceBenchmark.add_member(:metrics, Shapes::ShapeRef.new(shape: RecommendationMetrics, location_name: "Metrics"))
@@ -8001,6 +8015,8 @@ module Aws::SageMaker
8001
8015
 
8002
8016
  RecommendationJobSupportedInstanceTypes.member = Shapes::ShapeRef.new(shape: String)
8003
8017
 
8018
+ RecommendationJobSupportedResponseMIMETypes.member = Shapes::ShapeRef.new(shape: RecommendationJobSupportedResponseMIMEType)
8019
+
8004
8020
  RecommendationJobVpcConfig.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: RecommendationJobVpcSecurityGroupIds, required: true, location_name: "SecurityGroupIds"))
8005
8021
  RecommendationJobVpcConfig.add_member(:subnets, Shapes::ShapeRef.new(shape: RecommendationJobVpcSubnets, required: true, location_name: "Subnets"))
8006
8022
  RecommendationJobVpcConfig.struct_class = Types::RecommendationJobVpcConfig
@@ -3107,12 +3107,17 @@ module Aws::SageMaker
3107
3107
  # The workspace settings for the SageMaker Canvas application.
3108
3108
  # @return [Types::WorkspaceSettings]
3109
3109
  #
3110
+ # @!attribute [rw] identity_provider_o_auth_settings
3111
+ # The settings for connecting to an external data source with OAuth.
3112
+ # @return [Array<Types::IdentityProviderOAuthSetting>]
3113
+ #
3110
3114
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CanvasAppSettings AWS API Documentation
3111
3115
  #
3112
3116
  class CanvasAppSettings < Struct.new(
3113
3117
  :time_series_forecasting_settings,
3114
3118
  :model_register_settings,
3115
- :workspace_settings)
3119
+ :workspace_settings,
3120
+ :identity_provider_o_auth_settings)
3116
3121
  SENSITIVE = []
3117
3122
  include Aws::Structure
3118
3123
  end
@@ -7148,6 +7153,10 @@ module Aws::SageMaker
7148
7153
  # information, see [Tagging Amazon Web Services resources][1] in the
7149
7154
  # *Amazon Web Services General Reference Guide*.
7150
7155
  #
7156
+ # If you supply `ModelPackageGroupName`, your model package belongs to
7157
+ # the model group you specify and uses the tags associated with the
7158
+ # model group. In this case, you cannot supply a `tag` argument.
7159
+ #
7151
7160
  #
7152
7161
  #
7153
7162
  # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
@@ -21052,6 +21061,35 @@ module Aws::SageMaker
21052
21061
  include Aws::Structure
21053
21062
  end
21054
21063
 
21064
+ # The Amazon SageMaker Canvas app setting where you configure OAuth for
21065
+ # connecting to an external data source, such as Snowflake.
21066
+ #
21067
+ # @!attribute [rw] data_source_name
21068
+ # The name of the data source that you're connecting to. Canvas
21069
+ # currently supports OAuth for Snowflake and Salesforce Data Cloud.
21070
+ # @return [String]
21071
+ #
21072
+ # @!attribute [rw] status
21073
+ # Describes whether OAuth for a data source is enabled or disabled in
21074
+ # the Canvas application.
21075
+ # @return [String]
21076
+ #
21077
+ # @!attribute [rw] secret_arn
21078
+ # The ARN of an Amazon Web Services Secrets Manager secret that stores
21079
+ # the credentials from your identity provider, such as the client ID
21080
+ # and secret, authorization URL, and token URL.
21081
+ # @return [String]
21082
+ #
21083
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/IdentityProviderOAuthSetting AWS API Documentation
21084
+ #
21085
+ class IdentityProviderOAuthSetting < Struct.new(
21086
+ :data_source_name,
21087
+ :status,
21088
+ :secret_arn)
21089
+ SENSITIVE = []
21090
+ include Aws::Structure
21091
+ end
21092
+
21055
21093
  # A SageMaker image. A SageMaker image represents a set of container
21056
21094
  # images that are derived from a common base container image. Each of
21057
21095
  # these container images is represented by a SageMaker `ImageVersion`.
@@ -34402,6 +34440,10 @@ module Aws::SageMaker
34402
34440
  # benchmarks for the desired endpoint type.
34403
34441
  # @return [String]
34404
34442
  #
34443
+ # @!attribute [rw] supported_response_mime_types
34444
+ # The supported MIME types for the output data.
34445
+ # @return [Array<String>]
34446
+ #
34405
34447
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/RecommendationJobContainerConfig AWS API Documentation
34406
34448
  #
34407
34449
  class RecommendationJobContainerConfig < Struct.new(
@@ -34413,7 +34455,8 @@ module Aws::SageMaker
34413
34455
  :nearest_model_name,
34414
34456
  :supported_instance_types,
34415
34457
  :data_input_config,
34416
- :supported_endpoint_type)
34458
+ :supported_endpoint_type,
34459
+ :supported_response_mime_types)
34417
34460
  SENSITIVE = []
34418
34461
  include Aws::Structure
34419
34462
  end
@@ -34474,7 +34517,7 @@ module Aws::SageMaker
34474
34517
  #
34475
34518
  # @!attribute [rw] job_duration_in_seconds
34476
34519
  # Specifies the maximum duration of the job, in seconds. The maximum
34477
- # value is 7200.
34520
+ # value is 18,000 seconds.
34478
34521
  # @return [Integer]
34479
34522
  #
34480
34523
  # @!attribute [rw] traffic_pattern
@@ -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.205.0'
56
+ GEM_VERSION = '1.207.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.205.0
4
+ version: 1.207.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-08-09 00:00:00.000000000 Z
11
+ date: 2023-08-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core