aws-sdk-sagemaker 1.300.0 → 1.302.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4064,7 +4064,7 @@ module Aws::SageMaker
4064
4064
 
4065
4065
  CreateProjectInput.add_member(:project_name, Shapes::ShapeRef.new(shape: ProjectEntityName, required: true, location_name: "ProjectName"))
4066
4066
  CreateProjectInput.add_member(:project_description, Shapes::ShapeRef.new(shape: EntityDescription, location_name: "ProjectDescription"))
4067
- CreateProjectInput.add_member(:service_catalog_provisioning_details, Shapes::ShapeRef.new(shape: ServiceCatalogProvisioningDetails, required: true, location_name: "ServiceCatalogProvisioningDetails"))
4067
+ CreateProjectInput.add_member(:service_catalog_provisioning_details, Shapes::ShapeRef.new(shape: ServiceCatalogProvisioningDetails, location_name: "ServiceCatalogProvisioningDetails"))
4068
4068
  CreateProjectInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
4069
4069
  CreateProjectInput.struct_class = Types::CreateProjectInput
4070
4070
 
@@ -5634,7 +5634,7 @@ module Aws::SageMaker
5634
5634
  DescribeProjectOutput.add_member(:project_name, Shapes::ShapeRef.new(shape: ProjectEntityName, required: true, location_name: "ProjectName"))
5635
5635
  DescribeProjectOutput.add_member(:project_id, Shapes::ShapeRef.new(shape: ProjectId, required: true, location_name: "ProjectId"))
5636
5636
  DescribeProjectOutput.add_member(:project_description, Shapes::ShapeRef.new(shape: EntityDescription, location_name: "ProjectDescription"))
5637
- DescribeProjectOutput.add_member(:service_catalog_provisioning_details, Shapes::ShapeRef.new(shape: ServiceCatalogProvisioningDetails, required: true, location_name: "ServiceCatalogProvisioningDetails"))
5637
+ DescribeProjectOutput.add_member(:service_catalog_provisioning_details, Shapes::ShapeRef.new(shape: ServiceCatalogProvisioningDetails, location_name: "ServiceCatalogProvisioningDetails"))
5638
5638
  DescribeProjectOutput.add_member(:service_catalog_provisioned_product_details, Shapes::ShapeRef.new(shape: ServiceCatalogProvisionedProductDetails, location_name: "ServiceCatalogProvisionedProductDetails"))
5639
5639
  DescribeProjectOutput.add_member(:project_status, Shapes::ShapeRef.new(shape: ProjectStatus, required: true, location_name: "ProjectStatus"))
5640
5640
  DescribeProjectOutput.add_member(:created_by, Shapes::ShapeRef.new(shape: UserContext, location_name: "CreatedBy"))
@@ -8563,6 +8563,7 @@ module Aws::SageMaker
8563
8563
  ModelPackageSummary.add_member(:creation_time, Shapes::ShapeRef.new(shape: CreationTime, required: true, location_name: "CreationTime"))
8564
8564
  ModelPackageSummary.add_member(:model_package_status, Shapes::ShapeRef.new(shape: ModelPackageStatus, required: true, location_name: "ModelPackageStatus"))
8565
8565
  ModelPackageSummary.add_member(:model_approval_status, Shapes::ShapeRef.new(shape: ModelApprovalStatus, location_name: "ModelApprovalStatus"))
8566
+ ModelPackageSummary.add_member(:model_life_cycle, Shapes::ShapeRef.new(shape: ModelLifeCycle, location_name: "ModelLifeCycle"))
8566
8567
  ModelPackageSummary.struct_class = Types::ModelPackageSummary
8567
8568
 
8568
8569
  ModelPackageSummaryList.member = Shapes::ShapeRef.new(shape: ModelPackageSummary)
@@ -35359,6 +35359,11 @@ module Aws::SageMaker
35359
35359
  # approval.
35360
35360
  # @return [String]
35361
35361
  #
35362
+ # @!attribute [rw] model_life_cycle
35363
+ # A structure describing the current state of the model in its life
35364
+ # cycle.
35365
+ # @return [Types::ModelLifeCycle]
35366
+ #
35362
35367
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelPackageSummary AWS API Documentation
35363
35368
  #
35364
35369
  class ModelPackageSummary < Struct.new(
@@ -35369,7 +35374,8 @@ module Aws::SageMaker
35369
35374
  :model_package_description,
35370
35375
  :creation_time,
35371
35376
  :model_package_status,
35372
- :model_approval_status)
35377
+ :model_approval_status,
35378
+ :model_life_cycle)
35373
35379
  SENSITIVE = []
35374
35380
  include Aws::Structure
35375
35381
  end
@@ -39318,6 +39324,11 @@ module Aws::SageMaker
39318
39324
  # * CUDA version: 12.4
39319
39325
  #
39320
39326
  # * NVIDIA Container Toolkit with disabled CUDA-compat mounting
39327
+ #
39328
+ # al2-ami-sagemaker-inference-neuron-2
39329
+ # : * Accelerator: Inferentia2 and Trainium
39330
+ #
39331
+ # * Neuron driver version: 2.19
39321
39332
  # @return [String]
39322
39333
  #
39323
39334
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProductionVariant AWS API Documentation
@@ -44184,6 +44195,27 @@ module Aws::SageMaker
44184
44195
  # @!attribute [rw] max_pending_time_in_seconds
44185
44196
  # The maximum length of time, in seconds, that a training or
44186
44197
  # compilation job can be pending before it is stopped.
44198
+ #
44199
+ # <note markdown="1"> When working with training jobs that use capacity from [training
44200
+ # plans][1], not all `Pending` job states count against the
44201
+ # `MaxPendingTimeInSeconds` limit. The following scenarios do not
44202
+ # increment the `MaxPendingTimeInSeconds` counter:
44203
+ #
44204
+ # * The plan is in a `Scheduled` state: Jobs queued (in `Pending`
44205
+ # status) before a plan's start date (waiting for scheduled start
44206
+ # time)
44207
+ #
44208
+ # * Between capacity reservations: Jobs temporarily back to `Pending`
44209
+ # status between two capacity reservation periods
44210
+ #
44211
+ # `MaxPendingTimeInSeconds` only increments when jobs are actively
44212
+ # waiting for capacity in an `Active` plan.
44213
+ #
44214
+ # </note>
44215
+ #
44216
+ #
44217
+ #
44218
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/reserve-capacity-with-training-plans.html
44187
44219
  # @return [Integer]
44188
44220
  #
44189
44221
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StoppingCondition AWS API Documentation
@@ -55,7 +55,7 @@ module Aws::SageMaker
55
55
  autoload :EndpointProvider, 'aws-sdk-sagemaker/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-sagemaker/endpoints'
57
57
 
58
- GEM_VERSION = '1.300.0'
58
+ GEM_VERSION = '1.302.0'
59
59
 
60
60
  end
61
61