aws-sdk-sagemaker 1.96.0 → 1.97.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: 021cb5b0efa607e2dadeda49f2f105093f0ee41141fe6cce95457f7cba88613b
4
- data.tar.gz: 80c0e145e366990cb77ce3063ce96a93ec8e4485cafd2acfefa7270dbb0e36ca
3
+ metadata.gz: 03f5f92f12b9291f618ecb34c0085e731a12021ff8af395060581d4ca5b95aef
4
+ data.tar.gz: 6f85b7b254d89afa5d0e62544c5c932beb44700237b7668e141916781d2bb31f
5
5
  SHA512:
6
- metadata.gz: 501cbaeea0d7689f925547b08707dfd942b946d47e4825b4d1c2e8bce7699febcb48e2db49d3a69377a1572eeea80c07da2fda8d4250dd42656343c8d2528bd0
7
- data.tar.gz: 96b087849239d5c3e25211aebc5f96ed620535e82e3ba87b082c38079e8e9b3373b9c11ecd4eabd98395fcfeff6781deefae92bb10c5952f93e3d9d60a37eb7f
6
+ metadata.gz: a95982838e805c649fcb8acb10626c5319ec0f6f6dd6b3cffdccaf6e3149c96c489ba13cbe975f6e91cd07d44346e1e956f7ffa7a7f84eb87f42d7b57a272a2b
7
+ data.tar.gz: b157727c8b7ca3b14eb440bc8fda2aa93301cfda69cb10426b9979dbd863b31abedea52a31acfa259764453c8f77ae67742409a80515823a605700a0182758c1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.97.0 (2021-08-18)
5
+ ------------------
6
+
7
+ * Feature - Amazon SageMaker now supports Asynchronous Inference endpoints. Adds PlatformIdentifier field that allows Notebook Instance creation with different platform selections. Increases the maximum number of containers in multi-container endpoints to 15. Adds more instance types to InstanceType field.
8
+
4
9
  1.96.0 (2021-08-12)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.96.0
1
+ 1.97.0
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-sagemaker/customizations'
49
49
  # @!group service
50
50
  module Aws::SageMaker
51
51
 
52
- GEM_VERSION = '1.96.0'
52
+ GEM_VERSION = '1.97.0'
53
53
 
54
54
  end
@@ -2173,6 +2173,15 @@ module Aws::SageMaker
2173
2173
  # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/InstanceStorage.html#instance-store-volumes
2174
2174
  # [3]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ssd-instance-store.html
2175
2175
  #
2176
+ # @option params [Types::AsyncInferenceConfig] :async_inference_config
2177
+ # Specifies configuration for how an endpoint performs asynchronous
2178
+ # inference. This is a required field in order for your Endpoint to be
2179
+ # invoked using [ `InvokeEndpointAsync` ][1].
2180
+ #
2181
+ #
2182
+ #
2183
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_runtime_InvokeEndpoint.html
2184
+ #
2176
2185
  # @return [Types::CreateEndpointConfigOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2177
2186
  #
2178
2187
  # * {Types::CreateEndpointConfigOutput#endpoint_config_arn #endpoint_config_arn} => String
@@ -2217,6 +2226,19 @@ module Aws::SageMaker
2217
2226
  # },
2218
2227
  # ],
2219
2228
  # kms_key_id: "KmsKeyId",
2229
+ # async_inference_config: {
2230
+ # client_config: {
2231
+ # max_concurrent_invocations_per_instance: 1,
2232
+ # },
2233
+ # output_config: { # required
2234
+ # kms_key_id: "KmsKeyId",
2235
+ # s3_output_path: "DestinationS3Uri", # required
2236
+ # notification_config: {
2237
+ # success_topic: "SnsTopicArn",
2238
+ # error_topic: "SnsTopicArn",
2239
+ # },
2240
+ # },
2241
+ # },
2220
2242
  # })
2221
2243
  #
2222
2244
  # @example Response structure
@@ -4541,6 +4563,9 @@ module Aws::SageMaker
4541
4563
  #
4542
4564
  # </note>
4543
4565
  #
4566
+ # @option params [String] :platform_identifier
4567
+ # The platform identifier of the notebook instance runtime environment.
4568
+ #
4544
4569
  # @return [Types::CreateNotebookInstanceOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4545
4570
  #
4546
4571
  # * {Types::CreateNotebookInstanceOutput#notebook_instance_arn #notebook_instance_arn} => String
@@ -4549,7 +4574,7 @@ module Aws::SageMaker
4549
4574
  #
4550
4575
  # resp = client.create_notebook_instance({
4551
4576
  # notebook_instance_name: "NotebookInstanceName", # required
4552
- # instance_type: "ml.t2.medium", # required, accepts ml.t2.medium, ml.t2.large, ml.t2.xlarge, ml.t2.2xlarge, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5d.xlarge, ml.c5d.2xlarge, ml.c5d.4xlarge, ml.c5d.9xlarge, ml.c5d.18xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge
4577
+ # instance_type: "ml.t2.medium", # required, accepts ml.t2.medium, ml.t2.large, ml.t2.xlarge, ml.t2.2xlarge, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5d.xlarge, ml.c5d.2xlarge, ml.c5d.4xlarge, ml.c5d.9xlarge, ml.c5d.18xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
4553
4578
  # subnet_id: "SubnetId",
4554
4579
  # security_group_ids: ["SecurityGroupId"],
4555
4580
  # role_arn: "RoleArn", # required
@@ -4567,6 +4592,7 @@ module Aws::SageMaker
4567
4592
  # default_code_repository: "CodeRepositoryNameOrUrl",
