aws-sdk-sagemaker 1.231.0 → 1.232.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: 30a49fba9826204b8eb44da1ebb94f78628f9b096a7ec808e5fb7f28dcb413bc
4
- data.tar.gz: 488cd1a282916d2872c42b9f06fa9e9906d6a36c6e4fc7e2098e6b0ee2f7d364
3
+ metadata.gz: 4efbfed49aed78ab58c538b099857aeead22ccf1a9389bfc7dcb11fc311e05d0
4
+ data.tar.gz: 00260b0dea0b22e618ff9b57991c0b0a62276d45ab7d65f66b005e9e1c979494
5
5
  SHA512:
6
- metadata.gz: 29b2726b4c50ab7fa73e78a1ef46d46dbebb2da12a6f78c56e4021d2ee0b4d7b60eee7d8bc4d24387176f941b02ec8ab6568efe9d1c63fcee8fab7fc573d50d4
7
- data.tar.gz: a383bbdca5201f74d6cca225064a859f94abaed9537939d691aabf4cd26a34e65c29866e8da7af5289d818857a1fe0679ef6915b2ef4472d64eca8807763c964
6
+ metadata.gz: 01b72c9596e1908ec957e27b3198cdb3883a967b7a0255fb2b96818467ca7bc9e9b530c5a26ccf3f7db313e223aebdc109bc322e32c120594bf8948192f5fefa
7
+ data.tar.gz: fb0c2307ea47231d3d0efdaa7a38fb04cdf2342fbff71630c9d721b2091541abf80557f17526991026474694ed49c044d04cf68e1ca60f26f398e595de24821b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.232.0 (2024-02-29)
5
+ ------------------
6
+
7
+ * Feature - Adds support for ModelDataSource in Model Packages to support unzipped models. Adds support to specify SourceUri for models which allows registration of models without mandating a container for hosting. Using SourceUri, customers can decouple the model from hosting information during registration.
8
+
4
9
  1.231.0 (2024-02-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.231.0
1
+ 1.232.0
@@ -611,6 +611,10 @@ module Aws::SageMaker
611
611
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].image #=> String
612
612
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].image_digest #=> String
613
613
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].model_data_url #=> String
614
+ # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].model_data_source.s3_data_source.s3_uri #=> String
615
+ # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].model_data_source.s3_data_source.s3_data_type #=> String, one of "S3Prefix", "S3Object"
616
+ # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].model_data_source.s3_data_source.compression_type #=> String, one of "None", "Gzip"
617
+ # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].model_data_source.s3_data_source.model_access_config.accept_eula #=> Boolean
614
618
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].product_id #=> String
615
619
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].environment #=> Hash
616
620
  # resp.model_package_summaries["ModelPackageArn"].inference_specification.containers[0].environment["EnvironmentKey"] #=> String
@@ -861,6 +865,16 @@ module Aws::SageMaker
861
865
  # image: "ContainerImage", # required
862
866
  # image_digest: "ImageDigest",
863
867
  # model_data_url: "Url",
868
+ # model_data_source: {
869
+ # s3_data_source: {
870
+ # s3_uri: "S3ModelUri", # required
871
+ # s3_data_type: "S3Prefix", # required, accepts S3Prefix, S3Object
872
+ # compression_type: "None", # required, accepts None, Gzip
873
+ # model_access_config: {
874
+ # accept_eula: false, # required
875
+ # },
876
+ # },
877
+ # },
864
878
  # product_id: "ProductId",
865
879
  # environment: {
866
880
  # "EnvironmentKey" => "EnvironmentValue",
@@ -5299,10 +5313,6 @@ module Aws::SageMaker
5299
5313
  # `CreateEndpoint` API. SageMaker then deploys all of the containers
5300
5314
  # that you defined for the model in the hosting environment.
5301
5315
  #
5302
- # For an example that calls this method when deploying a model to
5303
- # SageMaker hosting services, see [Create a Model (Amazon Web Services
5304
- # SDK for Python (Boto 3)).][1]
5305
- #
5306
5316
  # To run a batch transform using your model, you start a job with the
5307
5317
  # `CreateTransformJob` API. SageMaker uses your model and your dataset
5308
5318
  # to get inferences which are then saved to a specified S3 location.
@@ -5314,10 +5324,6 @@ module Aws::SageMaker
5314
5324
  # needs. For example, if the inference code access any other Amazon Web
5315
5325
  # Services resources, you grant necessary permissions via this role.
5316
5326
  #
5317
- #
5318
- #
5319
- # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/realtime-endpoints-deployment.html#realtime-endpoints-deployment-create-model
5320
- #
5321
5327
  # @option params [required, String] :model_name
5322
5328
  # The name of the new model.
5323
5329
  #
@@ -5948,8 +5954,8 @@ module Aws::SageMaker
5948
5954
  # A description of the model package.
5949
5955
  #
5950
5956
  # @option params [Types::InferenceSpecification] :inference_specification
5951
- # Specifies details about inference jobs that can be run with models
5952
- # based on this model package, including the following:
5957
+ # Specifies details about inference jobs that you can run with models
5958
+ # based on this model package, including the following information:
5953
5959
  #
5954
5960
  # * The Amazon ECR paths of containers that contain the inference code
5955
5961
  # and model artifacts.
@@ -6057,6 +6063,11 @@ module Aws::SageMaker
6057
6063
  # @option params [String] :skip_model_validation
6058
6064
  # Indicates if you want to skip model validation.
6059
6065
  #
6066
+ # @option params [String] :source_uri
6067
+ # The URI of the source for the model package. If you want to clone a
6068
+ # model package, set it to the model package Amazon Resource Name (ARN).
6069
+ # If you want to register a model, set it to the model ARN.
6070
+ #
6060
6071
  # @return [Types::CreateModelPackageOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6061
6072
  #
6062
6073
  # * {Types::CreateModelPackageOutput#model_package_arn #model_package_arn} => String
@@ -6074,6 +6085,16 @@ module Aws::SageMaker
6074
6085
  # image: "ContainerImage", # required
6075
6086
  # image_digest: "ImageDigest",
6076
6087
  # model_data_url: "Url",
6088
+ # model_data_source: {
6089
+ # s3_data_source: {
6090
+ # s3_uri: "S3ModelUri", # required
6091
+ # s3_data_type: "S3Prefix", # required, accepts S3Prefix, S3Object
6092
+ # compression_type: "None", # required, accepts None, Gzip
6093
+ # model_access_config: {
6094
+ # accept_eula: false, # required
6095
+ # },
6096
+ # },
6097
+ # },
6077
6098
  # product_id: "ProductId",
6078
6099
  # environment: {
6079
6100
  # "EnvironmentKey" => "EnvironmentValue",
@@ -6138,6 +6159,16 @@ module Aws::SageMaker
6138
6159
  # source_algorithms: [ # required
6139
6160
  # {
6140
6161
  # model_data_url: "Url",
6162
+ # model_data_source: {
6163
+ # s3_data_source: {
6164
+ # s3_uri: "S3ModelUri", # required
6165
+ # s3_data_type: "S3Prefix", # required, accepts S3Prefix, S3Object
6166
+ # compression_type: "None", # required, accepts None, Gzip
6167
+ # model_access_config: {
6168
+ # accept_eula: false, # required
6169
+ # },
6170
+ # },
6171
+ # },
6141
6172
  # algorithm_name: "ArnOrName", # required
6142
6173
  # },
6143
6174
  # ],
@@ -6278,6 +6309,16 @@ module Aws::SageMaker
6278
6309
  # image: "ContainerImage", # required
6279
6310
  # image_digest: "ImageDigest",
6280
6311
  # model_data_url: "Url",
6312
+ # model_data_source: {
6313
+ # s3_data_source: {
6314
+ # s3_uri: "S3ModelUri", # required
6315
+ # s3_data_type: "S3Prefix", # required, accepts S3Prefix, S3Object
6316
+ # compression_type: "None", # required, accepts None, Gzip
6317
+ # model_access_config: {
6318
+ # accept_eula: false, # required
6319
+ # },
6320
+ # },
6321
+ # },
6281
6322
  # product_id: "ProductId",
6282
6323
  # environment: {
6283
6324
  # "EnvironmentKey" => "EnvironmentValue",
@@ -6302,6 +6343,7 @@ module Aws::SageMaker
6302
6343
  # },
6303
6344
  # ],
6304
6345
  # skip_model_validation: "All", # accepts All, None
