aws-sdk-sagemaker 1.131.0 → 1.134.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -4350,7 +4350,10 @@ module Aws::SageMaker
4350
4350
  # @return [Array<Types::Tag>]
4351
4351
  #
4352
4352
  # @!attribute [rw] kernel_gateway_image_config
4353
- # The KernelGatewayImageConfig.
4353
+ # The KernelGatewayImageConfig. You can only specify one image kernel
4354
+ # in the AppImageConfig API. This kernel will be shown to users before
4355
+ # the image starts. Once the image runs, all kernels are visible in
4356
+ # JupyterLab.
4354
4357
  # @return [Types::KernelGatewayImageConfig]
4355
4358
  #
4356
4359
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateAppImageConfigRequest AWS API Documentation
@@ -5398,6 +5401,123 @@ module Aws::SageMaker
5398
5401
  include Aws::Structure
5399
5402
  end
5400
5403
 
5404
+ # @note When making an API call, you may pass CreateEdgeDeploymentPlanRequest
5405
+ # data as a hash:
5406
+ #
5407
+ # {
5408
+ # edge_deployment_plan_name: "EntityName", # required
5409
+ # model_configs: [ # required
5410
+ # {
5411
+ # model_handle: "EntityName", # required
5412
+ # edge_packaging_job_name: "EntityName", # required
5413
+ # },
5414
+ # ],
5415
+ # device_fleet_name: "EntityName", # required
5416
+ # stages: [
5417
+ # {
5418
+ # stage_name: "EntityName", # required
5419
+ # device_selection_config: { # required
5420
+ # device_subset_type: "PERCENTAGE", # required, accepts PERCENTAGE, SELECTION, NAMECONTAINS
5421
+ # percentage: 1,
5422
+ # device_names: ["DeviceName"],
5423
+ # device_name_contains: "DeviceName",
5424
+ # },
5425
+ # deployment_config: {
5426
+ # failure_handling_policy: "ROLLBACK_ON_FAILURE", # required, accepts ROLLBACK_ON_FAILURE, DO_NOTHING
5427
+ # },
5428
+ # },
5429
+ # ],
5430
+ # tags: [
5431
+ # {
5432
+ # key: "TagKey", # required
5433
+ # value: "TagValue", # required
5434
+ # },
5435
+ # ],
5436
+ # }
5437
+ #
5438
+ # @!attribute [rw] edge_deployment_plan_name
5439
+ # The name of the edge deployment plan.
5440
+ # @return [String]
5441
+ #
5442
+ # @!attribute [rw] model_configs
5443
+ # List of models associated with the edge deployment plan.
5444
+ # @return [Array<Types::EdgeDeploymentModelConfig>]
5445
+ #
5446
+ # @!attribute [rw] device_fleet_name
5447
+ # The device fleet used for this edge deployment plan.
5448
+ # @return [String]
5449
+ #
5450
+ # @!attribute [rw] stages
5451
+ # List of stages of the edge deployment plan. The number of stages is
5452
+ # limited to 10 per deployment.
5453
+ # @return [Array<Types::DeploymentStage>]
5454
+ #
5455
+ # @!attribute [rw] tags
5456
+ # List of tags with which to tag the edge deployment plan.
5457
+ # @return [Array<Types::Tag>]
5458
+ #
5459
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateEdgeDeploymentPlanRequest AWS API Documentation
5460
+ #
5461
+ class CreateEdgeDeploymentPlanRequest < Struct.new(
5462
+ :edge_deployment_plan_name,
5463
+ :model_configs,
5464
+ :device_fleet_name,
5465
+ :stages,
5466
+ :tags)
5467
+ SENSITIVE = []
5468
+ include Aws::Structure
5469
+ end
5470
+
5471
+ # @!attribute [rw] edge_deployment_plan_arn
5472
+ # The ARN of the edge deployment plan.
5473
+ # @return [String]
5474
+ #
5475
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateEdgeDeploymentPlanResponse AWS API Documentation
5476
+ #
5477
+ class CreateEdgeDeploymentPlanResponse < Struct.new(
5478
+ :edge_deployment_plan_arn)
5479
+ SENSITIVE = []
5480
+ include Aws::Structure
5481
+ end
5482
+
5483
+ # @note When making an API call, you may pass CreateEdgeDeploymentStageRequest
5484
+ # data as a hash:
5485
+ #
5486
+ # {
5487
+ # edge_deployment_plan_name: "EntityName", # required
5488
+ # stages: [ # required
5489
+ # {
5490
+ # stage_name: "EntityName", # required
5491
+ # device_selection_config: { # required
5492
+ # device_subset_type: "PERCENTAGE", # required, accepts PERCENTAGE, SELECTION, NAMECONTAINS
5493
+ # percentage: 1,
5494
+ # device_names: ["DeviceName"],
5495
+ # device_name_contains: "DeviceName",
5496
+ # },
5497
+ # deployment_config: {
5498
+ # failure_handling_policy: "ROLLBACK_ON_FAILURE", # required, accepts ROLLBACK_ON_FAILURE, DO_NOTHING
5499
+ # },
5500
+ # },
5501
+ # ],
5502
+ # }
5503
+ #
5504
+ # @!attribute [rw] edge_deployment_plan_name
5505
+ # The name of the edge deployment plan.
5506
+ # @return [String]
5507
+ #
5508
+ # @!attribute [rw] stages
5509
+ # List of stages to be added to the edge deployment plan.
5510
+ # @return [Array<Types::DeploymentStage>]
5511
+ #
5512
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateEdgeDeploymentStageRequest AWS API Documentation
5513
+ #
5514
+ class CreateEdgeDeploymentStageRequest < Struct.new(
5515
+ :edge_deployment_plan_name,
5516
+ :stages)
5517
+ SENSITIVE = []
5518
+ include Aws::Structure
5519
+ end
5520
+
5401
5521
  # @note When making an API call, you may pass CreateEdgePackagingJobRequest
5402
5522
  # data as a hash:
5403
5523
  #
@@ -6255,7 +6375,7 @@ module Aws::SageMaker
6255
6375
  # kms_key_id: "KmsKeyId",
6256
6376
  # s3_output_path: "S3Uri", # required
6257
6377
  # },
6258
- # resource_config: { # required
6378
+ # resource_config: {
6259
6379
  # instance_type: "ml.m4.xlarge", # accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, 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.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
6260
6380
  # instance_count: 1,
6261
6381
  # volume_size_in_gb: 1, # required
@@ -6282,6 +6402,20 @@ module Aws::SageMaker
6282
6402
  # retry_strategy: {
6283
6403
  # maximum_retry_attempts: 1, # required
6284
6404
  # },