4568
4593
  # additional_code_repositories: ["CodeRepositoryNameOrUrl"],
4569
4594
  # root_access: "Enabled", # accepts Enabled, Disabled
4595
+ # platform_identifier: "PlatformIdentifier",
4570
4596
  # })
4571
4597
  #
4572
4598
  # @example Response structure
@@ -8261,6 +8287,7 @@ module Aws::SageMaker
8261
8287
  # * {Types::DescribeEndpointOutput#creation_time #creation_time} => Time
8262
8288
  # * {Types::DescribeEndpointOutput#last_modified_time #last_modified_time} => Time
8263
8289
  # * {Types::DescribeEndpointOutput#last_deployment_config #last_deployment_config} => Types::DeploymentConfig
8290
+ # * {Types::DescribeEndpointOutput#async_inference_config #async_inference_config} => Types::AsyncInferenceConfig
8264
8291
  #
8265
8292
  # @example Request syntax with placeholder values
8266
8293
  #
@@ -8300,6 +8327,11 @@ module Aws::SageMaker
8300
8327
  # resp.last_deployment_config.blue_green_update_policy.maximum_execution_timeout_in_seconds #=> Integer
8301
8328
  # resp.last_deployment_config.auto_rollback_configuration.alarms #=> Array
8302
8329
  # resp.last_deployment_config.auto_rollback_configuration.alarms[0].alarm_name #=> String
8330
+ # resp.async_inference_config.client_config.max_concurrent_invocations_per_instance #=> Integer
8331
+ # resp.async_inference_config.output_config.kms_key_id #=> String
8332
+ # resp.async_inference_config.output_config.s3_output_path #=> String
8333
+ # resp.async_inference_config.output_config.notification_config.success_topic #=> String
8334
+ # resp.async_inference_config.output_config.notification_config.error_topic #=> String
8303
8335
  #
8304
8336
  #
8305
8337
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -8330,6 +8362,7 @@ module Aws::SageMaker
8330
8362
  # * {Types::DescribeEndpointConfigOutput#data_capture_config #data_capture_config} => Types::DataCaptureConfig
8331
8363
  # * {Types::DescribeEndpointConfigOutput#kms_key_id #kms_key_id} => String
8332
8364
  # * {Types::DescribeEndpointConfigOutput#creation_time #creation_time} => Time
8365
+ # * {Types::DescribeEndpointConfigOutput#async_inference_config #async_inference_config} => Types::AsyncInferenceConfig
8333
8366
  #
8334
8367
  # @example Request syntax with placeholder values
8335
8368
  #
@@ -8362,6 +8395,11 @@ module Aws::SageMaker
8362
8395
  # resp.data_capture_config.capture_content_type_header.json_content_types[0] #=> String
8363
8396
  # resp.kms_key_id #=> String
8364
8397
  # resp.creation_time #=> Time
8398
+ # resp.async_inference_config.client_config.max_concurrent_invocations_per_instance #=> Integer
8399
+ # resp.async_inference_config.output_config.kms_key_id #=> String
8400
+ # resp.async_inference_config.output_config.s3_output_path #=> String
8401
+ # resp.async_inference_config.output_config.notification_config.success_topic #=> String
8402
+ # resp.async_inference_config.output_config.notification_config.error_topic #=> String
8365
8403
  #
8366
8404
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeEndpointConfig AWS API Documentation
8367
8405
  #
@@ -9620,6 +9658,7 @@ module Aws::SageMaker
9620
9658
  # * {Types::DescribeNotebookInstanceOutput#default_code_repository #default_code_repository} => String
9621
9659
  # * {Types::DescribeNotebookInstanceOutput#additional_code_repositories #additional_code_repositories} => Array&lt;String&gt;
9622
9660
  # * {Types::DescribeNotebookInstanceOutput#root_access #root_access} => String
9661
+ # * {Types::DescribeNotebookInstanceOutput#platform_identifier #platform_identifier} => String
9623
9662
  #
9624
9663
  # @example Request syntax with placeholder values
9625
9664
  #
@@ -9634,7 +9673,7 @@ module Aws::SageMaker
9634
9673
  # resp.notebook_instance_status #=> String, one of "Pending", "InService", "Stopping", "Stopped", "Failed", "Deleting", "Updating"
9635
9674
  # resp.failure_reason #=> String
9636
9675
  # resp.url #=> String
9637
- # resp.instance_type #=> String, one of "ml.t2.medium", "ml.t2.large", "ml.t2.xlarge", "ml.t2.2xlarge", "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5d.xlarge", "ml.c5d.2xlarge", "ml.c5d.4xlarge", "ml.c5d.9xlarge", "ml.c5d.18xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge"
9676
+ # resp.instance_type #=> String, one of "ml.t2.medium", "ml.t2.large", "ml.t2.xlarge", "ml.t2.2xlarge", "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.m5d.large", "ml.m5d.xlarge", "ml.m5d.2xlarge", "ml.m5d.4xlarge", "ml.m5d.8xlarge", "ml.m5d.12xlarge", "ml.m5d.16xlarge", "ml.m5d.24xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5d.xlarge", "ml.c5d.2xlarge", "ml.c5d.4xlarge", "ml.c5d.9xlarge", "ml.c5d.18xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.8xlarge", "ml.r5.12xlarge", "ml.r5.16xlarge", "ml.r5.24xlarge"
9638
9677
  # resp.subnet_id #=> String
9639
9678
  # resp.security_groups #=> Array
9640
9679
  # resp.security_groups[0] #=> String