6346
+ # source_uri: "ModelPackageSourceUri",
6305
6347
  # })
6306
6348
  #
6307
6349
  # @example Response structure
@@ -10578,6 +10620,10 @@ module Aws::SageMaker
10578
10620
  # resp.inference_specification.containers[0].image #=> String
10579
10621
  # resp.inference_specification.containers[0].image_digest #=> String
10580
10622
  # resp.inference_specification.containers[0].model_data_url #=> String
10623
+ # resp.inference_specification.containers[0].model_data_source.s3_data_source.s3_uri #=> String
10624
+ # resp.inference_specification.containers[0].model_data_source.s3_data_source.s3_data_type #=> String, one of "S3Prefix", "S3Object"
10625
+ # resp.inference_specification.containers[0].model_data_source.s3_data_source.compression_type #=> String, one of "None", "Gzip"
10626
+ # resp.inference_specification.containers[0].model_data_source.s3_data_source.model_access_config.accept_eula #=> Boolean
10581
10627
  # resp.inference_specification.containers[0].product_id #=> String
10582
10628
  # resp.inference_specification.containers[0].environment #=> Hash
10583
10629
  # resp.inference_specification.containers[0].environment["EnvironmentKey"] #=> String
@@ -13983,6 +14029,7 @@ module Aws::SageMaker
13983
14029
  # * {Types::DescribeModelPackageOutput#drift_check_baselines #drift_check_baselines} => Types::DriftCheckBaselines
13984
14030
  # * {Types::DescribeModelPackageOutput#additional_inference_specifications #additional_inference_specifications} => Array<Types::AdditionalInferenceSpecificationDefinition>
13985
14031
  # * {Types::DescribeModelPackageOutput#skip_model_validation #skip_model_validation} => String
14032
+ # * {Types::DescribeModelPackageOutput#source_uri #source_uri} => String
13986
14033
  #
13987
14034
  # @example Request syntax with placeholder values
13988
14035
  #
@@ -14003,6 +14050,10 @@ module Aws::SageMaker
14003
14050
  # resp.inference_specification.containers[0].image #=> String
14004
14051
  # resp.inference_specification.containers[0].image_digest #=> String
14005
14052
  # resp.inference_specification.containers[0].model_data_url #=> String
14053
+ # resp.inference_specification.containers[0].model_data_source.s3_data_source.s3_uri #=> String
14054
+ # resp.inference_specification.containers[0].model_data_source.s3_data_source.s3_data_type #=> String, one of "S3Prefix", "S3Object"
14055
+ # resp.inference_specification.containers[0].model_data_source.s3_data_source.compression_type #=> String, one of "None", "Gzip"
14056
+ # resp.inference_specification.containers[0].model_data_source.s3_data_source.model_access_config.accept_eula #=> Boolean
14006
14057
  # resp.inference_specification.containers[0].product_id #=> String
14007
14058
  # resp.inference_specification.containers[0].environment #=> Hash
14008
14059
  # resp.inference_specification.containers[0].environment["EnvironmentKey"] #=> String
@@ -14023,6 +14074,10 @@ module Aws::SageMaker
14023
14074
  # resp.inference_specification.supported_response_mime_types[0] #=> String
14024
14075
  # resp.source_algorithm_specification.source_algorithms #=> Array
14025
14076
  # resp.source_algorithm_specification.source_algorithms[0].model_data_url #=> String
14077
+ # resp.source_algorithm_specification.source_algorithms[0].model_data_source.s3_data_source.s3_uri #=> String
14078
+ # resp.source_algorithm_specification.source_algorithms[0].model_data_source.s3_data_source.s3_data_type #=> String, one of "S3Prefix", "S3Object"
14079
+ # resp.source_algorithm_specification.source_algorithms[0].model_data_source.s3_data_source.compression_type #=> String, one of "None", "Gzip"
14080
+ # resp.source_algorithm_specification.source_algorithms[0].model_data_source.s3_data_source.model_access_config.accept_eula #=> Boolean
14026
14081
  # resp.source_algorithm_specification.source_algorithms[0].algorithm_name #=> String
14027
14082
  # resp.validation_specification.validation_role #=> String
14028
14083
  # resp.validation_specification.validation_profiles #=> Array
@@ -14137,6 +14192,10 @@ module Aws::SageMaker
14137
14192
  # resp.additional_inference_specifications[0].containers[0].image #=> String
14138
14193
  # resp.additional_inference_specifications[0].containers[0].image_digest #=> String
14139
14194
  # resp.additional_inference_specifications[0].containers[0].model_data_url #=> String
14195
+ # resp.additional_inference_specifications[0].containers[0].model_data_source.s3_data_source.s3_uri #=> String
14196
+ # resp.additional_inference_specifications[0].containers[0].model_data_source.s3_data_source.s3_data_type #=> String, one of "S3Prefix", "S3Object"
14197
+ # resp.additional_inference_specifications[0].containers[0].model_data_source.s3_data_source.compression_type #=> String, one of "None", "Gzip"
14198
+ # resp.additional_inference_specifications[0].containers[0].model_data_source.s3_data_source.model_access_config.accept_eula #=> Boolean
14140
14199
  # resp.additional_inference_specifications[0].containers[0].product_id #=> String
14141
14200
  # resp.additional_inference_specifications[0].containers[0].environment #=> Hash
14142
14201
  # resp.additional_inference_specifications[0].containers[0].environment["EnvironmentKey"] #=> String
@@ -14156,6 +14215,7 @@ module Aws::SageMaker
14156
14215
  # resp.additional_inference_specifications[0].supported_response_mime_types #=> Array
14157
14216
  # resp.additional_inference_specifications[0].supported_response_mime_types[0] #=> String
14158
14217
  # resp.skip_model_validation #=> String, one of "All", "None"
14218
+ # resp.source_uri #=> String
14159
14219
  #
14160
14220
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelPackage AWS API Documentation
14161
14221
  #
@@ -23264,7 +23324,7 @@ module Aws::SageMaker
23264
23324
  req.send_request(options)
23265
23325
  end
23266
23326
 
23267
- # Update a SageMaker HyperPod cluster.
23327
+ # Updates a SageMaker HyperPod cluster.
23268
23328
  #
23269
23329
  # @option params [required, String] :cluster_name
23270
23330
  # Specify the name of the SageMaker HyperPod cluster you want to update.
@@ -23308,6 +23368,41 @@ module Aws::SageMaker
23308
23368
  req.send_request(options)
23309
23369
  end
23310
23370
 
23371
+ # Updates the platform software of a SageMaker HyperPod cluster for
23372
+ # security patching. To learn how to use this API, see [Update the
23373
+ # SageMaker HyperPod platform software of a cluster][1].
23374
+ #
23375
+ #
23376
+ #
23377
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/sagemaker-hyperpod-operate.html#sagemaker-hyperpod-operate-cli-command-update-cluster-software
23378
+ #
23379
+ # @option params [required, String] :cluster_name
23380
+ # Specify the name or the Amazon Resource Name (ARN) of the SageMaker
23381
+ # HyperPod cluster you want to update for security patching.
23382
+ #
23383
+ # @return [Types::UpdateClusterSoftwareResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
23384
+ #
23385
+ # * {Types::UpdateClusterSoftwareResponse#cluster_arn #cluster_arn} => String
23386
+ #
23387
+ # @example Request syntax with placeholder values
23388
+ #
23389
+ # resp = client.update_cluster_software({
23390
+ # cluster_name: "ClusterNameOrArn", # required
23391
+ # })
23392
+ #
23393
+ # @example Response structure
23394
+ #
23395
+ # resp.cluster_arn #=> String
23396
+ #
23397
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateClusterSoftware AWS API Documentation
23398
+ #
23399
+ # @overload update_cluster_software(params = {})
23400
+ # @param [Hash] params ({})
23401
+ def update_cluster_software(params = {}, options = {})
23402
+ req = build_request(:update_cluster_software, params)
23403
+ req.send_request(options)
23404
+ end
23405
+
23311
23406
  # Updates the specified Git repository with the specified values.
23312
23407
  #
23313
23408
  # @option params [required, String] :code_repository_name
@@ -23991,7 +24086,9 @@ module Aws::SageMaker
23991
24086
  # the feature group *after the feature group is updated*. If a record
23992
24087
  # level `TtlDuration` exists from using the `PutRecord` API, the record