6405
+ # hyper_parameter_tuning_resource_config: {
6406
+ # instance_type: "ml.m4.xlarge", # accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, 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.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
6407
+ # instance_count: 1,
6408
+ # volume_size_in_gb: 1,
6409
+ # volume_kms_key_id: "KmsKeyId",
6410
+ # allocation_strategy: "Prioritized", # accepts Prioritized
6411
+ # instance_configs: [
6412
+ # {
6413
+ # instance_type: "ml.m4.xlarge", # required, accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, 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.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
6414
+ # instance_count: 1, # required
6415
+ # volume_size_in_gb: 1, # required
6416
+ # },
6417
+ # ],
6418
+ # },
6285
6419
  # },
6286
6420
  # training_job_definitions: [
6287
6421
  # {
@@ -6364,7 +6498,7 @@ module Aws::SageMaker
6364
6498
  # kms_key_id: "KmsKeyId",
6365
6499
  # s3_output_path: "S3Uri", # required
6366
6500
  # },
6367
- # resource_config: { # required
6501
+ # resource_config: {
6368
6502
  # instance_type: "ml.m4.xlarge", # accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, 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.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
6369
6503
  # instance_count: 1,
6370
6504
  # volume_size_in_gb: 1, # required
@@ -6391,6 +6525,20 @@ module Aws::SageMaker
6391
6525
  # retry_strategy: {
6392
6526
  # maximum_retry_attempts: 1, # required
6393
6527
  # },
6528
+ # hyper_parameter_tuning_resource_config: {
6529
+ # instance_type: "ml.m4.xlarge", # accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, 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.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
6530
+ # instance_count: 1,
6531
+ # volume_size_in_gb: 1,
6532
+ # volume_kms_key_id: "KmsKeyId",
6533
+ # allocation_strategy: "Prioritized", # accepts Prioritized
6534
+ # instance_configs: [
6535
+ # {
6536
+ # instance_type: "ml.m4.xlarge", # required, accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, 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.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
6537
+ # instance_count: 1, # required
6538
+ # volume_size_in_gb: 1, # required
6539
+ # },
6540
+ # ],
6541
+ # },
6394
6542
  # },
6395
6543
  # ],
6396
6544
  # warm_start_config: {
@@ -11233,6 +11381,51 @@ module Aws::SageMaker
11233
11381
  include Aws::Structure
11234
11382
  end
11235
11383
 
11384
+ # @note When making an API call, you may pass DeleteEdgeDeploymentPlanRequest
11385
+ # data as a hash:
11386
+ #
11387
+ # {
11388
+ # edge_deployment_plan_name: "EntityName", # required
11389
+ # }
11390
+ #
11391
+ # @!attribute [rw] edge_deployment_plan_name
11392
+ # The name of the edge deployment plan to delete.
11393
+ # @return [String]
11394
+ #
11395
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteEdgeDeploymentPlanRequest AWS API Documentation
11396
+ #
11397
+ class DeleteEdgeDeploymentPlanRequest < Struct.new(
11398
+ :edge_deployment_plan_name)
11399
+ SENSITIVE = []
11400
+ include Aws::Structure
11401
+ end
11402
+
11403
+ # @note When making an API call, you may pass DeleteEdgeDeploymentStageRequest
11404
+ # data as a hash:
11405
+ #
11406
+ # {
11407
+ # edge_deployment_plan_name: "EntityName", # required
11408
+ # stage_name: "EntityName", # required
11409
+ # }
11410
+ #
11411
+ # @!attribute [rw] edge_deployment_plan_name
11412
+ # The name of the edge deployment plan from which the stage will be
11413
+ # deleted.
11414
+ # @return [String]
11415
+ #
11416
+ # @!attribute [rw] stage_name
11417
+ # The name of the stage.
11418
+ # @return [String]
11419
+ #
11420
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteEdgeDeploymentStageRequest AWS API Documentation
11421
+ #
11422
+ class DeleteEdgeDeploymentStageRequest < Struct.new(
11423
+ :edge_deployment_plan_name,
11424
+ :stage_name)
11425
+ SENSITIVE = []
11426
+ include Aws::Structure
11427
+ end
11428
+
11236
11429
  # @note When making an API call, you may pass DeleteEndpointConfigInput
11237
11430
  # data as a hash:
11238
11431
  #
@@ -11964,6 +12157,75 @@ module Aws::SageMaker
11964
12157
  include Aws::Structure
11965
12158
  end
11966
12159
 
12160
+ # Contains information about a stage in an edge deployment plan.
12161
+ #
12162
+ # @note When making an API call, you may pass DeploymentStage
12163
+ # data as a hash:
12164
+ #
12165
+ # {
12166
+ # stage_name: "EntityName", # required
12167
+ # device_selection_config: { # required
12168
+ # device_subset_type: "PERCENTAGE", # required, accepts PERCENTAGE, SELECTION, NAMECONTAINS
12169
+ # percentage: 1,
12170
+ # device_names: ["DeviceName"],
12171
+ # device_name_contains: "DeviceName",
12172
+ # },
12173
+ # deployment_config: {
12174
+ # failure_handling_policy: "ROLLBACK_ON_FAILURE", # required, accepts ROLLBACK_ON_FAILURE, DO_NOTHING
12175
+ # },
12176
+ # }
12177
+ #
12178
+ # @!attribute [rw] stage_name
12179
+ # The name of the stage.
12180
+ # @return [String]
12181
+ #
12182
+ # @!attribute [rw] device_selection_config
12183
+ # Configuration of the devices in the stage.
12184
+ # @return [Types::DeviceSelectionConfig]
12185
+ #
12186
+ # @!attribute [rw] deployment_config
12187
+ # Configuration of the deployment details.
12188
+ # @return [Types::EdgeDeploymentConfig]
12189
+ #
12190
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeploymentStage AWS API Documentation
12191
+ #
12192
+ class DeploymentStage < Struct.new(
12193
+ :stage_name,
12194
+ :device_selection_config,
12195
+ :deployment_config)
12196
+ SENSITIVE = []
12197
+ include Aws::Structure
12198
+ end
12199
+
12200
+ # Contains information summarizing the deployment stage results.
12201
+ #
12202
+ # @!attribute [rw] stage_name
12203
+ # The name of the stage.
12204
+ # @return [String]
12205
+ #
12206
+ # @!attribute [rw] device_selection_config
12207
+ # Configuration of the devices in the stage.
12208
+ # @return [Types::DeviceSelectionConfig]
12209
+ #
12210
+ # @!attribute [rw] deployment_config
12211
+ # Configuration of the deployment details.
12212
+ # @return [Types::EdgeDeploymentConfig]
12213
+ #
12214
+ # @!attribute [rw] deployment_status
12215
+ # General status of the current state.
12216
+ # @return [Types::EdgeDeploymentStatus]
12217
+ #
12218
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeploymentStageStatusSummary AWS API Documentation
12219
+ #
12220
+ class DeploymentStageStatusSummary < Struct.new(
12221
+ :stage_name,
12222
+ :device_selection_config,
12223
+ :deployment_config,
12224
+ :deployment_status)
12225
+ SENSITIVE = []
12226
+ include Aws::Structure
12227
+ end
12228
+
11967
12229
  # @note When making an API call, you may pass DeregisterDevicesRequest