@@ -9652,6 +9691,7 @@ module Aws::SageMaker
9652
9691
  # resp.additional_code_repositories #=> Array
9653
9692
  # resp.additional_code_repositories[0] #=> String
9654
9693
  # resp.root_access #=> String, one of "Enabled", "Disabled"
9694
+ # resp.platform_identifier #=> String
9655
9695
  #
9656
9696
  #
9657
9697
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -13699,7 +13739,7 @@ module Aws::SageMaker
13699
13739
  # resp.notebook_instances[0].notebook_instance_arn #=> String
13700
13740
  # resp.notebook_instances[0].notebook_instance_status #=> String, one of "Pending", "InService", "Stopping", "Stopped", "Failed", "Deleting", "Updating"
13701
13741
  # resp.notebook_instances[0].url #=> String
13702
- # resp.notebook_instances[0].instance_type #=> String, one of "ml.t2.medium", "ml.t2.large", "ml.t2.xlarge", "ml.t2.2xlarge", "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5d.xlarge", "ml.c5d.2xlarge", "ml.c5d.4xlarge", "ml.c5d.9xlarge", "ml.c5d.18xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge"
13742
+ # resp.notebook_instances[0].instance_type #=> String, one of "ml.t2.medium", "ml.t2.large", "ml.t2.xlarge", "ml.t2.2xlarge", "ml.t3.medium", "ml.t3.large", "ml.t3.xlarge", "ml.t3.2xlarge", "ml.m4.xlarge", "ml.m4.2xlarge", "ml.m4.4xlarge", "ml.m4.10xlarge", "ml.m4.16xlarge", "ml.m5.xlarge", "ml.m5.2xlarge", "ml.m5.4xlarge", "ml.m5.12xlarge", "ml.m5.24xlarge", "ml.m5d.large", "ml.m5d.xlarge", "ml.m5d.2xlarge", "ml.m5d.4xlarge", "ml.m5d.8xlarge", "ml.m5d.12xlarge", "ml.m5d.16xlarge", "ml.m5d.24xlarge", "ml.c4.xlarge", "ml.c4.2xlarge", "ml.c4.4xlarge", "ml.c4.8xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", "ml.c5.9xlarge", "ml.c5.18xlarge", "ml.c5d.xlarge", "ml.c5d.2xlarge", "ml.c5d.4xlarge", "ml.c5d.9xlarge", "ml.c5d.18xlarge", "ml.p2.xlarge", "ml.p2.8xlarge", "ml.p2.16xlarge", "ml.p3.2xlarge", "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", "ml.g4dn.xlarge", "ml.g4dn.2xlarge", "ml.g4dn.4xlarge", "ml.g4dn.8xlarge", "ml.g4dn.12xlarge", "ml.g4dn.16xlarge", "ml.r5.large", "ml.r5.xlarge", "ml.r5.2xlarge", "ml.r5.4xlarge", "ml.r5.8xlarge", "ml.r5.12xlarge", "ml.r5.16xlarge", "ml.r5.24xlarge"
13703
13743
  # resp.notebook_instances[0].creation_time #=> Time
13704
13744
  # resp.notebook_instances[0].last_modified_time #=> Time
13705
13745
  # resp.notebook_instances[0].notebook_instance_lifecycle_config_name #=> String
@@ -17122,7 +17162,7 @@ module Aws::SageMaker
17122
17162
  #
17123
17163
  # resp = client.update_notebook_instance({
17124
17164
  # notebook_instance_name: "NotebookInstanceName", # required
17125
- # instance_type: "ml.t2.medium", # accepts ml.t2.medium, ml.t2.large, ml.t2.xlarge, ml.t2.2xlarge, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5d.xlarge, ml.c5d.2xlarge, ml.c5d.4xlarge, ml.c5d.9xlarge, ml.c5d.18xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge
17165
+ # instance_type: "ml.t2.medium", # accepts ml.t2.medium, ml.t2.large, ml.t2.xlarge, ml.t2.2xlarge, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5d.xlarge, ml.c5d.2xlarge, ml.c5d.4xlarge, ml.c5d.9xlarge, ml.c5d.18xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
17126
17166
  # role_arn: "RoleArn",
17127
17167
  # lifecycle_config_name: "NotebookInstanceLifecycleConfigName",
17128
17168
  # disassociate_lifecycle_config: false,
@@ -17732,7 +17772,7 @@ module Aws::SageMaker
17732
17772
  params: params,
17733
17773
  config: config)
17734
17774
  context[:gem_name] = 'aws-sdk-sagemaker'
17735
- context[:gem_version] = '1.96.0'
17775
+ context[:gem_version] = '1.97.0'
17736
17776
  Seahorse::Client::Request.new(handlers, context)
17737
17777
  end
17738
17778
 
@@ -77,6 +77,10 @@ module Aws::SageMaker
77
77
  AssociationEntityArn = Shapes::StringShape.new(name: 'AssociationEntityArn')
78
78
  AssociationSummaries = Shapes::ListShape.new(name: 'AssociationSummaries')
79
79
  AssociationSummary = Shapes::StructureShape.new(name: 'AssociationSummary')
80
+ AsyncInferenceClientConfig = Shapes::StructureShape.new(name: 'AsyncInferenceClientConfig')
81
+ AsyncInferenceConfig = Shapes::StructureShape.new(name: 'AsyncInferenceConfig')
82
+ AsyncInferenceNotificationConfig = Shapes::StructureShape.new(name: 'AsyncInferenceNotificationConfig')
83
+ AsyncInferenceOutputConfig = Shapes::StructureShape.new(name: 'AsyncInferenceOutputConfig')
80
84
  AthenaCatalog = Shapes::StringShape.new(name: 'AthenaCatalog')