23993
24088
  # level `TtlDuration` applies to that record instead of the default
23994
- # `TtlDuration`.
24089
+ # `TtlDuration`. To remove the default `TtlDuration` from an existing
24090
+ # feature group, use the `UpdateFeatureGroup` API and set the
24091
+ # `TtlDuration` `Unit` and `Value` to `null`.
23995
24092
  #
23996
24093
  # @option params [required, String] :feature_group_name
23997
24094
  # The name or Amazon Resource Name (ARN) of the feature group that
@@ -24570,6 +24667,22 @@ module Aws::SageMaker
24570
24667
  # package that can be used on inference endpoints. Generally used with
24571
24668
  # SageMaker Neo to store the compiled artifacts.
24572
24669
  #
24670
+ # @option params [Types::InferenceSpecification] :inference_specification
24671
+ # Specifies details about inference jobs that you can run with models
24672
+ # based on this model package, including the following information:
24673
+ #
24674
+ # * The Amazon ECR paths of containers that contain the inference code
24675
+ # and model artifacts.
24676
+ #
24677
+ # * The instance types that the model package supports for transform
24678
+ # jobs and real-time endpoints used for inference.
24679
+ #
24680
+ # * The input and output content formats that the model package supports
24681
+ # for inference.
24682
+ #
24683
+ # @option params [String] :source_uri
24684
+ # The URI of the source for the model package.
24685
+ #
24573
24686
  # @return [Types::UpdateModelPackageOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
24574
24687
  #
24575
24688
  # * {Types::UpdateModelPackageOutput#model_package_arn #model_package_arn} => String
@@ -24594,6 +24707,16 @@ module Aws::SageMaker
24594
24707
  # image: "ContainerImage", # required
24595
24708
  # image_digest: "ImageDigest",
24596
24709
  # model_data_url: "Url",
24710
+ # model_data_source: {
24711
+ # s3_data_source: {
24712
+ # s3_uri: "S3ModelUri", # required
24713
+ # s3_data_type: "S3Prefix", # required, accepts S3Prefix, S3Object
24714
+ # compression_type: "None", # required, accepts None, Gzip
24715
+ # model_access_config: {
24716
+ # accept_eula: false, # required
24717
+ # },
24718
+ # },
24719
+ # },
24597
24720
  # product_id: "ProductId",
24598
24721
  # environment: {
24599
24722
  # "EnvironmentKey" => "EnvironmentValue",
@@ -24617,6 +24740,46 @@ module Aws::SageMaker
24617
24740
  # supported_response_mime_types: ["ResponseMIMEType"],
24618
24741
  # },
24619
24742
  # ],
24743
+ # inference_specification: {
24744
+ # containers: [ # required
24745
+ # {
24746
+ # container_hostname: "ContainerHostname",
24747
+ # image: "ContainerImage", # required
24748
+ # image_digest: "ImageDigest",
24749
+ # model_data_url: "Url",
24750
+ # model_data_source: {
24751
+ # s3_data_source: {
24752
+ # s3_uri: "S3ModelUri", # required
24753
+ # s3_data_type: "S3Prefix", # required, accepts S3Prefix, S3Object
24754
+ # compression_type: "None", # required, accepts None, Gzip
24755
+ # model_access_config: {
24756
+ # accept_eula: false, # required
24757
+ # },
24758
+ # },
24759
+ # },
24760
+ # product_id: "ProductId",
24761
+ # environment: {
24762
+ # "EnvironmentKey" => "EnvironmentValue",
24763
+ # },
24764
+ # model_input: {
24765
+ # data_input_config: "DataInputConfig", # required
24766
+ # },
24767
+ # framework: "String",
24768
+ # framework_version: "ModelPackageFrameworkVersion",
24769
+ # nearest_model_name: "String",
24770
+ # additional_s3_data_source: {
24771
+ # s3_data_type: "S3Object", # required, accepts S3Object, S3Prefix
24772
+ # s3_uri: "S3Uri", # required
24773
+ # compression_type: "None", # accepts None, Gzip
24774
+ # },
24775
+ # },
24776
+ # ],
24777
+ # 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
24778
+ # supported_realtime_inference_instance_types: ["ml.t2.medium"], # accepts ml.t2.medium, ml.t2.large, ml.t2.xlarge, ml.t2.2xlarge, ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.m5.large, 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.12xlarge, ml.m5d.24xlarge, ml.c4.large, 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.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5d.large, ml.c5d.xlarge, ml.c5d.2xlarge, ml.c5d.4xlarge, ml.c5d.9xlarge, ml.c5d.18xlarge, 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.12xlarge, ml.r5.24xlarge, ml.r5d.large, ml.r5d.xlarge, ml.r5d.2xlarge, ml.r5d.4xlarge, ml.r5d.12xlarge, ml.r5d.24xlarge, ml.inf1.xlarge, ml.inf1.2xlarge, ml.inf1.6xlarge, ml.inf1.24xlarge, ml.dl1.24xlarge, ml.c6i.large, ml.c6i.xlarge, ml.c6i.2xlarge, ml.c6i.4xlarge, ml.c6i.8xlarge, ml.c6i.12xlarge, ml.c6i.16xlarge, ml.c6i.24xlarge, ml.c6i.32xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.12xlarge, ml.g5.16xlarge, ml.g5.24xlarge, ml.g5.48xlarge, ml.p4d.24xlarge, ml.c7g.large, ml.c7g.xlarge, ml.c7g.2xlarge, ml.c7g.4xlarge, ml.c7g.8xlarge, ml.c7g.12xlarge, ml.c7g.16xlarge, ml.m6g.large, ml.m6g.xlarge, ml.m6g.2xlarge, ml.m6g.4xlarge, ml.m6g.8xlarge, ml.m6g.12xlarge, ml.m6g.16xlarge, ml.m6gd.large, ml.m6gd.xlarge, ml.m6gd.2xlarge, ml.m6gd.4xlarge, ml.m6gd.8xlarge, ml.m6gd.12xlarge, ml.m6gd.16xlarge, ml.c6g.large, ml.c6g.xlarge, ml.c6g.2xlarge, ml.c6g.4xlarge, ml.c6g.8xlarge, ml.c6g.12xlarge, ml.c6g.16xlarge, ml.c6gd.large, ml.c6gd.xlarge, ml.c6gd.2xlarge, ml.c6gd.4xlarge, ml.c6gd.8xlarge, ml.c6gd.12xlarge, ml.c6gd.16xlarge, ml.c6gn.large, ml.c6gn.xlarge, ml.c6gn.2xlarge, ml.c6gn.4xlarge, ml.c6gn.8xlarge, ml.c6gn.12xlarge, ml.c6gn.16xlarge, ml.r6g.large, ml.r6g.xlarge, ml.r6g.2xlarge, ml.r6g.4xlarge, ml.r6g.8xlarge, ml.r6g.12xlarge, ml.r6g.16xlarge, ml.r6gd.large, ml.r6gd.xlarge, ml.r6gd.2xlarge, ml.r6gd.4xlarge, ml.r6gd.8xlarge, ml.r6gd.12xlarge, ml.r6gd.16xlarge, ml.p4de.24xlarge, ml.trn1.2xlarge, ml.trn1.32xlarge, ml.trn1n.32xlarge, ml.inf2.xlarge, ml.inf2.8xlarge, ml.inf2.24xlarge, ml.inf2.48xlarge, ml.p5.48xlarge, ml.m7i.large, ml.m7i.xlarge, ml.m7i.2xlarge, ml.m7i.4xlarge, ml.m7i.8xlarge, ml.m7i.12xlarge, ml.m7i.16xlarge, ml.m7i.24xlarge, ml.m7i.48xlarge, ml.c7i.large, ml.c7i.xlarge, ml.c7i.2xlarge, ml.c7i.4xlarge, ml.c7i.8xlarge, ml.c7i.12xlarge, ml.c7i.16xlarge, ml.c7i.24xlarge, ml.c7i.48xlarge, ml.r7i.large, ml.r7i.xlarge, ml.r7i.2xlarge, ml.r7i.4xlarge, ml.r7i.8xlarge, ml.r7i.12xlarge, ml.r7i.16xlarge, ml.r7i.24xlarge, ml.r7i.48xlarge
24779
+ # supported_content_types: ["ContentType"],
24780
+ # supported_response_mime_types: ["ResponseMIMEType"],
24781
+ # },
24782
+ # source_uri: "ModelPackageSourceUri",
24620
24783
  # })