11968
12230
  # data as a hash:
11969
12231
  #
@@ -13214,6 +13476,102 @@ module Aws::SageMaker
13214
13476
  include Aws::Structure
13215
13477
  end
13216
13478
 
13479
+ # @note When making an API call, you may pass DescribeEdgeDeploymentPlanRequest
13480
+ # data as a hash:
13481
+ #
13482
+ # {
13483
+ # edge_deployment_plan_name: "EntityName", # required
13484
+ # next_token: "NextToken",
13485
+ # max_results: 1,
13486
+ # }
13487
+ #
13488
+ # @!attribute [rw] edge_deployment_plan_name
13489
+ # The name of the deployment plan to describe.
13490
+ # @return [String]
13491
+ #
13492
+ # @!attribute [rw] next_token
13493
+ # If the edge deployment plan has enough stages to require tokening,
13494
+ # then this is the response from the last list of stages returned.
13495
+ # @return [String]
13496
+ #
13497
+ # @!attribute [rw] max_results
13498
+ # The maximum number of results to select (50 by default).
13499
+ # @return [Integer]
13500
+ #
13501
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeEdgeDeploymentPlanRequest AWS API Documentation
13502
+ #
13503
+ class DescribeEdgeDeploymentPlanRequest < Struct.new(
13504
+ :edge_deployment_plan_name,
13505
+ :next_token,
13506
+ :max_results)
13507
+ SENSITIVE = []
13508
+ include Aws::Structure
13509
+ end
13510
+
13511
+ # @!attribute [rw] edge_deployment_plan_arn
13512
+ # The ARN of edge deployment plan.
13513
+ # @return [String]
13514
+ #
13515
+ # @!attribute [rw] edge_deployment_plan_name
13516
+ # The name of the edge deployment plan.
13517
+ # @return [String]
13518
+ #
13519
+ # @!attribute [rw] model_configs
13520
+ # List of models associated with the edge deployment plan.
13521
+ # @return [Array<Types::EdgeDeploymentModelConfig>]
13522
+ #
13523
+ # @!attribute [rw] device_fleet_name
13524
+ # The device fleet used for this edge deployment plan.
13525
+ # @return [String]
13526
+ #
13527
+ # @!attribute [rw] edge_deployment_success
13528
+ # The number of edge devices with the successful deployment.
13529
+ # @return [Integer]
13530
+ #
13531
+ # @!attribute [rw] edge_deployment_pending
13532
+ # The number of edge devices yet to pick up deployment, or in
13533
+ # progress.
13534
+ # @return [Integer]
13535
+ #
13536
+ # @!attribute [rw] edge_deployment_failed
13537
+ # The number of edge devices that failed the deployment.
13538
+ # @return [Integer]
13539
+ #
13540
+ # @!attribute [rw] stages
13541
+ # List of stages in the edge deployment plan.
13542
+ # @return [Array<Types::DeploymentStageStatusSummary>]
13543
+ #
13544
+ # @!attribute [rw] next_token
13545
+ # Token to use when calling the next set of stages in the edge
13546
+ # deployment plan.
13547
+ # @return [String]
13548
+ #
13549
+ # @!attribute [rw] creation_time
13550
+ # The time when the edge deployment plan was created.
13551
+ # @return [Time]
13552
+ #
13553
+ # @!attribute [rw] last_modified_time
13554
+ # The time when the edge deployment plan was last updated.
13555
+ # @return [Time]
13556
+ #
13557
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeEdgeDeploymentPlanResponse AWS API Documentation
13558
+ #
13559
+ class DescribeEdgeDeploymentPlanResponse < Struct.new(
13560
+ :edge_deployment_plan_arn,
13561
+ :edge_deployment_plan_name,
13562
+ :model_configs,
13563
+ :device_fleet_name,
13564
+ :edge_deployment_success,
13565
+ :edge_deployment_pending,
13566
+ :edge_deployment_failed,
13567
+ :stages,
13568
+ :next_token,
13569
+ :creation_time,
13570
+ :last_modified_time)
13571
+ SENSITIVE = []
13572
+ include Aws::Structure
13573
+ end
13574
+
13217
13575
  # @note When making an API call, you may pass DescribeEdgePackagingJobRequest
13218
13576
  # data as a hash:
13219
13577
  #
@@ -16983,6 +17341,70 @@ module Aws::SageMaker
16983
17341
  include Aws::Structure
16984
17342
  end
16985
17343
 
17344
+ # Contains information summarizing device details and deployment status.
17345
+ #
17346
+ # @!attribute [rw] edge_deployment_plan_arn
17347
+ # The ARN of the edge deployment plan.
17348
+ # @return [String]
17349
+ #
17350
+ # @!attribute [rw] edge_deployment_plan_name
17351
+ # The name of the edge deployment plan.
17352
+ # @return [String]
17353
+ #
17354
+ # @!attribute [rw] stage_name
17355
+ # The name of the stage in the edge deployment plan.
17356
+ # @return [String]
17357
+ #
17358
+ # @!attribute [rw] deployed_stage_name
17359
+ # The name of the deployed stage.
17360
+ # @return [String]
17361
+ #
17362
+ # @!attribute [rw] device_fleet_name
17363
+ # The name of the fleet to which the device belongs to.
17364
+ # @return [String]
17365
+ #
17366
+ # @!attribute [rw] device_name
17367
+ # The name of the device.
17368
+ # @return [String]
17369
+ #
17370
+ # @!attribute [rw] device_arn
17371
+ # The ARN of the device.
17372
+ # @return [String]
17373
+ #
17374
+ # @!attribute [rw] device_deployment_status
17375
+ # The deployment status of the device.
17376
+ # @return [String]
17377
+ #
17378
+ # @!attribute [rw] device_deployment_status_message
17379
+ # The detailed error message for the deployoment status result.
17380
+ # @return [String]
17381
+ #
17382
+ # @!attribute [rw] description
17383
+ # The description of the device.
17384
+ # @return [String]
17385
+ #
17386
+ # @!attribute [rw] deployment_start_time
17387
+ # The time when the deployment on the device started.
17388
+ # @return [Time]
17389
+ #
17390
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeviceDeploymentSummary AWS API Documentation
17391
+ #
17392
+ class DeviceDeploymentSummary < Struct.new(
17393
+ :edge_deployment_plan_arn,
17394
+ :edge_deployment_plan_name,
17395
+ :stage_name,
17396
+ :deployed_stage_name,
17397
+ :device_fleet_name,
17398
+ :device_name,
17399
+ :device_arn,
17400
+ :device_deployment_status,
17401
+ :device_deployment_status_message,
17402
+ :description,
17403
+ :deployment_start_time)
17404
+ SENSITIVE = []
17405
+ include Aws::Structure
17406
+ end
17407
+
16986
17408
  # Summary of the device fleet.