81
85
  AthenaDatabase = Shapes::StringShape.new(name: 'AthenaDatabase')
82
86
  AthenaDatasetDefinition = Shapes::StructureShape.new(name: 'AthenaDatasetDefinition')
@@ -689,6 +693,7 @@ module Aws::SageMaker
689
693
  InferenceExecutionMode = Shapes::StringShape.new(name: 'InferenceExecutionMode')
690
694
  InferenceImage = Shapes::StringShape.new(name: 'InferenceImage')
691
695
  InferenceSpecification = Shapes::StructureShape.new(name: 'InferenceSpecification')
696
+ InitialTaskCount = Shapes::IntegerShape.new(name: 'InitialTaskCount')
692
697
  InputConfig = Shapes::StructureShape.new(name: 'InputConfig')
693
698
  InputDataConfig = Shapes::ListShape.new(name: 'InputDataConfig')
694
699
  InputMode = Shapes::StringShape.new(name: 'InputMode')
@@ -860,6 +865,7 @@ module Aws::SageMaker
860
865
  Long = Shapes::IntegerShape.new(name: 'Long')
861
866
  MaxAutoMLJobRuntimeInSeconds = Shapes::IntegerShape.new(name: 'MaxAutoMLJobRuntimeInSeconds')
862
867
  MaxCandidates = Shapes::IntegerShape.new(name: 'MaxCandidates')
868
+ MaxConcurrentInvocationsPerInstance = Shapes::IntegerShape.new(name: 'MaxConcurrentInvocationsPerInstance')
863
869
  MaxConcurrentTaskCount = Shapes::IntegerShape.new(name: 'MaxConcurrentTaskCount')
864
870
  MaxConcurrentTransforms = Shapes::IntegerShape.new(name: 'MaxConcurrentTransforms')
865
871
  MaxHumanLabeledObjectCount = Shapes::IntegerShape.new(name: 'MaxHumanLabeledObjectCount')
@@ -1070,6 +1076,7 @@ module Aws::SageMaker
1070
1076
  PipelineStatus = Shapes::StringShape.new(name: 'PipelineStatus')
1071
1077
  PipelineSummary = Shapes::StructureShape.new(name: 'PipelineSummary')
1072
1078
  PipelineSummaryList = Shapes::ListShape.new(name: 'PipelineSummaryList')
1079
+ PlatformIdentifier = Shapes::StringShape.new(name: 'PlatformIdentifier')
1073
1080
  PolicyString = Shapes::StringShape.new(name: 'PolicyString')
1074
1081
  PresignedDomainUrl = Shapes::StringShape.new(name: 'PresignedDomainUrl')
1075
1082
  ProbabilityThresholdAttribute = Shapes::FloatShape.new(name: 'ProbabilityThresholdAttribute')
@@ -1602,6 +1609,22 @@ module Aws::SageMaker
1602
1609
  AssociationSummary.add_member(:created_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "CreatedBy"))
1603
1610
  AssociationSummary.struct_class = Types::AssociationSummary
1604
1611
 
1612
+ AsyncInferenceClientConfig.add_member(:max_concurrent_invocations_per_instance, Shapes::ShapeRef.new(shape: MaxConcurrentInvocationsPerInstance, location_name: "MaxConcurrentInvocationsPerInstance"))
1613
+ AsyncInferenceClientConfig.struct_class = Types::AsyncInferenceClientConfig
1614
+
1615
+ AsyncInferenceConfig.add_member(:client_config, Shapes::ShapeRef.new(shape: AsyncInferenceClientConfig, location_name: "ClientConfig"))
1616
+ AsyncInferenceConfig.add_member(:output_config, Shapes::ShapeRef.new(shape: AsyncInferenceOutputConfig, required: true, location_name: "OutputConfig"))
1617
+ AsyncInferenceConfig.struct_class = Types::AsyncInferenceConfig
1618
+
1619
+ AsyncInferenceNotificationConfig.add_member(:success_topic, Shapes::ShapeRef.new(shape: SnsTopicArn, location_name: "SuccessTopic"))
1620
+ AsyncInferenceNotificationConfig.add_member(:error_topic, Shapes::ShapeRef.new(shape: SnsTopicArn, location_name: "ErrorTopic"))
1621
+ AsyncInferenceNotificationConfig.struct_class = Types::AsyncInferenceNotificationConfig
1622
+
1623
+ AsyncInferenceOutputConfig.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
1624
+ AsyncInferenceOutputConfig.add_member(:s3_output_path, Shapes::ShapeRef.new(shape: DestinationS3Uri, required: true, location_name: "S3OutputPath"))
1625
+ AsyncInferenceOutputConfig.add_member(:notification_config, Shapes::ShapeRef.new(shape: AsyncInferenceNotificationConfig, location_name: "NotificationConfig"))
1626
+ AsyncInferenceOutputConfig.struct_class = Types::AsyncInferenceOutputConfig
1627
+
1605
1628
  AthenaDatasetDefinition.add_member(:catalog, Shapes::ShapeRef.new(shape: AthenaCatalog, required: true, location_name: "Catalog"))
1606
1629
  AthenaDatasetDefinition.add_member(:database, Shapes::ShapeRef.new(shape: AthenaDatabase, required: true, location_name: "Database"))
1607
1630
  AthenaDatasetDefinition.add_member(:query_string, Shapes::ShapeRef.new(shape: AthenaQueryString, required: true, location_name: "QueryString"))