24621
24784
  #
24622
24785
  # @example Response structure
@@ -25940,7 +26103,7 @@ module Aws::SageMaker
25940
26103
  params: params,
25941
26104
  config: config)
25942
26105
  context[:gem_name] = 'aws-sdk-sagemaker'
25943
- context[:gem_version] = '1.231.0'
26106
+ context[:gem_version] = '1.232.0'
25944
26107
  Seahorse::Client::Request.new(handlers, context)
25945
26108
  end
25946
26109
 
@@ -1433,6 +1433,7 @@ module Aws::SageMaker
1433
1433
  ModelPackageGroupSummary = Shapes::StructureShape.new(name: 'ModelPackageGroupSummary')
1434
1434
  ModelPackageGroupSummaryList = Shapes::ListShape.new(name: 'ModelPackageGroupSummaryList')
1435
1435
  ModelPackageSortBy = Shapes::StringShape.new(name: 'ModelPackageSortBy')
1436
+ ModelPackageSourceUri = Shapes::StringShape.new(name: 'ModelPackageSourceUri')
1436
1437
  ModelPackageStatus = Shapes::StringShape.new(name: 'ModelPackageStatus')
1437
1438
  ModelPackageStatusDetails = Shapes::StructureShape.new(name: 'ModelPackageStatusDetails')
1438
1439
  ModelPackageStatusItem = Shapes::StructureShape.new(name: 'ModelPackageStatusItem')
@@ -2132,6 +2133,8 @@ module Aws::SageMaker
2132
2133
  UpdateArtifactResponse = Shapes::StructureShape.new(name: 'UpdateArtifactResponse')
2133
2134
  UpdateClusterRequest = Shapes::StructureShape.new(name: 'UpdateClusterRequest')
2134
2135
  UpdateClusterResponse = Shapes::StructureShape.new(name: 'UpdateClusterResponse')
2136
+ UpdateClusterSoftwareRequest = Shapes::StructureShape.new(name: 'UpdateClusterSoftwareRequest')
2137
+ UpdateClusterSoftwareResponse = Shapes::StructureShape.new(name: 'UpdateClusterSoftwareResponse')
2135
2138
  UpdateCodeRepositoryInput = Shapes::StructureShape.new(name: 'UpdateCodeRepositoryInput')
2136
2139
  UpdateCodeRepositoryOutput = Shapes::StructureShape.new(name: 'UpdateCodeRepositoryOutput')
2137
2140
  UpdateContextRequest = Shapes::StructureShape.new(name: 'UpdateContextRequest')
@@ -3444,6 +3447,7 @@ module Aws::SageMaker
3444
3447
  CreateModelPackageInput.add_member(:drift_check_baselines, Shapes::ShapeRef.new(shape: DriftCheckBaselines, location_name: "DriftCheckBaselines"))
3445
3448
  CreateModelPackageInput.add_member(:additional_inference_specifications, Shapes::ShapeRef.new(shape: AdditionalInferenceSpecifications, location_name: "AdditionalInferenceSpecifications"))
3446
3449
  CreateModelPackageInput.add_member(:skip_model_validation, Shapes::ShapeRef.new(shape: SkipModelValidation, location_name: "SkipModelValidation"))
3450
+ CreateModelPackageInput.add_member(:source_uri, Shapes::ShapeRef.new(shape: ModelPackageSourceUri, location_name: "SourceUri"))
3447
3451
  CreateModelPackageInput.struct_class = Types::CreateModelPackageInput
3448
3452
 
3449
3453
  CreateModelPackageOutput.add_member(:model_package_arn, Shapes::ShapeRef.new(shape: ModelPackageArn, required: true, location_name: "ModelPackageArn"))
@@ -4810,6 +4814,7 @@ module Aws::SageMaker
4810
4814
  DescribeModelPackageOutput.add_member(:drift_check_baselines, Shapes::ShapeRef.new(shape: DriftCheckBaselines, location_name: "DriftCheckBaselines"))
4811
4815
  DescribeModelPackageOutput.add_member(:additional_inference_specifications, Shapes::ShapeRef.new(shape: AdditionalInferenceSpecifications, location_name: "AdditionalInferenceSpecifications"))
4812
4816
  DescribeModelPackageOutput.add_member(:skip_model_validation, Shapes::ShapeRef.new(shape: SkipModelValidation, location_name: "SkipModelValidation"))
4817
+ DescribeModelPackageOutput.add_member(:source_uri, Shapes::ShapeRef.new(shape: ModelPackageSourceUri, location_name: "SourceUri"))
4813
4818
  DescribeModelPackageOutput.struct_class = Types::DescribeModelPackageOutput
4814
4819
 
4815
4820
  DescribeModelQualityJobDefinitionRequest.add_member(:job_definition_name, Shapes::ShapeRef.new(shape: MonitoringJobDefinitionName, required: true, location_name: "JobDefinitionName"))
@@ -7613,6 +7618,7 @@ module Aws::SageMaker
7613
7618
  ModelPackage.add_member(:task, Shapes::ShapeRef.new(shape: String, location_name: "Task"))
7614
7619
  ModelPackage.add_member(:sample_payload_url, Shapes::ShapeRef.new(shape: String, location_name: "SamplePayloadUrl"))
7615
7620
  ModelPackage.add_member(:additional_inference_specifications, Shapes::ShapeRef.new(shape: AdditionalInferenceSpecifications, location_name: "AdditionalInferenceSpecifications"))
7621
+ ModelPackage.add_member(:source_uri, Shapes::ShapeRef.new(shape: ModelPackageSourceUri, location_name: "SourceUri"))
7616
7622
  ModelPackage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
7617
7623
  ModelPackage.add_member(:customer_metadata_properties, Shapes::ShapeRef.new(shape: CustomerMetadataMap, location_name: "CustomerMetadataProperties"))
7618
7624
  ModelPackage.add_member(:drift_check_baselines, Shapes::ShapeRef.new(shape: DriftCheckBaselines, location_name: "DriftCheckBaselines"))
@@ -7625,6 +7631,7 @@ module Aws::SageMaker
7625
7631
  ModelPackageContainerDefinition.add_member(:image, Shapes::ShapeRef.new(shape: ContainerImage, required: true, location_name: "Image"))
7626
7632
  ModelPackageContainerDefinition.add_member(:image_digest, Shapes::ShapeRef.new(shape: ImageDigest, location_name: "ImageDigest"))
7627
7633
  ModelPackageContainerDefinition.add_member(:model_data_url, Shapes::ShapeRef.new(shape: Url, location_name: "ModelDataUrl"))
7634
+ ModelPackageContainerDefinition.add_member(:model_data_source, Shapes::ShapeRef.new(shape: ModelDataSource, location_name: "ModelDataSource"))
7628
7635
  ModelPackageContainerDefinition.add_member(:product_id, Shapes::ShapeRef.new(shape: ProductId, location_name: "ProductId"))
7629
7636
  ModelPackageContainerDefinition.add_member(:environment, Shapes::ShapeRef.new(shape: EnvironmentMap, location_name: "Environment"))
7630
7637
  ModelPackageContainerDefinition.add_member(:model_input, Shapes::ShapeRef.new(shape: ModelInput, location_name: "ModelInput"))
@@ -8853,6 +8860,7 @@ module Aws::SageMaker
8853
8860
  ShuffleConfig.struct_class = Types::ShuffleConfig
8854
8861
 
8855
8862
  SourceAlgorithm.add_member(:model_data_url, Shapes::ShapeRef.new(shape: Url, location_name: "ModelDataUrl"))
8863
+ SourceAlgorithm.add_member(:model_data_source, Shapes::ShapeRef.new(shape: ModelDataSource, location_name: "ModelDataSource"))
8856
8864
  SourceAlgorithm.add_member(:algorithm_name, Shapes::ShapeRef.new(shape: ArnOrName, required: true, location_name: "AlgorithmName"))
8857
8865
  SourceAlgorithm.struct_class = Types::SourceAlgorithm
8858
8866
 
@@ -9479,6 +9487,12 @@ module Aws::SageMaker
9479
9487
  UpdateClusterResponse.add_member(:cluster_arn, Shapes::ShapeRef.new(shape: ClusterArn, required: true, location_name: "ClusterArn"))
9480
9488
  UpdateClusterResponse.struct_class = Types::UpdateClusterResponse
9481
9489
 