16987
17409
  #
16988
17410
  # @!attribute [rw] device_fleet_arn
@@ -17012,6 +17434,45 @@ module Aws::SageMaker
17012
17434
  include Aws::Structure
17013
17435
  end
17014
17436
 
17437
+ # Contains information about the configurations of selected devices.
17438
+ #
17439
+ # @note When making an API call, you may pass DeviceSelectionConfig
17440
+ # data as a hash:
17441
+ #
17442
+ # {
17443
+ # device_subset_type: "PERCENTAGE", # required, accepts PERCENTAGE, SELECTION, NAMECONTAINS
17444
+ # percentage: 1,
17445
+ # device_names: ["DeviceName"],
17446
+ # device_name_contains: "DeviceName",
17447
+ # }
17448
+ #
17449
+ # @!attribute [rw] device_subset_type
17450
+ # Type of device subsets to deploy to the current stage.
17451
+ # @return [String]
17452
+ #
17453
+ # @!attribute [rw] percentage
17454
+ # Percentage of devices in the fleet to deploy to the current stage.
17455
+ # @return [Integer]
17456
+ #
17457
+ # @!attribute [rw] device_names
17458
+ # List of devices chosen to deploy.
17459
+ # @return [Array<String>]
17460
+ #
17461
+ # @!attribute [rw] device_name_contains
17462
+ # A filter to select devices with names containing this name.
17463
+ # @return [String]
17464
+ #
17465
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeviceSelectionConfig AWS API Documentation
17466
+ #
17467
+ class DeviceSelectionConfig < Struct.new(
17468
+ :device_subset_type,
17469
+ :percentage,
17470
+ :device_names,
17471
+ :device_name_contains)
17472
+ SENSITIVE = []
17473
+ include Aws::Structure
17474
+ end
17475
+
17015
17476
  # Status of devices.
17016
17477
  #
17017
17478
  # @!attribute [rw] connected_device_count
@@ -17558,6 +18019,149 @@ module Aws::SageMaker
17558
18019
  include Aws::Structure
17559
18020
  end
17560
18021
 
18022
+ # Contains information about the configuration of a deployment.
18023
+ #
18024
+ # @note When making an API call, you may pass EdgeDeploymentConfig
18025
+ # data as a hash:
18026
+ #
18027
+ # {
18028
+ # failure_handling_policy: "ROLLBACK_ON_FAILURE", # required, accepts ROLLBACK_ON_FAILURE, DO_NOTHING
18029
+ # }
18030
+ #
18031
+ # @!attribute [rw] failure_handling_policy
18032
+ # Toggle that determines whether to rollback to previous configuration
18033
+ # if the current deployment fails. By default this is turned on. You
18034
+ # may turn this off if you want to investigate the errors yourself.
18035
+ # @return [String]
18036
+ #
18037
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EdgeDeploymentConfig AWS API Documentation
18038
+ #
18039
+ class EdgeDeploymentConfig < Struct.new(
18040
+ :failure_handling_policy)
18041
+ SENSITIVE = []
18042
+ include Aws::Structure
18043
+ end
18044
+
18045
+ # Contains information about the configuration of a model in a
18046
+ # deployment.
18047
+ #
18048
+ # @note When making an API call, you may pass EdgeDeploymentModelConfig
18049
+ # data as a hash:
18050
+ #
18051
+ # {
18052
+ # model_handle: "EntityName", # required
18053
+ # edge_packaging_job_name: "EntityName", # required
18054
+ # }
18055
+ #
18056
+ # @!attribute [rw] model_handle
18057
+ # The name the device application uses to reference this model.
18058
+ # @return [String]
18059
+ #
18060
+ # @!attribute [rw] edge_packaging_job_name
18061
+ # The edge packaging job associated with this deployment.
18062
+ # @return [String]
18063
+ #
18064
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EdgeDeploymentModelConfig AWS API Documentation
18065
+ #
18066
+ class EdgeDeploymentModelConfig < Struct.new(
18067
+ :model_handle,
18068
+ :edge_packaging_job_name)
18069
+ SENSITIVE = []
18070
+ include Aws::Structure
18071
+ end
18072
+
18073
+ # Contains information summarizing an edge deployment plan.
18074
+ #
18075
+ # @!attribute [rw] edge_deployment_plan_arn
18076
+ # The ARN of the edge deployment plan.
18077
+ # @return [String]
18078
+ #
18079
+ # @!attribute [rw] edge_deployment_plan_name
18080
+ # The name of the edge deployment plan.
18081
+ # @return [String]
18082
+ #
18083
+ # @!attribute [rw] device_fleet_name
18084
+ # The name of the device fleet used for the deployment.
18085
+ # @return [String]
18086
+ #
18087
+ # @!attribute [rw] edge_deployment_success
18088
+ # The number of edge devices with the successful deployment.
18089
+ # @return [Integer]
18090
+ #
18091
+ # @!attribute [rw] edge_deployment_pending
18092
+ # The number of edge devices yet to pick up the deployment, or in
18093
+ # progress.
18094
+ # @return [Integer]
18095
+ #
18096
+ # @!attribute [rw] edge_deployment_failed
18097
+ # The number of edge devices that failed the deployment.
18098
+ # @return [Integer]
18099
+ #
18100
+ # @!attribute [rw] creation_time
18101
+ # The time when the edge deployment plan was created.
18102
+ # @return [Time]
18103
+ #
18104
+ # @!attribute [rw] last_modified_time
18105
+ # The time when the edge deployment plan was last updated.
18106
+ # @return [Time]
18107
+ #
18108
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EdgeDeploymentPlanSummary AWS API Documentation
18109
+ #
18110
+ class EdgeDeploymentPlanSummary < Struct.new(
18111
+ :edge_deployment_plan_arn,
18112
+ :edge_deployment_plan_name,
18113
+ :device_fleet_name,
18114
+ :edge_deployment_success,
18115
+ :edge_deployment_pending,
18116
+ :edge_deployment_failed,
18117
+ :creation_time,
18118
+ :last_modified_time)
18119
+ SENSITIVE = []
18120
+ include Aws::Structure
18121
+ end
18122
+
18123
+ # Contains information summarizing the deployment stage results.
18124
+ #
18125
+ # @!attribute [rw] stage_status
18126
+ # The general status of the current stage.
18127
+ # @return [String]
18128
+ #
18129
+ # @!attribute [rw] edge_deployment_success_in_stage
18130
+ # The number of edge devices with the successful deployment in the
18131
+ # current stage.
18132
+ # @return [Integer]
18133
+ #
18134
+ # @!attribute [rw] edge_deployment_pending_in_stage
18135
+ # The number of edge devices yet to pick up the deployment in current
18136
+ # stage, or in progress.
18137
+ # @return [Integer]
18138
+ #
18139
+ # @!attribute [rw] edge_deployment_failed_in_stage
18140
+ # The number of edge devices that failed the deployment in current
18141
+ # stage.
18142
+ # @return [Integer]
18143
+ #
18144
+ # @!attribute [rw] edge_deployment_status_message
18145
+ # A detailed message about deployment status in current stage.
18146
+ # @return [String]
18147
+ #
18148
+ # @!attribute [rw] edge_deployment_stage_start_time
18149
+ # The time when the deployment API started.
18150
+ # @return [Time]
18151
+ #
18152
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EdgeDeploymentStatus AWS API Documentation
18153
+ #
18154
+ class EdgeDeploymentStatus < Struct.new(
18155
+ :stage_status,
18156
+ :edge_deployment_success_in_stage,
18157
+ :edge_deployment_pending_in_stage,
18158
+ :edge_deployment_failed_in_stage,
18159
+ :edge_deployment_status_message,
18160
+ :edge_deployment_stage_start_time)
18161
+ SENSITIVE = []
18162
+ include Aws::Structure
18163
+ end
18164
+
17561
18165
  # The model on the edge device.