@@ -2024,6 +2047,7 @@ module Aws::SageMaker
2024
2047
  CreateEndpointConfigInput.add_member(:data_capture_config, Shapes::ShapeRef.new(shape: DataCaptureConfig, location_name: "DataCaptureConfig"))
2025
2048
  CreateEndpointConfigInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
2026
2049
  CreateEndpointConfigInput.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
2050
+ CreateEndpointConfigInput.add_member(:async_inference_config, Shapes::ShapeRef.new(shape: AsyncInferenceConfig, location_name: "AsyncInferenceConfig"))
2027
2051
  CreateEndpointConfigInput.struct_class = Types::CreateEndpointConfigInput
2028
2052
 
2029
2053
  CreateEndpointConfigOutput.add_member(:endpoint_config_arn, Shapes::ShapeRef.new(shape: EndpointConfigArn, required: true, location_name: "EndpointConfigArn"))
@@ -2229,6 +2253,7 @@ module Aws::SageMaker
2229
2253
  CreateNotebookInstanceInput.add_member(:default_code_repository, Shapes::ShapeRef.new(shape: CodeRepositoryNameOrUrl, location_name: "DefaultCodeRepository"))
2230
2254
  CreateNotebookInstanceInput.add_member(:additional_code_repositories, Shapes::ShapeRef.new(shape: AdditionalCodeRepositoryNamesOrUrls, location_name: "AdditionalCodeRepositories"))
2231
2255
  CreateNotebookInstanceInput.add_member(:root_access, Shapes::ShapeRef.new(shape: RootAccess, location_name: "RootAccess"))
2256
+ CreateNotebookInstanceInput.add_member(:platform_identifier, Shapes::ShapeRef.new(shape: PlatformIdentifier, location_name: "PlatformIdentifier"))
2232
2257
  CreateNotebookInstanceInput.struct_class = Types::CreateNotebookInstanceInput
2233
2258
 
2234
2259
  CreateNotebookInstanceLifecycleConfigInput.add_member(:notebook_instance_lifecycle_config_name, Shapes::ShapeRef.new(shape: NotebookInstanceLifecycleConfigName, required: true, location_name: "NotebookInstanceLifecycleConfigName"))
@@ -2907,6 +2932,7 @@ module Aws::SageMaker
2907
2932
  DescribeEndpointConfigOutput.add_member(:data_capture_config, Shapes::ShapeRef.new(shape: DataCaptureConfig, location_name: "DataCaptureConfig"))
2908
2933
  DescribeEndpointConfigOutput.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
2909
2934
  DescribeEndpointConfigOutput.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreationTime"))
2935
+ DescribeEndpointConfigOutput.add_member(:async_inference_config, Shapes::ShapeRef.new(shape: AsyncInferenceConfig, location_name: "AsyncInferenceConfig"))
2910
2936
  DescribeEndpointConfigOutput.struct_class = Types::DescribeEndpointConfigOutput
2911
2937
 
2912
2938
  DescribeEndpointInput.add_member(:endpoint_name, Shapes::ShapeRef.new(shape: EndpointName, required: true, location_name: "EndpointName"))
@@ -2922,6 +2948,7 @@ module Aws::SageMaker
2922
2948
  DescribeEndpointOutput.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreationTime"))
2923
2949
  DescribeEndpointOutput.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "LastModifiedTime"))
2924
2950
  DescribeEndpointOutput.add_member(:last_deployment_config, Shapes::ShapeRef.new(shape: DeploymentConfig, location_name: "LastDeploymentConfig"))
2951
+ DescribeEndpointOutput.add_member(:async_inference_config, Shapes::ShapeRef.new(shape: AsyncInferenceConfig, location_name: "AsyncInferenceConfig"))
2925
2952
  DescribeEndpointOutput.struct_class = Types::DescribeEndpointOutput
2926
2953
 
2927
2954
  DescribeExperimentRequest.add_member(:experiment_name, Shapes::ShapeRef.new(shape: ExperimentEntityName, required: true, location_name: "ExperimentName"))
@@ -3201,6 +3228,7 @@ module Aws::SageMaker
3201
3228
  DescribeNotebookInstanceOutput.add_member(:default_code_repository, Shapes::ShapeRef.new(shape: CodeRepositoryNameOrUrl, location_name: "DefaultCodeRepository"))
3202
3229
  DescribeNotebookInstanceOutput.add_member(:additional_code_repositories, Shapes::ShapeRef.new(shape: AdditionalCodeRepositoryNamesOrUrls, location_name: "AdditionalCodeRepositories"))
3203
3230
  DescribeNotebookInstanceOutput.add_member(:root_access, Shapes::ShapeRef.new(shape: RootAccess, location_name: "RootAccess"))
3231
+ DescribeNotebookInstanceOutput.add_member(:platform_identifier, Shapes::ShapeRef.new(shape: PlatformIdentifier, location_name: "PlatformIdentifier"))
3204
3232
  DescribeNotebookInstanceOutput.struct_class = Types::DescribeNotebookInstanceOutput
3205
3233
 
3206
3234
  DescribePipelineDefinitionForExecutionRequest.add_member(:pipeline_execution_arn, Shapes::ShapeRef.new(shape: PipelineExecutionArn, required: true, location_name: "PipelineExecutionArn"))
@@ -5409,7 +5437,7 @@ module Aws::SageMaker
5409
5437
 
5410
5438
  ProductionVariant.add_member(:variant_name, Shapes::ShapeRef.new(shape: VariantName, required: true, location_name: "VariantName"))