9490
+ UpdateClusterSoftwareRequest.add_member(:cluster_name, Shapes::ShapeRef.new(shape: ClusterNameOrArn, required: true, location_name: "ClusterName"))
9491
+ UpdateClusterSoftwareRequest.struct_class = Types::UpdateClusterSoftwareRequest
9492
+
9493
+ UpdateClusterSoftwareResponse.add_member(:cluster_arn, Shapes::ShapeRef.new(shape: ClusterArn, required: true, location_name: "ClusterArn"))
9494
+ UpdateClusterSoftwareResponse.struct_class = Types::UpdateClusterSoftwareResponse
9495
+
9482
9496
  UpdateCodeRepositoryInput.add_member(:code_repository_name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "CodeRepositoryName"))
9483
9497
  UpdateCodeRepositoryInput.add_member(:git_config, Shapes::ShapeRef.new(shape: GitConfigForUpdate, location_name: "GitConfig"))
9484
9498
  UpdateCodeRepositoryInput.struct_class = Types::UpdateCodeRepositoryInput
@@ -9636,6 +9650,8 @@ module Aws::SageMaker
9636
9650
  UpdateModelPackageInput.add_member(:customer_metadata_properties, Shapes::ShapeRef.new(shape: CustomerMetadataMap, location_name: "CustomerMetadataProperties"))
9637
9651
  UpdateModelPackageInput.add_member(:customer_metadata_properties_to_remove, Shapes::ShapeRef.new(shape: CustomerMetadataKeyList, location_name: "CustomerMetadataPropertiesToRemove"))
9638
9652
  UpdateModelPackageInput.add_member(:additional_inference_specifications_to_add, Shapes::ShapeRef.new(shape: AdditionalInferenceSpecifications, location_name: "AdditionalInferenceSpecificationsToAdd"))
9653
+ UpdateModelPackageInput.add_member(:inference_specification, Shapes::ShapeRef.new(shape: InferenceSpecification, location_name: "InferenceSpecification"))
9654
+ UpdateModelPackageInput.add_member(:source_uri, Shapes::ShapeRef.new(shape: ModelPackageSourceUri, location_name: "SourceUri"))
9639
9655
  UpdateModelPackageInput.struct_class = Types::UpdateModelPackageInput
9640
9656
 
9641
9657
  UpdateModelPackageOutput.add_member(:model_package_arn, Shapes::ShapeRef.new(shape: ModelPackageArn, required: true, location_name: "ModelPackageArn"))
@@ -12920,6 +12936,16 @@ module Aws::SageMaker
12920
12936
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
12921
12937
  end)
12922
12938
 
12939
+ api.add_operation(:update_cluster_software, Seahorse::Model::Operation.new.tap do |o|
12940
+ o.name = "UpdateClusterSoftware"
12941
+ o.http_method = "POST"
12942
+ o.http_request_uri = "/"
12943
+ o.input = Shapes::ShapeRef.new(shape: UpdateClusterSoftwareRequest)
12944
+ o.output = Shapes::ShapeRef.new(shape: UpdateClusterSoftwareResponse)
12945
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFound)
12946
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
12947
+ end)
12948
+
12923
12949
  api.add_operation(:update_code_repository, Seahorse::Model::Operation.new.tap do |o|
12924
12950
  o.name = "UpdateCodeRepository"
12925
12951
  o.http_method = "POST"
@@ -4030,6 +4030,20 @@ module Aws::SageMaker
4030
4030
  end
4031
4031
  end
4032
4032
 
4033
+ class UpdateClusterSoftware
4034
+ def self.build(context)
4035
+ unless context.config.regional_endpoint
4036
+ endpoint = context.config.endpoint.to_s
4037
+ end
4038
+ Aws::SageMaker::EndpointParameters.new(
4039
+ region: context.config.region,
4040
+ use_dual_stack: context.config.use_dualstack_endpoint,
4041
+ use_fips: context.config.use_fips_endpoint,
4042
+ endpoint: endpoint,
4043
+ )
4044
+ end
4045
+ end
4046
+
4033
4047
  class UpdateCodeRepository
4034
4048
  def self.build(context)
4035
4049
  unless context.config.regional_endpoint
@@ -632,6 +632,8 @@ module Aws::SageMaker
632
632
  Aws::SageMaker::Endpoints::UpdateArtifact.build(context)
633
633
  when :update_cluster
634
634
  Aws::SageMaker::Endpoints::UpdateCluster.build(context)
635
+ when :update_cluster_software
636
+ Aws::SageMaker::Endpoints::UpdateClusterSoftware.build(context)
635
637
  when :update_code_repository
636
638
  Aws::SageMaker::Endpoints::UpdateCodeRepository.build(context)
637
639
  when :update_context
@@ -2313,14 +2313,13 @@ module Aws::SageMaker
2313
2313
  #
2314
2314
  # * List of available metrics:
2315
2315
  #
2316
- # * Regression: `InferenceLatency`, `MAE`, `MSE`, `R2`, `RMSE`
2316
+ # * Regression: `MAE`, `MSE`, `R2`, `RMSE`
2317
2317
  #
2318
2318
  # * Binary classification: `Accuracy`, `AUC`, `BalancedAccuracy`,
2319
- # `F1`, `InferenceLatency`, `LogLoss`, `Precision`, `Recall`
2319
+ # `F1`, `Precision`, `Recall`
2320
2320
  #
2321
2321
  # * Multiclass classification: `Accuracy`, `BalancedAccuracy`,
2322
- # `F1macro`, `InferenceLatency`, `LogLoss`, `PrecisionMacro`,
2323
- # `RecallMacro`
2322
+ # `F1macro`, `PrecisionMacro`, `RecallMacro`
2324
2323
  #
2325
2324
  # For a description of each metric, see [Autopilot metrics for
2326
2325
  # classification and regression][1].
@@ -7778,8 +7777,8 @@ module Aws::SageMaker
7778
7777
  # @return [String]
7779
7778
  #
7780
7779
  # @!attribute [rw] inference_specification
7781
- # Specifies details about inference jobs that can be run with models
7782
- # based on this model package, including the following:
7780
+ # Specifies details about inference jobs that you can run with models
7781
+ # based on this model package, including the following information:
7783
7782
  #
7784
7783
  # * The Amazon ECR paths of containers that contain the inference code
7785
7784
  # and model artifacts.
@@ -7905,6 +7904,12 @@ module Aws::SageMaker
7905
7904
  # Indicates if you want to skip model validation.
7906
7905
  # @return [String]
7907
7906
  #
7907
+ # @!attribute [rw] source_uri
7908
+ # The URI of the source for the model package. If you want to clone a
7909
+ # model package, set it to the model package Amazon Resource Name
7910
+ # (ARN). If you want to register a model, set it to the model ARN.
7911
+ # @return [String]
7912
+ #
7908
7913
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateModelPackageInput AWS API Documentation
7909
7914
  #
7910
7915
  class CreateModelPackageInput < Struct.new(
@@ -7926,7 +7931,8 @@ module Aws::SageMaker
7926
7931
  :customer_metadata_properties,
7927
7932
  :drift_check_baselines,
7928
7933
  :additional_inference_specifications,
7929
- :skip_model_validation)
7934
+ :skip_model_validation,
7935
+ :source_uri)
7930
7936
  SENSITIVE = []
7931
7937
  include Aws::Structure
7932
7938
  end
@@ -11562,7 +11568,16 @@ module Aws::SageMaker
11562
11568
  # @return [Time]
11563
11569
  #
11564
11570
  # @!attribute [rw] creation_time
11565
- # The creation time.
11571
+ # The creation time of the application.
11572
+ #
11573
+ # <note markdown="1"> After an application has been shut down for 24 hours, SageMaker
11574
+ # deletes all metadata for the application. To be considered an update
11575
+ # and retain application metadata, applications must be restarted
11576
+ # within 24 hours after the previous application has been shut down.
11577
+ # After this time window, creation of an application is considered a
11578
+ # new application rather than an update of the previous application.
11579
+ #
11580
+ # </note>
11566
11581
  # @return [Time]
11567
11582
  #
11568
11583
  # @!attribute [rw] failure_reason
@@ -15160,7 +15175,7 @@ module Aws::SageMaker
15160
15175
  # @return [Time]
15161
15176
  #
15162
15177
  # @!attribute [rw] inference_specification