17562
18166
  #
17563
18167
  # @!attribute [rw] model_name
@@ -20810,7 +21414,7 @@ module Aws::SageMaker
20810
21414
  # kms_key_id: "KmsKeyId",
20811
21415
  # s3_output_path: "S3Uri", # required
20812
21416
  # },
20813
- # resource_config: { # required
21417
+ # resource_config: {
20814
21418
  # instance_type: "ml.m4.xlarge", # accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, 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.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
20815
21419
  # instance_count: 1,
20816
21420
  # volume_size_in_gb: 1, # required
@@ -20837,6 +21441,20 @@ module Aws::SageMaker
20837
21441
  # retry_strategy: {
20838
21442
  # maximum_retry_attempts: 1, # required
20839
21443
  # },
21444
+ # hyper_parameter_tuning_resource_config: {
21445
+ # instance_type: "ml.m4.xlarge", # accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, 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.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
21446
+ # instance_count: 1,
21447
+ # volume_size_in_gb: 1,
21448
+ # volume_kms_key_id: "KmsKeyId",
21449
+ # allocation_strategy: "Prioritized", # accepts Prioritized
21450
+ # instance_configs: [
21451
+ # {
21452
+ # instance_type: "ml.m4.xlarge", # required, accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, 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.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
21453
+ # instance_count: 1, # required
21454
+ # volume_size_in_gb: 1, # required
21455
+ # },
21456
+ # ],
21457
+ # },
20840
21458
  # }
20841
21459
  #
20842
21460
  # @!attribute [rw] definition_name
@@ -20916,6 +21534,11 @@ module Aws::SageMaker
20916
21534
  # training data, choose `File` as the `TrainingInputMode` in the
20917
21535
  # algorithm specification. For distributed training algorithms,
20918
21536
  # specify an instance count greater than 1.
21537
+ #
21538
+ # <note markdown="1"> If you want to use hyperparameter optimization with instance type
21539
+ # flexibility, use `HyperParameterTuningResourceConfig` instead.
21540
+ #
21541
+ # </note>
20919
21542
  # @return [Types::ResourceConfig]
20920
21543
  #
20921
21544
  # @!attribute [rw] stopping_condition
@@ -20958,6 +21581,15 @@ module Aws::SageMaker
20958
21581
  # `InternalServerError`.
20959
21582
  # @return [Types::RetryStrategy]
20960
21583
  #
21584
+ # @!attribute [rw] hyper_parameter_tuning_resource_config
21585
+ # The configuration for the hyperparameter tuning resources, including
21586
+ # the compute instances and storage volumes, used for training jobs
21587
+ # launched by the tuning job. By default, storage volumes hold model
21588
+ # artifacts and incremental states. Choose `File` for
21589
+ # `TrainingInputMode` in the `AlgorithmSpecification`parameter to
21590
+ # additionally store training data in the storage volume (optional).
21591
+ # @return [Types::HyperParameterTuningResourceConfig]
21592
+ #
20961
21593
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/HyperParameterTrainingJobDefinition AWS API Documentation
20962
21594
  #
20963
21595
  class HyperParameterTrainingJobDefinition < Struct.new(
@@ -20976,7 +21608,8 @@ module Aws::SageMaker
20976
21608
  :enable_inter_container_traffic_encryption,
20977
21609
  :enable_managed_spot_training,
20978
21610
  :checkpoint_config,
20979
- :retry_strategy)
21611
+ :retry_strategy,
21612
+ :hyper_parameter_tuning_resource_config)
20980
21613
  SENSITIVE = []
20981
21614
  include Aws::Structure
20982
21615
  end
@@ -21077,6 +21710,60 @@ module Aws::SageMaker
21077
21710
  include Aws::Structure
21078
21711
  end
21079
21712
 
21713
+ # The configuration for hyperparameter tuning resources for use in
21714
+ # training jobs launched by the tuning job. These resources include
21715
+ # compute instances and storage volumes. Specify one or more compute
21716
+ # instance configurations and allocation strategies to select resources
21717
+ # (optional).
21718
+ #
21719
+ # @note When making an API call, you may pass HyperParameterTuningInstanceConfig
21720
+ # data as a hash:
21721
+ #
21722
+ # {
21723
+ # instance_type: "ml.m4.xlarge", # required, accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, 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.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
21724
+ # instance_count: 1, # required
21725
+ # volume_size_in_gb: 1, # required
21726
+ # }
21727
+ #
21728
+ # @!attribute [rw] instance_type
21729
+ # The instance type used for processing of hyperparameter optimization
21730
+ # jobs. Choose from general purpose (no GPUs) instance types:
21731
+ # ml.m5.xlarge, ml.m5.2xlarge, and ml.m5.4xlarge or compute optimized
21732
+ # (no GPUs) instance types: ml.c5.xlarge and ml.c5.2xlarge. For more
21733
+ # information about instance types, see [instance type
21734
+ # descriptions][1].
21735
+ #
21736
+ #
21737
+ #
21738
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/notebooks-available-instance-types.html
21739
+ # @return [String]
21740
+ #
21741
+ # @!attribute [rw] instance_count
21742
+ # The number of instances of the type specified by `InstanceType`.
21743
+ # Choose an instance count larger than 1 for distributed training
21744
+ # algorithms. See [SageMaker distributed training jobs][1] for more
21745
+ # information.
21746
+ #
21747
+ #
21748
+ #
21749
+ # [1]: https://docs.aws.amazon.com/data-parallel-use-api.html
21750
+ # @return [Integer]
21751
+ #
21752
+ # @!attribute [rw] volume_size_in_gb
21753
+ # The volume size in GB of the data to be processed for hyperparameter
21754
+ # optimization (optional).
21755
+ # @return [Integer]
21756
+ #
21757
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/HyperParameterTuningInstanceConfig AWS API Documentation
21758
+ #
21759
+ class HyperParameterTuningInstanceConfig < Struct.new(
21760
+ :instance_type,
21761
+ :instance_count,
21762
+ :volume_size_in_gb)
21763
+ SENSITIVE = []
21764
+ include Aws::Structure
21765
+ end
21766
+
21080
21767
  # Configures a hyperparameter tuning job.