5411
5439
  ProductionVariant.add_member(:model_name, Shapes::ShapeRef.new(shape: ModelName, required: true, location_name: "ModelName"))
5412
- ProductionVariant.add_member(:initial_instance_count, Shapes::ShapeRef.new(shape: TaskCount, required: true, location_name: "InitialInstanceCount"))
5440
+ ProductionVariant.add_member(:initial_instance_count, Shapes::ShapeRef.new(shape: InitialTaskCount, required: true, location_name: "InitialInstanceCount"))
5413
5441
  ProductionVariant.add_member(:instance_type, Shapes::ShapeRef.new(shape: ProductionVariantInstanceType, required: true, location_name: "InstanceType"))
5414
5442
  ProductionVariant.add_member(:initial_variant_weight, Shapes::ShapeRef.new(shape: VariantWeight, location_name: "InitialVariantWeight"))
5415
5443
  ProductionVariant.add_member(:accelerator_type, Shapes::ShapeRef.new(shape: ProductionVariantAcceleratorType, location_name: "AcceleratorType"))
@@ -1641,6 +1641,140 @@ module Aws::SageMaker
1641
1641
  include Aws::Structure
1642
1642
  end
1643
1643
 
1644
+ # Configures the behavior of the client used by Amazon SageMaker to
1645
+ # interact with the model container during asynchronous inference.
1646
+ #
1647
+ # @note When making an API call, you may pass AsyncInferenceClientConfig
1648
+ # data as a hash:
1649
+ #
1650
+ # {
1651
+ # max_concurrent_invocations_per_instance: 1,
1652
+ # }
1653
+ #
1654
+ # @!attribute [rw] max_concurrent_invocations_per_instance
1655
+ # The maximum number of concurrent requests sent by the SageMaker
1656
+ # client to the model container. If no value is provided, Amazon
1657
+ # SageMaker will choose an optimal value for you.
1658
+ # @return [Integer]
1659
+ #
1660
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AsyncInferenceClientConfig AWS API Documentation
1661
+ #
1662
+ class AsyncInferenceClientConfig < Struct.new(
1663
+ :max_concurrent_invocations_per_instance)
1664
+ SENSITIVE = []
1665
+ include Aws::Structure
1666
+ end
1667
+
1668
+ # Specifies configuration for how an endpoint performs asynchronous
1669
+ # inference.
1670
+ #
1671
+ # @note When making an API call, you may pass AsyncInferenceConfig
1672
+ # data as a hash:
1673
+ #
1674
+ # {
1675
+ # client_config: {
1676
+ # max_concurrent_invocations_per_instance: 1,
1677
+ # },
1678
+ # output_config: { # required
1679
+ # kms_key_id: "KmsKeyId",
1680
+ # s3_output_path: "DestinationS3Uri", # required
1681
+ # notification_config: {
1682
+ # success_topic: "SnsTopicArn",
1683
+ # error_topic: "SnsTopicArn",
1684
+ # },
1685
+ # },
1686
+ # }
1687
+ #
1688
+ # @!attribute [rw] client_config
1689
+ # Configures the behavior of the client used by Amazon SageMaker to
1690
+ # interact with the model container during asynchronous inference.
1691
+ # @return [Types::AsyncInferenceClientConfig]
1692
+ #
1693
+ # @!attribute [rw] output_config
1694
+ # Specifies the configuration for asynchronous inference invocation
1695
+ # outputs.
1696
+ # @return [Types::AsyncInferenceOutputConfig]
1697
+ #
1698
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AsyncInferenceConfig AWS API Documentation
1699
+ #
1700
+ class AsyncInferenceConfig < Struct.new(
1701
+ :client_config,
1702
+ :output_config)
1703
+ SENSITIVE = []
1704
+ include Aws::Structure
1705
+ end
1706
+
1707
+ # Specifies the configuration for notifications of inference results for
1708
+ # asynchronous inference.
1709
+ #
1710
+ # @note When making an API call, you may pass AsyncInferenceNotificationConfig
1711
+ # data as a hash:
1712
+ #
1713
+ # {
1714
+ # success_topic: "SnsTopicArn",
1715
+ # error_topic: "SnsTopicArn",
1716
+ # }
1717
+ #
1718
+ # @!attribute [rw] success_topic
1719
+ # Amazon SNS topic to post a notification to when inference completes
1720
+ # successfully. If no topic is provided, no notification is sent on
1721
+ # success.
1722
+ # @return [String]
1723
+ #
1724
+ # @!attribute [rw] error_topic
1725
+ # Amazon SNS topic to post a notification to when inference fails. If
1726
+ # no topic is provided, no notification is sent on failure.
1727
+ # @return [String]
1728
+ #
1729
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AsyncInferenceNotificationConfig AWS API Documentation
1730
+ #
1731
+ class AsyncInferenceNotificationConfig < Struct.new(
1732
+ :success_topic,
1733
+ :error_topic)
1734
+ SENSITIVE = []
1735
+ include Aws::Structure
1736
+ end
1737
+
1738
+ # Specifies the configuration for asynchronous inference invocation
1739
+ # outputs.
1740
+ #
1741
+ # @note When making an API call, you may pass AsyncInferenceOutputConfig
1742
+ # data as a hash:
1743
+ #
1744
+ # {
1745
+ # kms_key_id: "KmsKeyId",
1746
+ # s3_output_path: "DestinationS3Uri", # required
1747
+ # notification_config: {
1748
+ # success_topic: "SnsTopicArn",
1749
+ # error_topic: "SnsTopicArn",
1750
+ # },
1751
+ # }
1752
+ #
1753
+ # @!attribute [rw] kms_key_id
1754
+ # The Amazon Web Services Key Management Service (Amazon Web Services
1755
+ # KMS) key that Amazon SageMaker uses to encrypt the asynchronous
1756
+ # inference output in Amazon S3.
1757
+ # @return [String]
1758
+ #
1759
+ # @!attribute [rw] s3_output_path
1760
+ # The Amazon S3 location to upload inference responses to.
1761
+ # @return [String]
1762
+ #
1763
+ # @!attribute [rw] notification_config
1764
+ # Specifies the configuration for notifications of inference results
1765
+ # for asynchronous inference.
1766
+ # @return [Types::AsyncInferenceNotificationConfig]
1767
+ #
1768
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AsyncInferenceOutputConfig AWS API Documentation
1769
+ #
1770
+ class AsyncInferenceOutputConfig < Struct.new(
1771
+ :kms_key_id,
1772
+ :s3_output_path,
1773
+ :notification_config)
1774
+ SENSITIVE = []
1775
+ include Aws::Structure
1776
+ end
1777
+
1644
1778
  # Configuration for Athena Dataset Definition input.