15163
- # Details about inference jobs that can be run with models based on
15178
+ # Details about inference jobs that you can run with models based on
15164
15179
  # this model package.
15165
15180
  # @return [Types::InferenceSpecification]
15166
15181
  #
@@ -15262,6 +15277,10 @@ module Aws::SageMaker
15262
15277
  # Indicates if you want to skip model validation.
15263
15278
  # @return [String]
15264
15279
  #
15280
+ # @!attribute [rw] source_uri
15281
+ # The URI of the source for the model package.
15282
+ # @return [String]
15283
+ #
15265
15284
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelPackageOutput AWS API Documentation
15266
15285
  #
15267
15286
  class DescribeModelPackageOutput < Struct.new(
@@ -15290,7 +15309,8 @@ module Aws::SageMaker
15290
15309
  :customer_metadata_properties,
15291
15310
  :drift_check_baselines,
15292
15311
  :additional_inference_specifications,
15293
- :skip_model_validation)
15312
+ :skip_model_validation,
15313
+ :source_uri)
15294
15314
  SENSITIVE = []
15295
15315
  include Aws::Structure
15296
15316
  end
@@ -23730,7 +23750,8 @@ module Aws::SageMaker
23730
23750
  end
23731
23751
 
23732
23752
  # The configuration for the file system and kernels in a SageMaker image
23733
- # running as a JupyterLab app.
23753
+ # running as a JupyterLab app. The `FileSystemConfig` object is not
23754
+ # supported.
23734
23755
  #
23735
23756
  # @!attribute [rw] file_system_config
23736
23757
  # The Amazon Elastic File System storage configuration for a SageMaker
@@ -30287,9 +30308,12 @@ module Aws::SageMaker
30287
30308
  # Provides information about the location that is configured for storing
30288
30309
  # model artifacts.
30289
30310
  #
30290
- # Model artifacts are the output that results from training a model, and
30311
+ # Model artifacts are outputs that result from training a model. They
30291
30312
  # typically consist of trained parameters, a model definition that
30292
- # describes how to compute inferences, and other metadata.
30313
+ # describes how to compute inferences, and other metadata. A SageMaker
30314
+ # container stores your trained model artifacts in the `/opt/ml/model`
30315
+ # directory. After training has completed, by default, these artifacts
30316
+ # are uploaded to your Amazon S3 bucket as compressed files.
30293
30317
  #
30294
30318
  # @!attribute [rw] s3_model_artifacts
30295
30319
  # The path of the S3 object that contains the model artifacts. For
@@ -31265,7 +31289,7 @@ module Aws::SageMaker
31265
31289
  # @return [Types::ModelDataQuality]
31266
31290
  #
31267
31291
  # @!attribute [rw] bias
31268
- # Metrics that measure bais in a model.
31292
+ # Metrics that measure bias in a model.
31269
31293
  # @return [Types::Bias]
31270
31294
  #
31271
31295
  # @!attribute [rw] explainability
@@ -31416,6 +31440,10 @@ module Aws::SageMaker
31416
31440
  # An array of additional Inference Specification objects.
31417
31441
  # @return [Array<Types::AdditionalInferenceSpecificationDefinition>]
31418
31442
  #
31443
+ # @!attribute [rw] source_uri
31444
+ # The URI of the source for the model package.
31445
+ # @return [String]
31446
+ #
31419
31447
  # @!attribute [rw] tags
31420
31448
  # A list of the tags associated with the model package. For more
31421
31449
  # information, see [Tagging Amazon Web Services resources][1] in the
@@ -31465,6 +31493,7 @@ module Aws::SageMaker
31465
31493
  :task,
31466
31494
  :sample_payload_url,
31467
31495
  :additional_inference_specifications,
31496
+ :source_uri,
31468
31497
  :tags,
31469
31498
  :customer_metadata_properties,
31470
31499
  :drift_check_baselines,
@@ -31511,6 +31540,11 @@ module Aws::SageMaker
31511
31540
  # </note>
31512
31541
  # @return [String]
31513
31542
  #
31543
+ # @!attribute [rw] model_data_source
31544
+ # Specifies the location of ML model data to deploy during endpoint
31545
+ # creation.
31546
+ # @return [Types::ModelDataSource]
31547
+ #
31514
31548
  # @!attribute [rw] product_id
31515
31549
  # The Amazon Web Services Marketplace product ID of the model package.
31516
31550
  # @return [String]
@@ -31552,6 +31586,7 @@ module Aws::SageMaker
31552
31586
  :image,
31553
31587
  :image_digest,
31554
31588
  :model_data_url,
31589
+ :model_data_source,
31555
31590
  :product_id,
31556
31591
  :environment,
31557
31592
  :model_input,
@@ -38910,6 +38945,11 @@ module Aws::SageMaker
38910
38945
  # </note>
38911
38946
  # @return [String]
38912
38947
  #
38948
+ # @!attribute [rw] model_data_source
38949
+ # Specifies the location of ML model data to deploy during endpoint
38950
+ # creation.
38951
+ # @return [Types::ModelDataSource]
38952
+ #
38913
38953
  # @!attribute [rw] algorithm_name
38914
38954
  # The name of an algorithm that was used to create the model package.
38915
38955
  # The algorithm must be either an algorithm resource in your SageMaker
@@ -38921,6 +38961,7 @@ module Aws::SageMaker
38921
38961
  #
38922
38962
  class SourceAlgorithm < Struct.new(
38923
38963
  :model_data_url,
38964
+ :model_data_source,
38924
38965
  :algorithm_name)
38925
38966
  SENSITIVE = []
38926
38967
  include Aws::Structure
@@ -42821,6 +42862,32 @@ module Aws::SageMaker
42821
42862
  include Aws::Structure
42822
42863
  end
42823
42864
 
42865
+ # @!attribute [rw] cluster_name
42866
+ # Specify the name or the Amazon Resource Name (ARN) of the SageMaker
42867
+ # HyperPod cluster you want to update for security patching.
42868
+ # @return [String]
42869
+ #
42870
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateClusterSoftwareRequest AWS API Documentation
42871
+ #
42872
+ class UpdateClusterSoftwareRequest < Struct.new(
42873
+ :cluster_name)
42874
+ SENSITIVE = []
42875
+ include Aws::Structure
42876
+ end
42877
+
42878
+ # @!attribute [rw] cluster_arn
42879
+ # The Amazon Resource Name (ARN) of the SageMaker HyperPod cluster
42880
+ # being updated for security patching.
42881
+ # @return [String]
42882
+ #
42883
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateClusterSoftwareResponse AWS API Documentation
42884
+ #
42885
+ class UpdateClusterSoftwareResponse < Struct.new(
42886
+ :cluster_arn)
42887
+ SENSITIVE = []
42888
+ include Aws::Structure
42889
+ end
42890
+
42824
42891
  # @!attribute [rw] code_repository_name
42825
42892
  # The name of the Git repository to update.
42826
42893
  # @return [String]
@@ -43641,6 +43708,24 @@ module Aws::SageMaker
43641
43708
  # Generally used with SageMaker Neo to store the compiled artifacts.
43642
43709
  # @return [Array<Types::AdditionalInferenceSpecificationDefinition>]
43643
43710
  #
43711
+ # @!attribute [rw] inference_specification
43712
+ # Specifies details about inference jobs that you can run with models
43713
+ # based on this model package, including the following information:
43714
+ #
43715
+ # * The Amazon ECR paths of containers that contain the inference code
43716
+ # and model artifacts.
43717
+ #
43718
+ # * The instance types that the model package supports for transform
43719
+ # jobs and real-time endpoints used for inference.
43720
+ #
43721
+ # * The input and output content formats that the model package
43722
+ # supports for inference.
43723
+ # @return [Types::InferenceSpecification]
43724
+ #
43725
+ # @!attribute [rw] source_uri
43726
+ # The URI of the source for the model package.
43727
+ # @return [String]
43728
+ #
43644
43729
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateModelPackageInput AWS API Documentation
43645
43730
  #
43646
43731
  class UpdateModelPackageInput < Struct.new(
@@ -43649,7 +43734,9 @@ module Aws::SageMaker
43649
43734
  :approval_description,
43650
43735
  :customer_metadata_properties,
43651
43736
  :customer_metadata_properties_to_remove,
43652
- :additional_inference_specifications_to_add)
43737
+ :additional_inference_specifications_to_add,
43738
+ :inference_specification,
43739
+ :source_uri)
43653
43740
  SENSITIVE = []