21081
21768
  #
21082
21769
  # @note When making an API call, you may pass HyperParameterTuningJobConfig
@@ -21370,6 +22057,140 @@ module Aws::SageMaker
21370
22057
  include Aws::Structure
21371
22058
  end
21372
22059
 
22060
+ # The configuration of resources, including compute instances and
22061
+ # storage volumes for use in training jobs launched by hyperparameter
22062
+ # tuning jobs. Specify one or more instance type and count and the
22063
+ # allocation strategy for instance selection.
22064
+ #
22065
+ # <note markdown="1"> HyperParameterTuningResourceConfig supports all of the capabilities of
22066
+ # ResourceConfig with added functionality for flexible instance
22067
+ # management.
22068
+ #
22069
+ # </note>
22070
+ #
22071
+ # @note When making an API call, you may pass HyperParameterTuningResourceConfig
22072
+ # data as a hash:
22073
+ #
22074
+ # {
22075
+ # instance_type: "ml.m4.xlarge", # accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, 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.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
22076
+ # instance_count: 1,
22077
+ # volume_size_in_gb: 1,
22078
+ # volume_kms_key_id: "KmsKeyId",
22079
+ # allocation_strategy: "Prioritized", # accepts Prioritized
22080
+ # instance_configs: [
22081
+ # {
22082
+ # instance_type: "ml.m4.xlarge", # required, accepts ml.m4.xlarge, ml.m4.2xlarge, ml.m4.4xlarge, ml.m4.10xlarge, ml.m4.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.m5.large, 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.p2.xlarge, ml.p2.8xlarge, ml.p2.16xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.p4d.24xlarge, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.18xlarge, ml.c5n.xlarge, ml.c5n.2xlarge, ml.c5n.4xlarge, ml.c5n.9xlarge, ml.c5n.18xlarge, ml.g5.xlarge, ml.g5.2xlarge, ml.g5.4xlarge, ml.g5.8xlarge, ml.g5.16xlarge, ml.g5.12xlarge, ml.g5.24xlarge, ml.g5.48xlarge
22083
+ # instance_count: 1, # required
22084
+ # volume_size_in_gb: 1, # required
22085
+ # },
22086
+ # ],
22087
+ # }
22088
+ #
22089
+ # @!attribute [rw] instance_type
22090
+ # The instance type used to run hyperparameter optimization tuning
22091
+ # jobs. See [ descriptions of instance types][1] for more information.
22092
+ #
22093
+ #
22094
+ #
22095
+ # [1]: https://docs.aws.amazon.com/notebooks-available-instance-types.html
22096
+ # @return [String]
22097
+ #
22098
+ # @!attribute [rw] instance_count
22099
+ # The number of compute instances of type `InstanceType` to use. For
22100
+ # [distributed training][1], select a value greater than 1.
22101
+ #
22102
+ #
22103
+ #
22104
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/data-parallel-use-api.html
22105
+ # @return [Integer]
22106
+ #
22107
+ # @!attribute [rw] volume_size_in_gb
22108
+ # The volume size in GB for the storage volume to be used in
22109
+ # processing hyperparameter optimization jobs (optional). These
22110
+ # volumes store model artifacts, incremental states and optionally,
22111
+ # scratch space for training algorithms. Do not provide a value for
22112
+ # this parameter if a value for `InstanceConfigs` is also specified.
22113
+ #
22114
+ # Some instance types have a fixed total local storage size. If you
22115
+ # select one of these instances for training, `VolumeSizeInGB` cannot
22116
+ # be greater than this total size. For a list of instance types with
22117
+ # local instance storage and their sizes, see [instance store
22118
+ # volumes][1].
22119
+ #
22120
+ # <note markdown="1"> SageMaker supports only the [General Purpose SSD (gp2)][2] storage
22121
+ # volume type.
22122
+ #
22123
+ # </note>
22124
+ #
22125
+ #
22126
+ #
22127
+ # [1]: https://aws.amazon.com/releasenotes/host-instance-storage-volumes-table/
22128
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-volume-types.html
22129
+ # @return [Integer]
22130
+ #
22131
+ # @!attribute [rw] volume_kms_key_id
22132
+ # A key used by AWS Key Management Service to encrypt data on the
22133
+ # storage volume attached to the compute instances used to run the
22134
+ # training job. You can use either of the following formats to specify
22135
+ # a key.
22136
+ #
22137
+ # KMS Key ID:
22138
+ #
22139
+ # `"1234abcd-12ab-34cd-56ef-1234567890ab"`
22140
+ #
22141
+ # Amazon Resource Name (ARN) of a AWS KMS key:
22142
+ #
22143
+ # `"arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab"`
22144
+ #
22145
+ # Some instances use local storage, which use a [hardware module to
22146
+ # encrypt][1] storage volumes. If you choose one of these instance
22147
+ # types, you cannot request a `VolumeKmsKeyId`. For a list of instance
22148
+ # types that use local storage, see [instance store volumes][2]. For
22149
+ # more information about AWS Key Management Service, see [AWS KMS
22150
+ # encryption][3] for more information.
22151
+ #
22152
+ #
22153
+ #
22154
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ssd-instance-store.html
22155
+ # [2]: https://aws.amazon.com/releasenotes/host-instance-storage-volumes-table/
22156
+ # [3]: https://docs.aws.amazon.com/sagemaker/latest/dg/sms-security-kms-permissions.html
22157
+ # @return [String]
22158
+ #
22159
+ # @!attribute [rw] allocation_strategy
22160
+ # The strategy that determines the order of preference for resources
22161
+ # specified in `InstanceConfigs` used in hyperparameter optimization.
22162
+ # @return [String]
22163
+ #
22164
+ # @!attribute [rw] instance_configs
22165
+ # A list containing the configuration(s) for one or more resources for
22166
+ # processing hyperparameter jobs. These resources include compute
22167
+ # instances and storage volumes to use in model training jobs launched
22168
+ # by hyperparameter tuning jobs. The `AllocationStrategy` controls the
22169
+ # order in which multiple configurations provided in `InstanceConfigs`
22170
+ # are used.
22171
+ #
22172
+ # <note markdown="1"> If you only want to use a single InstanceConfig inside the
22173
+ # `HyperParameterTuningResourceConfig` API, do not provide a value for
22174
+ # `InstanceConfigs`. Instead, use `InstanceType`, `VolumeSizeInGB` and
22175
+ # `InstanceCount`. If you use `InstanceConfigs`, do not provide values
22176
+ # for `InstanceType`, `VolumeSizeInGB` or `InstanceCount`.
22177
+ #
22178
+ # </note>
22179
+ # @return [Array<Types::HyperParameterTuningInstanceConfig>]
22180
+ #
22181
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/HyperParameterTuningResourceConfig AWS API Documentation
22182
+ #
22183
+ class HyperParameterTuningResourceConfig < Struct.new(
22184
+ :instance_type,
22185
+ :instance_count,
22186
+ :volume_size_in_gb,
22187
+ :volume_kms_key_id,
22188
+ :allocation_strategy,
22189
+ :instance_configs)
22190
+ SENSITIVE = []
22191
+ include Aws::Structure
22192
+ end
22193
+
21373
22194
  # A SageMaker image. A SageMaker image represents a set of container