1645
1779
  #
1646
1780
  # @note When making an API call, you may pass AthenaDatasetDefinition
@@ -4753,6 +4887,19 @@ module Aws::SageMaker
4753
4887
  # },
4754
4888
  # ],
4755
4889
  # kms_key_id: "KmsKeyId",
4890
+ # async_inference_config: {
4891
+ # client_config: {
4892
+ # max_concurrent_invocations_per_instance: 1,
4893
+ # },
4894
+ # output_config: { # required
4895
+ # kms_key_id: "KmsKeyId",
4896
+ # s3_output_path: "DestinationS3Uri", # required
4897
+ # notification_config: {
4898
+ # success_topic: "SnsTopicArn",
4899
+ # error_topic: "SnsTopicArn",
4900
+ # },
4901
+ # },
4902
+ # },
4756
4903
  # }
4757
4904
  #
4758
4905
  # @!attribute [rw] endpoint_config_name
@@ -4827,6 +4974,16 @@ module Aws::SageMaker
4827
4974
  # [3]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ssd-instance-store.html
4828
4975
  # @return [String]
4829
4976
  #
4977
+ # @!attribute [rw] async_inference_config
4978
+ # Specifies configuration for how an endpoint performs asynchronous
4979
+ # inference. This is a required field in order for your Endpoint to be
4980
+ # invoked using [ `InvokeEndpointAsync` ][1].
4981
+ #
4982
+ #
4983
+ #
4984
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_runtime_InvokeEndpoint.html
4985
+ # @return [Types::AsyncInferenceConfig]
4986
+ #
4830
4987
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateEndpointConfigInput AWS API Documentation
4831
4988
  #
4832
4989
  class CreateEndpointConfigInput < Struct.new(
@@ -4834,7 +4991,8 @@ module Aws::SageMaker
4834
4991
  :production_variants,
4835
4992
  :data_capture_config,
4836
4993
  :tags,
4837
- :kms_key_id)
4994
+ :kms_key_id,
4995
+ :async_inference_config)
4838
4996
  SENSITIVE = []
4839
4997
  include Aws::Structure
4840
4998
  end
@@ -7108,7 +7266,7 @@ module Aws::SageMaker
7108
7266
  #
7109
7267
  # {
7110
7268
  # notebook_instance_name: "NotebookInstanceName", # required
7111
- # instance_type: "ml.t2.medium", # required, accepts ml.t2.medium, ml.t2.large, ml.t2.xlarge, ml.t2.2xlarge, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5d.xlarge, ml.c5d.2xlarge, ml.c5d.4xlarge, ml.c5d.9xlarge, ml.c5d.18xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge
7269
+ # instance_type: "ml.t2.medium", # required, accepts ml.t2.medium, ml.t2.large, ml.t2.xlarge, ml.t2.2xlarge, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5d.xlarge, ml.c5d.2xlarge, ml.c5d.4xlarge, ml.c5d.9xlarge, ml.c5d.18xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
7112
7270
  # subnet_id: "SubnetId",
7113
7271
  # security_group_ids: ["SecurityGroupId"],
7114
7272
  # role_arn: "RoleArn", # required
@@ -7126,6 +7284,7 @@ module Aws::SageMaker
7126
7284
  # default_code_repository: "CodeRepositoryNameOrUrl",
7127
7285
  # additional_code_repositories: ["CodeRepositoryNameOrUrl"],
7128
7286
  # root_access: "Enabled", # accepts Enabled, Disabled
7287
+ # platform_identifier: "PlatformIdentifier",
7129
7288
  # }
7130
7289
  #
7131
7290
  # @!attribute [rw] notebook_instance_name
@@ -7275,6 +7434,11 @@ module Aws::SageMaker
7275
7434
  # </note>
7276
7435
  # @return [String]
7277
7436
  #
7437
+ # @!attribute [rw] platform_identifier
7438
+ # The platform identifier of the notebook instance runtime
7439
+ # environment.
7440
+ # @return [String]
7441
+ #
7278
7442
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateNotebookInstanceInput AWS API Documentation
7279
7443
  #
7280
7444
  class CreateNotebookInstanceInput < Struct.new(
@@ -7291,7 +7455,8 @@ module Aws::SageMaker
7291
7455
  :accelerator_types,
7292
7456
  :default_code_repository,
7293
7457
  :additional_code_repositories,
7294
- :root_access)
7458
+ :root_access,
7459
+ :platform_identifier)
7295
7460
  SENSITIVE = []