43654
43741
  include Aws::Structure
43655
43742
  end
@@ -44721,12 +44808,17 @@ module Aws::SageMaker
44721
44808
  include Aws::Structure
44722
44809
  end
44723
44810
 
44724
- # The list of key-value pairs that you specify for your resources.
44811
+ # The list of key-value pairs used to filter your search results. If a
44812
+ # search result contains a key from your list, it is included in the
44813
+ # final search response if the value associated with the key in the
44814
+ # result matches the value you specified. If the value doesn't match,
44815
+ # the result is excluded from the search response. Any resources that
44816
+ # don't have a key from the list that you've provided will also be
44817
+ # included in the search response.
44725
44818
  #
44726
44819
  # @!attribute [rw] key
44727
44820
  # The key that specifies the tag that you're using to filter the
44728
- # search results. It must be in the following format:
44729
- # `Tags.<key>/EqualsIfExists`.
44821
+ # search results. It must be in the following format: `Tags.<key>`.
44730
44822
  # @return [String]
44731
44823
  #
44732
44824
  # @!attribute [rw] value
@@ -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.231.0'
56
+ GEM_VERSION = '1.232.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -227,6 +227,16 @@ module Aws
227
227
  image: ::String,
228
228
  image_digest: ::String?,
229
229
  model_data_url: ::String?,
230
+ model_data_source: {
231
+ s3_data_source: {
232
+ s3_uri: ::String,
233
+ s3_data_type: ("S3Prefix" | "S3Object"),
234
+ compression_type: ("None" | "Gzip"),
235
+ model_access_config: {
236
+ accept_eula: bool
237
+ }?
238
+ }?
239
+ }?,
230
240
  product_id: ::String?,
231
241
  environment: Hash[::String, ::String]?,
232
242
  model_input: {
@@ -2568,6 +2578,16 @@ module Aws
2568
2578
  image: ::String,
2569
2579
  image_digest: ::String?,
2570
2580
  model_data_url: ::String?,
2581
+ model_data_source: {
2582
+ s3_data_source: {
2583
+ s3_uri: ::String,
2584
+ s3_data_type: ("S3Prefix" | "S3Object"),
2585
+ compression_type: ("None" | "Gzip"),
2586
+ model_access_config: {
2587
+ accept_eula: bool
2588
+ }?
2589
+ }?
2590
+ }?,
2571
2591
  product_id: ::String?,
2572
2592
  environment: Hash[::String, ::String]?,
2573
2593
  model_input: {
@@ -2628,6 +2648,16 @@ module Aws
2628
2648
  source_algorithms: Array[
2629
2649
  {
2630
2650
  model_data_url: ::String?,
2651
+ model_data_source: {
2652
+ s3_data_source: {
2653
+ s3_uri: ::String,
2654
+ s3_data_type: ("S3Prefix" | "S3Object"),
2655
+ compression_type: ("None" | "Gzip"),
2656
+ model_access_config: {
2657
+ accept_eula: bool
2658
+ }?
2659
+ }?
2660
+ }?,
2631
2661
  algorithm_name: ::String
2632
2662
  },
2633
2663
  ]
@@ -2766,6 +2796,16 @@ module Aws
2766
2796
  image: ::String,
2767
2797
  image_digest: ::String?,
2768
2798
  model_data_url: ::String?,
2799
+ model_data_source: {
2800
+ s3_data_source: {
2801
+ s3_uri: ::String,
2802
+ s3_data_type: ("S3Prefix" | "S3Object"),
2803
+ compression_type: ("None" | "Gzip"),
2804
+ model_access_config: {
2805
+ accept_eula: bool
2806
+ }?
2807
+ }?
2808
+ }?,
2769
2809
  product_id: ::String?,
2770
2810
  environment: Hash[::String, ::String]?,
2771
2811
  model_input: {
@@ -2787,7 +2827,8 @@ module Aws
2787
2827
  supported_response_mime_types: Array[::String]?
2788
2828
  },
2789
2829
  ],
2790
- ?skip_model_validation: ("All" | "None")
2830
+ ?skip_model_validation: ("All" | "None"),
2831
+ ?source_uri: ::String
2791
2832
  ) -> _CreateModelPackageResponseSuccess
2792
2833
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateModelPackageResponseSuccess
2793
2834
 
@@ -5187,6 +5228,7 @@ module Aws
5187
5228
  def drift_check_baselines: () -> Types::DriftCheckBaselines
5188
5229
  def additional_inference_specifications: () -> ::Array[Types::AdditionalInferenceSpecificationDefinition]
5189
5230
  def skip_model_validation: () -> ("All" | "None")
5231
+ def source_uri: () -> ::String
5190
5232
  end
5191
5233
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#describe_model_package-instance_method
5192
5234
  def describe_model_package: (
@@ -7524,6 +7566,16 @@ module Aws
7524
7566
  ) -> _UpdateClusterResponseSuccess
7525
7567
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateClusterResponseSuccess
7526
7568
 
7569
+ interface _UpdateClusterSoftwareResponseSuccess
7570
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateClusterSoftwareResponse]
7571
+ def cluster_arn: () -> ::String
7572
+ end
7573
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMaker/Client.html#update_cluster_software-instance_method
7574
+ def update_cluster_software: (
7575
+ cluster_name: ::String
7576
+ ) -> _UpdateClusterSoftwareResponseSuccess
7577
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateClusterSoftwareResponseSuccess
7578
+
7527
7579
  interface _UpdateCodeRepositoryResponseSuccess
7528
7580
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateCodeRepositoryOutput]
7529
7581
  def code_repository_arn: () -> ::String
@@ -8105,6 +8157,16 @@ module Aws
8105
8157
  image: ::String,
8106
8158
  image_digest: ::String?,
8107
8159
  model_data_url: ::String?,
8160
+ model_data_source: {
8161
+ s3_data_source: {
8162
+ s3_uri: ::String,
8163
+ s3_data_type: ("S3Prefix" | "S3Object"),
8164
+ compression_type: ("None" | "Gzip"),
8165
+ model_access_config: {
8166
+ accept_eula: bool
8167
+ }?
8168
+ }?
8169
+ }?,
8108
8170
  product_id: ::String?,
8109
8171
  environment: Hash[::String, ::String]?,
8110
8172
  model_input: {
@@ -8125,7 +8187,45 @@ module Aws
8125
8187
  supported_content_types: Array[::String]?,
8126
8188
  supported_response_mime_types: Array[::String]?
8127
8189
  },