21374
22195
  # images that are derived from a common base container image. Each of
21375
22196
  # these container images is represented by a SageMaker `ImageVersion`.
@@ -24194,6 +25015,101 @@ module Aws::SageMaker
24194
25015
  include Aws::Structure
24195
25016
  end
24196
25017
 
25018
+ # @note When making an API call, you may pass ListEdgeDeploymentPlansRequest
25019
+ # data as a hash:
25020
+ #
25021
+ # {
25022
+ # next_token: "NextToken",
25023
+ # max_results: 1,
25024
+ # creation_time_after: Time.now,
25025
+ # creation_time_before: Time.now,
25026
+ # last_modified_time_after: Time.now,
25027
+ # last_modified_time_before: Time.now,
25028
+ # name_contains: "NameContains",
25029
+ # device_fleet_name_contains: "NameContains",
25030
+ # sort_by: "NAME", # accepts NAME, DEVICE_FLEET_NAME, CREATION_TIME, LAST_MODIFIED_TIME
25031
+ # sort_order: "Ascending", # accepts Ascending, Descending
25032
+ # }
25033
+ #
25034
+ # @!attribute [rw] next_token
25035
+ # The response from the last list when returning a list large enough
25036
+ # to need tokening.
25037
+ # @return [String]
25038
+ #
25039
+ # @!attribute [rw] max_results
25040
+ # The maximum number of results to select (50 by default).
25041
+ # @return [Integer]
25042
+ #
25043
+ # @!attribute [rw] creation_time_after
25044
+ # Selects edge deployment plans created after this time.
25045
+ # @return [Time]
25046
+ #
25047
+ # @!attribute [rw] creation_time_before
25048
+ # Selects edge deployment plans created before this time.
25049
+ # @return [Time]
25050
+ #
25051
+ # @!attribute [rw] last_modified_time_after
25052
+ # Selects edge deployment plans that were last updated after this
25053
+ # time.
25054
+ # @return [Time]
25055
+ #
25056
+ # @!attribute [rw] last_modified_time_before
25057
+ # Selects edge deployment plans that were last updated before this
25058
+ # time.
25059
+ # @return [Time]
25060
+ #
25061
+ # @!attribute [rw] name_contains
25062
+ # Selects edge deployment plans with names containing this name.
25063
+ # @return [String]
25064
+ #
25065
+ # @!attribute [rw] device_fleet_name_contains
25066
+ # Selects edge deployment plans with a device fleet name containing
25067
+ # this name.
25068
+ # @return [String]
25069
+ #
25070
+ # @!attribute [rw] sort_by
25071
+ # The column by which to sort the edge deployment plans. Can be one of
25072
+ # `NAME`, `DEVICEFLEETNAME`, `CREATIONTIME`, `LASTMODIFIEDTIME`.
25073
+ # @return [String]
25074
+ #
25075
+ # @!attribute [rw] sort_order
25076
+ # The direction of the sorting (ascending or descending).
25077
+ # @return [String]
25078
+ #
25079
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListEdgeDeploymentPlansRequest AWS API Documentation
25080
+ #
25081
+ class ListEdgeDeploymentPlansRequest < Struct.new(
25082
+ :next_token,
25083
+ :max_results,
25084
+ :creation_time_after,
25085
+ :creation_time_before,
25086
+ :last_modified_time_after,
25087
+ :last_modified_time_before,
25088
+ :name_contains,
25089
+ :device_fleet_name_contains,
25090
+ :sort_by,
25091
+ :sort_order)
25092
+ SENSITIVE = []
25093
+ include Aws::Structure
25094
+ end
25095
+
25096
+ # @!attribute [rw] edge_deployment_plan_summaries
25097
+ # List of summaries of edge deployment plans.
25098
+ # @return [Array<Types::EdgeDeploymentPlanSummary>]
25099
+ #
25100
+ # @!attribute [rw] next_token
25101
+ # The token to use when calling the next page of results.
25102
+ # @return [String]
25103
+ #
25104
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListEdgeDeploymentPlansResponse AWS API Documentation
25105
+ #
25106
+ class ListEdgeDeploymentPlansResponse < Struct.new(
25107
+ :edge_deployment_plan_summaries,
25108
+ :next_token)
25109
+ SENSITIVE = []
25110
+ include Aws::Structure
25111
+ end
25112
+
24197
25113
  # @note When making an API call, you may pass ListEdgePackagingJobsRequest
24198
25114
  # data as a hash:
24199
25115
  #
@@ -26942,6 +27858,67 @@ module Aws::SageMaker
26942
27858
  include Aws::Structure
26943
27859
  end
26944
27860
 