7296
7461
  include Aws::Structure
7297
7462
  end
@@ -11956,6 +12121,15 @@ module Aws::SageMaker
11956
12121
  # A timestamp that shows when the endpoint configuration was created.
11957
12122
  # @return [Time]
11958
12123
  #
12124
+ # @!attribute [rw] async_inference_config
12125
+ # Returns the description of an endpoint configuration created using
12126
+ # the [ `CreateEndpointConfig` ][1] API.
12127
+ #
12128
+ #
12129
+ #
12130
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateEndpointConfig.html
12131
+ # @return [Types::AsyncInferenceConfig]
12132
+ #
11959
12133
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeEndpointConfigOutput AWS API Documentation
11960
12134
  #
11961
12135
  class DescribeEndpointConfigOutput < Struct.new(
@@ -11964,7 +12138,8 @@ module Aws::SageMaker
11964
12138
  :production_variants,
11965
12139
  :data_capture_config,
11966
12140
  :kms_key_id,
11967
- :creation_time)
12141
+ :creation_time,
12142
+ :async_inference_config)
11968
12143
  SENSITIVE = []
11969
12144
  include Aws::Structure
11970
12145
  end
@@ -12061,6 +12236,15 @@ module Aws::SageMaker
12061
12236
  # The most recent deployment configuration for the endpoint.
12062
12237
  # @return [Types::DeploymentConfig]
12063
12238
  #
12239
+ # @!attribute [rw] async_inference_config
12240
+ # Returns the description of an endpoint configuration created using
12241
+ # the [ `CreateEndpointConfig` ][1] API.
12242
+ #
12243
+ #
12244
+ #
12245
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateEndpointConfig.html
12246
+ # @return [Types::AsyncInferenceConfig]
12247
+ #
12064
12248
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeEndpointOutput AWS API Documentation
12065
12249
  #
12066
12250
  class DescribeEndpointOutput < Struct.new(
@@ -12073,7 +12257,8 @@ module Aws::SageMaker
12073
12257
  :failure_reason,
12074
12258
  :creation_time,
12075
12259
  :last_modified_time,
12076
- :last_deployment_config)
12260
+ :last_deployment_config,
12261
+ :async_inference_config)
12077
12262
  SENSITIVE = []
12078
12263
  include Aws::Structure
12079
12264
  end
@@ -13699,6 +13884,11 @@ module Aws::SageMaker
13699
13884
  # </note>
13700
13885
  # @return [String]
13701
13886
  #
13887
+ # @!attribute [rw] platform_identifier
13888
+ # The platform identifier of the notebook instance runtime
13889
+ # environment.
13890
+ # @return [String]
13891
+ #
13702
13892
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeNotebookInstanceOutput AWS API Documentation
13703
13893
  #
13704
13894
  class DescribeNotebookInstanceOutput < Struct.new(
@@ -13721,7 +13911,8 @@ module Aws::SageMaker
13721
13911
  :accelerator_types,
13722
13912
  :default_code_repository,
13723
13913
  :additional_code_repositories,
13724
- :root_access)
13914
+ :root_access,
13915
+ :platform_identifier)
13725
13916
  SENSITIVE = []
13726
13917
  include Aws::Structure
13727
13918
  end
@@ -27291,8 +27482,8 @@ module Aws::SageMaker
27291
27482
  include Aws::Structure
27292
27483
  end
27293
27484
 
27294
- # Configures SNS notifications of available or expiring work items for
27295
- # work teams.
27485
+ # Configures Amazon SNS notifications of available or expiring work
27486
+ # items for work teams.
27296
27487
  #
27297
27488
  # @note When making an API call, you may pass NotificationConfiguration
27298
27489
  # data as a hash:
@@ -27302,7 +27493,7 @@ module Aws::SageMaker
27302
27493
  # }
27303
27494
  #
27304
27495
  # @!attribute [rw] notification_topic_arn
27305
- # The ARN for the SNS topic to which notifications should be
27496
+ # The ARN for the Amazon SNS topic to which notifications should be
27306
27497
  # published.
27307
27498
  # @return [String]
27308
27499
  #
@@ -35085,7 +35276,7 @@ module Aws::SageMaker
35085
35276
  #
35086
35277
  # {
35087
35278
  # notebook_instance_name: "NotebookInstanceName", # required
35088
- # instance_type: "ml.t2.medium", # accepts ml.t2.medium, ml.t2.large, ml.t2.xlarge, ml.t2.2xlarge, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5d.xlarge, ml.c5d.2xlarge, ml.c5d.4xlarge, ml.c5d.9xlarge, ml.c5d.18xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge
35279
+ # instance_type: "ml.t2.medium", # accepts ml.t2.medium, ml.t2.large, ml.t2.xlarge, ml.t2.2xlarge, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.12xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c4.xlarge, ml.c4.2xlarge, ml.c4.4xlarge, ml.c4.8xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5d.xlarge, ml.c5d.2xlarge, ml.c5d.4xlarge, ml.c5d.9xlarge, ml.c5d.18xlarge, ml.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
35089
35280
  # role_arn: "RoleArn",
35090
35281
  # lifecycle_config_name: "NotebookInstanceLifecycleConfigName",
35091
35282
  # disassociate_lifecycle_config: false,
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.96.0
4
+ version: 1.97.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: 2021-08-12 00:00:00.000000000 Z
11
+ date: 2021-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core