8128
- ]
8190
+ ],
8191
+ ?inference_specification: {
8192
+ containers: Array[
8193
+ {
8194
+ container_hostname: ::String?,
8195
+ image: ::String,
8196
+ image_digest: ::String?,
8197
+ model_data_url: ::String?,
8198
+ model_data_source: {
8199
+ s3_data_source: {
8200
+ s3_uri: ::String,
8201
+ s3_data_type: ("S3Prefix" | "S3Object"),
8202
+ compression_type: ("None" | "Gzip"),
8203
+ model_access_config: {
8204
+ accept_eula: bool
8205
+ }?
8206
+ }?
8207
+ }?,
8208
+ product_id: ::String?,
8209
+ environment: Hash[::String, ::String]?,
8210
+ model_input: {
8211
+ data_input_config: ::String
8212
+ }?,
8213
+ framework: ::String?,
8214
+ framework_version: ::String?,
8215
+ nearest_model_name: ::String?,
8216
+ additional_s3_data_source: {
8217
+ s3_data_type: ("S3Object" | "S3Prefix"),
8218
+ s3_uri: ::String,
8219
+ compression_type: ("None" | "Gzip")?
8220
+ }?
8221
+ },
8222
+ ],
8223
+ supported_transform_instance_types: Array[("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")]?,
8224
+ supported_realtime_inference_instance_types: Array[("ml.t2.medium" | "ml.t2.large" | "ml.t2.xlarge" | "ml.t2.2xlarge" | "ml.m4.xlarge" | "ml.m4.2xlarge" | "ml.m4.4xlarge" | "ml.m4.10xlarge" | "ml.m4.16xlarge" | "ml.m5.large" | "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.12xlarge" | "ml.m5d.24xlarge" | "ml.c4.large" | "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.large" | "ml.c5.xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.18xlarge" | "ml.c5d.large" | "ml.c5d.xlarge" | "ml.c5d.2xlarge" | "ml.c5d.4xlarge" | "ml.c5d.9xlarge" | "ml.c5d.18xlarge" | "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.12xlarge" | "ml.r5.24xlarge" | "ml.r5d.large" | "ml.r5d.xlarge" | "ml.r5d.2xlarge" | "ml.r5d.4xlarge" | "ml.r5d.12xlarge" | "ml.r5d.24xlarge" | "ml.inf1.xlarge" | "ml.inf1.2xlarge" | "ml.inf1.6xlarge" | "ml.inf1.24xlarge" | "ml.dl1.24xlarge" | "ml.c6i.large" | "ml.c6i.xlarge" | "ml.c6i.2xlarge" | "ml.c6i.4xlarge" | "ml.c6i.8xlarge" | "ml.c6i.12xlarge" | "ml.c6i.16xlarge" | "ml.c6i.24xlarge" | "ml.c6i.32xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.p4d.24xlarge" | "ml.c7g.large" | "ml.c7g.xlarge" | "ml.c7g.2xlarge" | "ml.c7g.4xlarge" | "ml.c7g.8xlarge" | "ml.c7g.12xlarge" | "ml.c7g.16xlarge" | "ml.m6g.large" | "ml.m6g.xlarge" | "ml.m6g.2xlarge" | "ml.m6g.4xlarge" | "ml.m6g.8xlarge" | "ml.m6g.12xlarge" | "ml.m6g.16xlarge" | "ml.m6gd.large" | "ml.m6gd.xlarge" | "ml.m6gd.2xlarge" | "ml.m6gd.4xlarge" | "ml.m6gd.8xlarge" | "ml.m6gd.12xlarge" | "ml.m6gd.16xlarge" | "ml.c6g.large" | "ml.c6g.xlarge" | "ml.c6g.2xlarge" | "ml.c6g.4xlarge" | "ml.c6g.8xlarge" | "ml.c6g.12xlarge" | "ml.c6g.16xlarge" | "ml.c6gd.large" | "ml.c6gd.xlarge" | "ml.c6gd.2xlarge" | "ml.c6gd.4xlarge" | "ml.c6gd.8xlarge" | "ml.c6gd.12xlarge" | "ml.c6gd.16xlarge" | "ml.c6gn.large" | "ml.c6gn.xlarge" | "ml.c6gn.2xlarge" | "ml.c6gn.4xlarge" | "ml.c6gn.8xlarge" | "ml.c6gn.12xlarge" | "ml.c6gn.16xlarge" | "ml.r6g.large" | "ml.r6g.xlarge" | "ml.r6g.2xlarge" | "ml.r6g.4xlarge" | "ml.r6g.8xlarge" | "ml.r6g.12xlarge" | "ml.r6g.16xlarge" | "ml.r6gd.large" | "ml.r6gd.xlarge" | "ml.r6gd.2xlarge" | "ml.r6gd.4xlarge" | "ml.r6gd.8xlarge" | "ml.r6gd.12xlarge" | "ml.r6gd.16xlarge" | "ml.p4de.24xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "ml.inf2.xlarge" | "ml.inf2.8xlarge" | "ml.inf2.24xlarge" | "ml.inf2.48xlarge" | "ml.p5.48xlarge" | "ml.m7i.large" | "ml.m7i.xlarge" | "ml.m7i.2xlarge" | "ml.m7i.4xlarge" | "ml.m7i.8xlarge" | "ml.m7i.12xlarge" | "ml.m7i.16xlarge" | "ml.m7i.24xlarge" | "ml.m7i.48xlarge" | "ml.c7i.large" | "ml.c7i.xlarge" | "ml.c7i.2xlarge" | "ml.c7i.4xlarge" | "ml.c7i.8xlarge" | "ml.c7i.12xlarge" | "ml.c7i.16xlarge" | "ml.c7i.24xlarge" | "ml.c7i.48xlarge" | "ml.r7i.large" | "ml.r7i.xlarge" | "ml.r7i.2xlarge" | "ml.r7i.4xlarge" | "ml.r7i.8xlarge" | "ml.r7i.12xlarge" | "ml.r7i.16xlarge" | "ml.r7i.24xlarge" | "ml.r7i.48xlarge")]?,
8225
+ supported_content_types: Array[::String]?,
8226
+ supported_response_mime_types: Array[::String]?
8227
+ },
8228
+ ?source_uri: ::String
8129
8229
  ) -> _UpdateModelPackageResponseSuccess
8130
8230
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateModelPackageResponseSuccess
8131
8231
 
data/sig/types.rbs CHANGED
@@ -1463,6 +1463,7 @@ module Aws::SageMaker
1463
1463
  attr_accessor drift_check_baselines: Types::DriftCheckBaselines
1464
1464
  attr_accessor additional_inference_specifications: ::Array[Types::AdditionalInferenceSpecificationDefinition]
1465
1465
  attr_accessor skip_model_validation: ("All" | "None")
1466
+ attr_accessor source_uri: ::String
1466
1467
  SENSITIVE: []
1467
1468
  end
1468
1469
 
@@ -3227,6 +3228,7 @@ module Aws::SageMaker
3227
3228
  attr_accessor drift_check_baselines: Types::DriftCheckBaselines
3228
3229
  attr_accessor additional_inference_specifications: ::Array[Types::AdditionalInferenceSpecificationDefinition]
3229
3230
  attr_accessor skip_model_validation: ("All" | "None")
3231
+ attr_accessor source_uri: ::String
3230
3232
  SENSITIVE: []
3231
3233
  end
3232
3234
 
@@ -6642,6 +6644,7 @@ module Aws::SageMaker
6642
6644
  attr_accessor task: ::String
6643
6645
  attr_accessor sample_payload_url: ::String
6644
6646
  attr_accessor additional_inference_specifications: ::Array[Types::AdditionalInferenceSpecificationDefinition]
6647
+ attr_accessor source_uri: ::String
6645
6648
  attr_accessor tags: ::Array[Types::Tag]
6646
6649
  attr_accessor customer_metadata_properties: ::Hash[::String, ::String]
6647
6650
  attr_accessor drift_check_baselines: Types::DriftCheckBaselines
@@ -6654,6 +6657,7 @@ module Aws::SageMaker
6654
6657
  attr_accessor image: ::String
6655
6658
  attr_accessor image_digest: ::String
6656
6659
  attr_accessor model_data_url: ::String
6660
+ attr_accessor model_data_source: Types::ModelDataSource
6657
6661
  attr_accessor product_id: ::String
6658
6662
  attr_accessor environment: ::Hash[::String, ::String]
6659
6663
  attr_accessor model_input: Types::ModelInput
@@ -8099,6 +8103,7 @@ module Aws::SageMaker
8099
8103
 
8100
8104
  class SourceAlgorithm
8101
8105
  attr_accessor model_data_url: ::String
8106
+ attr_accessor model_data_source: Types::ModelDataSource
8102
8107
  attr_accessor algorithm_name: ::String
8103
8108
  SENSITIVE: []
8104
8109
  end
@@ -8875,6 +8880,16 @@ module Aws::SageMaker
8875
8880
  SENSITIVE: []
8876
8881
  end
8877
8882
 
8883
+ class UpdateClusterSoftwareRequest
8884
+ attr_accessor cluster_name: ::String
8885
+ SENSITIVE: []
8886
+ end
8887
+
8888
+ class UpdateClusterSoftwareResponse
8889
+ attr_accessor cluster_arn: ::String
8890
+ SENSITIVE: []
8891
+ end
8892
+
8878
8893
  class UpdateCodeRepositoryInput
8879
8894
  attr_accessor code_repository_name: ::String
8880
8895
  attr_accessor git_config: Types::GitConfigForUpdate
@@ -9095,6 +9110,8 @@ module Aws::SageMaker
9095
9110
  attr_accessor customer_metadata_properties: ::Hash[::String, ::String]
9096
9111
  attr_accessor customer_metadata_properties_to_remove: ::Array[::String]
9097
9112
  attr_accessor additional_inference_specifications_to_add: ::Array[Types::AdditionalInferenceSpecificationDefinition]
9113
+ attr_accessor inference_specification: Types::InferenceSpecification
9114
+ attr_accessor source_uri: ::String
9098
9115
  SENSITIVE: []
9099
9116
  end
9100
9117
 
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.231.0
4
+ version: 1.232.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: 2024-02-02 00:00:00.000000000 Z
11
+ date: 2024-02-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core