27861
+ # @note When making an API call, you may pass ListStageDevicesRequest
27862
+ # data as a hash:
27863
+ #
27864
+ # {
27865
+ # next_token: "NextToken",
27866
+ # max_results: 1,
27867
+ # edge_deployment_plan_name: "EntityName", # required
27868
+ # exclude_devices_deployed_in_other_stage: false,
27869
+ # stage_name: "EntityName", # required
27870
+ # }
27871
+ #
27872
+ # @!attribute [rw] next_token
27873
+ # The response from the last list when returning a list large enough
27874
+ # to neeed tokening.
27875
+ # @return [String]
27876
+ #
27877
+ # @!attribute [rw] max_results
27878
+ # The maximum number of requests to select.
27879
+ # @return [Integer]
27880
+ #
27881
+ # @!attribute [rw] edge_deployment_plan_name
27882
+ # The name of the edge deployment plan.
27883
+ # @return [String]
27884
+ #
27885
+ # @!attribute [rw] exclude_devices_deployed_in_other_stage
27886
+ # Toggle for excluding devices deployed in other stages.
27887
+ # @return [Boolean]
27888
+ #
27889
+ # @!attribute [rw] stage_name
27890
+ # The name of the stage in the deployment.
27891
+ # @return [String]
27892
+ #
27893
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListStageDevicesRequest AWS API Documentation
27894
+ #
27895
+ class ListStageDevicesRequest < Struct.new(
27896
+ :next_token,
27897
+ :max_results,
27898
+ :edge_deployment_plan_name,
27899
+ :exclude_devices_deployed_in_other_stage,
27900
+ :stage_name)
27901
+ SENSITIVE = []
27902
+ include Aws::Structure
27903
+ end
27904
+
27905
+ # @!attribute [rw] device_deployment_summaries
27906
+ # List of summaries of devices allocated to the stage.
27907
+ # @return [Array<Types::DeviceDeploymentSummary>]
27908
+ #
27909
+ # @!attribute [rw] next_token
27910
+ # The token to use when calling the next page of results.
27911
+ # @return [String]
27912
+ #
27913
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListStageDevicesResponse AWS API Documentation
27914
+ #
27915
+ class ListStageDevicesResponse < Struct.new(
27916
+ :device_deployment_summaries,
27917
+ :next_token)
27918
+ SENSITIVE = []
27919
+ include Aws::Structure
27920
+ end
27921
+
26945
27922
  # @note When making an API call, you may pass ListStudioLifecycleConfigsRequest
26946
27923
  # data as a hash:
26947
27924
  #
@@ -33988,7 +34965,7 @@ module Aws::SageMaker
33988
34965
  # data as a hash:
33989
34966
  #
33990
34967
  # {
33991
- # start_arns: ["AssociationEntityArn"], # required
34968
+ # start_arns: ["AssociationEntityArn"],
33992
34969
  # direction: "Both", # accepts Both, Ascendants, Descendants
33993
34970
  # include_edges: false,
33994
34971
  # filters: {
@@ -36237,6 +37214,31 @@ module Aws::SageMaker
36237
37214
  include Aws::Structure
36238
37215
  end
36239
37216
 
37217
+ # @note When making an API call, you may pass StartEdgeDeploymentStageRequest
37218
+ # data as a hash:
37219
+ #
37220
+ # {
37221
+ # edge_deployment_plan_name: "EntityName", # required
37222
+ # stage_name: "EntityName", # required
37223
+ # }
37224
+ #
37225
+ # @!attribute [rw] edge_deployment_plan_name
37226
+ # The name of the edge deployment plan to start.
37227
+ # @return [String]
37228
+ #
37229
+ # @!attribute [rw] stage_name
37230
+ # The name of the stage to start.
37231
+ # @return [String]
37232
+ #
37233
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StartEdgeDeploymentStageRequest AWS API Documentation
37234
+ #
37235
+ class StartEdgeDeploymentStageRequest < Struct.new(
37236
+ :edge_deployment_plan_name,
37237
+ :stage_name)
37238
+ SENSITIVE = []
37239
+ include Aws::Structure
37240
+ end
37241
+
36240
37242
  # @note When making an API call, you may pass StartMonitoringScheduleRequest
36241
37243
  # data as a hash:
36242
37244
  #
@@ -36387,6 +37389,31 @@ module Aws::SageMaker
36387
37389
  include Aws::Structure
36388
37390
  end
36389
37391
 
37392
+ # @note When making an API call, you may pass StopEdgeDeploymentStageRequest
37393
+ # data as a hash:
37394
+ #
37395
+ # {
37396
+ # edge_deployment_plan_name: "EntityName", # required
37397
+ # stage_name: "EntityName", # required
37398
+ # }
37399
+ #
37400
+ # @!attribute [rw] edge_deployment_plan_name
37401
+ # The name of the edge deployment plan to stop.
37402
+ # @return [String]
37403
+ #
37404
+ # @!attribute [rw] stage_name
37405
+ # The name of the stage to stop.
37406
+ # @return [String]
37407
+ #
37408
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/StopEdgeDeploymentStageRequest AWS API Documentation
37409
+ #
37410
+ class StopEdgeDeploymentStageRequest < Struct.new(
37411
+ :edge_deployment_plan_name,
37412
+ :stage_name)
37413
+ SENSITIVE = []
37414
+ include Aws::Structure
37415
+ end
37416
+
36390
37417
  # @note When making an API call, you may pass StopEdgePackagingJobRequest
36391
37418
  # data as a hash:
36392
37419
  #
@@ -39835,7 +40862,10 @@ module Aws::SageMaker
39835
40862
  # @return [String]
39836
40863
  #
39837
40864
  # @!attribute [rw] feature_additions
39838
- # A list of the features that you're adding to the feature group.
40865
+ # Updates the feature group. Updating a feature group is an
40866
+ # asynchronous operation. When you get an HTTP 200 response, you've
40867
+ # made a valid request. It takes some time after you've made a valid
40868
+ # request for Feature Store to update the feature group.
39839
40869
  # @return [Array<Types::FeatureDefinition>]
39840
40870
  #
39841
40871
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateFeatureGroupRequest AWS API Documentation
@@ -40576,11 +41606,15 @@ module Aws::SageMaker
40576
41606
  # An array of key-value pairs. You can use tags to categorize your
40577
41607
  # Amazon Web Services resources in different ways, for example, by
40578
41608
  # purpose, owner, or environment. For more information, see [Tagging
40579
- # Amazon Web Services Resources][1].
41609
+ # Amazon Web Services Resources][1]. In addition, the project must
41610
+ # have tag update constraints set in order to include this parameter
41611
+ # in the request. For more information, see [Amazon Web Services
41612
+ # Service Catalog Tag Update Constraints][2].
40580
41613
  #
40581
41614
  #
40582
41615
  #
40583
41616
  # [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
41617
+ # [2]: https://docs.aws.amazon.com/servicecatalog/latest/adminguide/constraints-resourceupdate.html
40584
41618
  # @return [Array<Types::Tag>]
40585
41619
  #
40586
41620
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateProjectInput AWS API Documentation