aws-sdk-sagemaker 1.91.0 → 1.95.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker.rb +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +374 -268
- data/lib/aws-sdk-sagemaker/client_api.rb +14 -0
- data/lib/aws-sdk-sagemaker/types.rb +579 -425
- data/lib/aws-sdk-sagemaker/waiters.rb +248 -0
- metadata +4 -4
@@ -738,6 +738,7 @@ module Aws::SageMaker
|
|
738
738
|
LabelingJobSummary = Shapes::StructureShape.new(name: 'LabelingJobSummary')
|
739
739
|
LabelingJobSummaryList = Shapes::ListShape.new(name: 'LabelingJobSummaryList')
|
740
740
|
LambdaFunctionArn = Shapes::StringShape.new(name: 'LambdaFunctionArn')
|
741
|
+
LambdaStepMetadata = Shapes::StructureShape.new(name: 'LambdaStepMetadata')
|
741
742
|
LastModifiedTime = Shapes::TimestampShape.new(name: 'LastModifiedTime')
|
742
743
|
LineageEntityParameters = Shapes::MapShape.new(name: 'LineageEntityParameters')
|
743
744
|
ListActionsRequest = Shapes::StructureShape.new(name: 'ListActionsRequest')
|
@@ -1367,6 +1368,7 @@ module Aws::SageMaker
|
|
1367
1368
|
TrialSummaries = Shapes::ListShape.new(name: 'TrialSummaries')
|
1368
1369
|
TrialSummary = Shapes::StructureShape.new(name: 'TrialSummary')
|
1369
1370
|
TuningJobCompletionCriteria = Shapes::StructureShape.new(name: 'TuningJobCompletionCriteria')
|
1371
|
+
TuningJobStepMetaData = Shapes::StructureShape.new(name: 'TuningJobStepMetaData')
|
1370
1372
|
USD = Shapes::StructureShape.new(name: 'USD')
|
1371
1373
|
UiConfig = Shapes::StructureShape.new(name: 'UiConfig')
|
1372
1374
|
UiTemplate = Shapes::StructureShape.new(name: 'UiTemplate')
|
@@ -4016,6 +4018,10 @@ module Aws::SageMaker
|
|
4016
4018
|
|
4017
4019
|
LabelingJobSummaryList.member = Shapes::ShapeRef.new(shape: LabelingJobSummary)
|
4018
4020
|
|
4021
|
+
LambdaStepMetadata.add_member(:arn, Shapes::ShapeRef.new(shape: String256, location_name: "Arn"))
|
4022
|
+
LambdaStepMetadata.add_member(:output_parameters, Shapes::ShapeRef.new(shape: OutputParameterList, location_name: "OutputParameters"))
|
4023
|
+
LambdaStepMetadata.struct_class = Types::LambdaStepMetadata
|
4024
|
+
|
4019
4025
|
LineageEntityParameters.key = Shapes::ShapeRef.new(shape: StringParameterValue)
|
4020
4026
|
LineageEntityParameters.value = Shapes::ShapeRef.new(shape: StringParameterValue)
|
4021
4027
|
|
@@ -4865,6 +4871,7 @@ module Aws::SageMaker
|
|
4865
4871
|
ModelPackageContainerDefinition.add_member(:image_digest, Shapes::ShapeRef.new(shape: ImageDigest, location_name: "ImageDigest"))
|
4866
4872
|
ModelPackageContainerDefinition.add_member(:model_data_url, Shapes::ShapeRef.new(shape: Url, location_name: "ModelDataUrl"))
|
4867
4873
|
ModelPackageContainerDefinition.add_member(:product_id, Shapes::ShapeRef.new(shape: ProductId, location_name: "ProductId"))
|
4874
|
+
ModelPackageContainerDefinition.add_member(:environment, Shapes::ShapeRef.new(shape: EnvironmentMap, location_name: "Environment"))
|
4868
4875
|
ModelPackageContainerDefinition.struct_class = Types::ModelPackageContainerDefinition
|
4869
4876
|
|
4870
4877
|
ModelPackageContainerDefinitionList.member = Shapes::ShapeRef.new(shape: ModelPackageContainerDefinition)
|
@@ -5264,10 +5271,12 @@ module Aws::SageMaker
|
|
5264
5271
|
PipelineExecutionStepMetadata.add_member(:training_job, Shapes::ShapeRef.new(shape: TrainingJobStepMetadata, location_name: "TrainingJob"))
|
5265
5272
|
PipelineExecutionStepMetadata.add_member(:processing_job, Shapes::ShapeRef.new(shape: ProcessingJobStepMetadata, location_name: "ProcessingJob"))
|
5266
5273
|
PipelineExecutionStepMetadata.add_member(:transform_job, Shapes::ShapeRef.new(shape: TransformJobStepMetadata, location_name: "TransformJob"))
|
5274
|
+
PipelineExecutionStepMetadata.add_member(:tuning_job, Shapes::ShapeRef.new(shape: TuningJobStepMetaData, location_name: "TuningJob"))
|
5267
5275
|
PipelineExecutionStepMetadata.add_member(:model, Shapes::ShapeRef.new(shape: ModelStepMetadata, location_name: "Model"))
|
5268
5276
|
PipelineExecutionStepMetadata.add_member(:register_model, Shapes::ShapeRef.new(shape: RegisterModelStepMetadata, location_name: "RegisterModel"))
|
5269
5277
|
PipelineExecutionStepMetadata.add_member(:condition, Shapes::ShapeRef.new(shape: ConditionStepMetadata, location_name: "Condition"))
|
5270
5278
|
PipelineExecutionStepMetadata.add_member(:callback, Shapes::ShapeRef.new(shape: CallbackStepMetadata, location_name: "Callback"))
|
5279
|
+
PipelineExecutionStepMetadata.add_member(:lambda, Shapes::ShapeRef.new(shape: LambdaStepMetadata, location_name: "Lambda"))
|
5271
5280
|
PipelineExecutionStepMetadata.struct_class = Types::PipelineExecutionStepMetadata
|
5272
5281
|
|
5273
5282
|
PipelineExecutionSummary.add_member(:pipeline_execution_arn, Shapes::ShapeRef.new(shape: PipelineExecutionArn, location_name: "PipelineExecutionArn"))
|
@@ -6039,6 +6048,9 @@ module Aws::SageMaker
|
|
6039
6048
|
TuningJobCompletionCriteria.add_member(:target_objective_metric_value, Shapes::ShapeRef.new(shape: TargetObjectiveMetricValue, required: true, location_name: "TargetObjectiveMetricValue"))
|
6040
6049
|
TuningJobCompletionCriteria.struct_class = Types::TuningJobCompletionCriteria
|
6041
6050
|
|
6051
|
+
TuningJobStepMetaData.add_member(:arn, Shapes::ShapeRef.new(shape: HyperParameterTuningJobArn, location_name: "Arn"))
|
6052
|
+
TuningJobStepMetaData.struct_class = Types::TuningJobStepMetaData
|
6053
|
+
|
6042
6054
|
USD.add_member(:dollars, Shapes::ShapeRef.new(shape: Dollars, location_name: "Dollars"))
|
6043
6055
|
USD.add_member(:cents, Shapes::ShapeRef.new(shape: Cents, location_name: "Cents"))
|
6044
6056
|
USD.add_member(:tenth_fractions_of_a_cent, Shapes::ShapeRef.new(shape: TenthFractionsOfACent, location_name: "TenthFractionsOfACent"))
|
@@ -7004,6 +7016,7 @@ module Aws::SageMaker
|
|
7004
7016
|
o.http_request_uri = "/"
|
7005
7017
|
o.input = Shapes::ShapeRef.new(shape: DeleteModelPackageGroupInput)
|
7006
7018
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
7019
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
7007
7020
|
end)
|
7008
7021
|
|
7009
7022
|
api.add_operation(:delete_model_package_group_policy, Seahorse::Model::Operation.new.tap do |o|
|
@@ -7063,6 +7076,7 @@ module Aws::SageMaker
|
|
7063
7076
|
o.http_request_uri = "/"
|
7064
7077
|
o.input = Shapes::ShapeRef.new(shape: DeleteProjectInput)
|
7065
7078
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
7079
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
7066
7080
|
end)
|
7067
7081
|
|
7068
7082
|
api.add_operation(:delete_tags, Seahorse::Model::Operation.new.tap do |o|
|
@@ -172,9 +172,10 @@ module Aws::SageMaker
|
|
172
172
|
# @return [String]
|
173
173
|
#
|
174
174
|
# @!attribute [rw] tags
|
175
|
-
# An array of key-value pairs. You can use tags to categorize your
|
176
|
-
# resources in different ways, for example, by
|
177
|
-
# environment. For more information, see [Tagging
|
175
|
+
# An array of key-value pairs. You can use tags to categorize your
|
176
|
+
# Amazon Web Services resources in different ways, for example, by
|
177
|
+
# purpose, owner, or environment. For more information, see [Tagging
|
178
|
+
# Amazon Web Services Resources][1].
|
178
179
|
#
|
179
180
|
#
|
180
181
|
#
|
@@ -287,8 +288,8 @@ module Aws::SageMaker
|
|
287
288
|
# @!attribute [rw] algorithm_name
|
288
289
|
# The name of the algorithm resource to use for the training job. This
|
289
290
|
# must be an algorithm resource that you created or subscribe to on
|
290
|
-
#
|
291
|
-
# can't specify a value for `TrainingImage`.
|
291
|
+
# Amazon Web Services Marketplace. If you specify a value for this
|
292
|
+
# parameter, you can't specify a value for `TrainingImage`.
|
292
293
|
# @return [String]
|
293
294
|
#
|
294
295
|
# @!attribute [rw] training_input_mode
|
@@ -442,7 +443,7 @@ module Aws::SageMaker
|
|
442
443
|
# runs to validate your algorithm.
|
443
444
|
#
|
444
445
|
# The data provided in the validation profile is made available to your
|
445
|
-
# buyers on
|
446
|
+
# buyers on Amazon Web Services Marketplace.
|
446
447
|
#
|
447
448
|
# @note When making an API call, you may pass AlgorithmValidationProfile
|
448
449
|
# data as a hash:
|
@@ -1678,8 +1679,9 @@ module Aws::SageMaker
|
|
1678
1679
|
# @return [String]
|
1679
1680
|
#
|
1680
1681
|
# @!attribute [rw] kms_key_id
|
1681
|
-
# The
|
1682
|
-
# uses to encrypt data generated from
|
1682
|
+
# The Amazon Web Services Key Management Service (Amazon Web Services
|
1683
|
+
# KMS) key that Amazon SageMaker uses to encrypt data generated from
|
1684
|
+
# an Athena query execution.
|
1683
1685
|
# @return [String]
|
1684
1686
|
#
|
1685
1687
|
# @!attribute [rw] output_format
|
@@ -2145,7 +2147,7 @@ module Aws::SageMaker
|
|
2145
2147
|
# }
|
2146
2148
|
#
|
2147
2149
|
# @!attribute [rw] kms_key_id
|
2148
|
-
# The
|
2150
|
+
# The Amazon Web Services KMS encryption key ID.
|
2149
2151
|
# @return [String]
|
2150
2152
|
#
|
2151
2153
|
# @!attribute [rw] s3_output_path
|
@@ -2731,8 +2733,9 @@ module Aws::SageMaker
|
|
2731
2733
|
#
|
2732
2734
|
# @!attribute [rw] git_config
|
2733
2735
|
# Configuration details for the Git repository, including the URL
|
2734
|
-
# where it is located and the ARN of the
|
2735
|
-
# that contains the credentials used to access the
|
2736
|
+
# where it is located and the ARN of the Amazon Web Services Secrets
|
2737
|
+
# Manager secret that contains the credentials used to access the
|
2738
|
+
# repository.
|
2736
2739
|
# @return [Types::GitConfig]
|
2737
2740
|
#
|
2738
2741
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CodeRepositorySummary AWS API Documentation
|
@@ -3043,13 +3046,15 @@ module Aws::SageMaker
|
|
3043
3046
|
#
|
3044
3047
|
# </note>
|
3045
3048
|
#
|
3046
|
-
# If you provide a value for this parameter, Amazon SageMaker uses
|
3047
|
-
# Security Token Service to download model
|
3048
|
-
#
|
3049
|
-
#
|
3050
|
-
#
|
3051
|
-
#
|
3052
|
-
#
|
3049
|
+
# If you provide a value for this parameter, Amazon SageMaker uses
|
3050
|
+
# Amazon Web Services Security Token Service to download model
|
3051
|
+
# artifacts from the S3 path you provide. Amazon Web Services STS is
|
3052
|
+
# activated in your IAM user account by default. If you previously
|
3053
|
+
# deactivated Amazon Web Services STS for a region, you need to
|
3054
|
+
# reactivate Amazon Web Services STS for that region. For more
|
3055
|
+
# information, see [Activating and Deactivating Amazon Web Services
|
3056
|
+
# STS in an Amazon Web Services Region][2] in the *Amazon Web Services
|
3057
|
+
# Identity and Access Management User Guide*.
|
3053
3058
|
#
|
3054
3059
|
# If you use a built-in algorithm to create a model, Amazon SageMaker
|
3055
3060
|
# requires that you provide a S3 path to the model artifacts in
|
@@ -3297,8 +3302,8 @@ module Aws::SageMaker
|
|
3297
3302
|
# }
|
3298
3303
|
#
|
3299
3304
|
# @!attribute [rw] action_name
|
3300
|
-
# The name of the action. Must be unique to your account in an
|
3301
|
-
# Region.
|
3305
|
+
# The name of the action. Must be unique to your account in an Amazon
|
3306
|
+
# Web Services Region.
|
3302
3307
|
# @return [String]
|
3303
3308
|
#
|
3304
3309
|
# @!attribute [rw] source
|
@@ -3422,6 +3427,9 @@ module Aws::SageMaker
|
|
3422
3427
|
# image_digest: "ImageDigest",
|
3423
3428
|
# model_data_url: "Url",
|
3424
3429
|
# product_id: "ProductId",
|
3430
|
+
# environment: {
|
3431
|
+
# "EnvironmentKey" => "EnvironmentValue",
|
3432
|
+
# },
|
3425
3433
|
# },
|
3426
3434
|
# ],
|
3427
3435
|
# 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
|
@@ -3575,14 +3583,15 @@ module Aws::SageMaker
|
|
3575
3583
|
# @return [Types::AlgorithmValidationSpecification]
|
3576
3584
|
#
|
3577
3585
|
# @!attribute [rw] certify_for_marketplace
|
3578
|
-
# Whether to certify the algorithm so that it can be listed in
|
3579
|
-
# Marketplace.
|
3586
|
+
# Whether to certify the algorithm so that it can be listed in Amazon
|
3587
|
+
# Web Services Marketplace.
|
3580
3588
|
# @return [Boolean]
|
3581
3589
|
#
|
3582
3590
|
# @!attribute [rw] tags
|
3583
|
-
# An array of key-value pairs. You can use tags to categorize your
|
3584
|
-
# resources in different ways, for example, by
|
3585
|
-
# environment. For more information, see [Tagging
|
3591
|
+
# An array of key-value pairs. You can use tags to categorize your
|
3592
|
+
# Amazon Web Services resources in different ways, for example, by
|
3593
|
+
# purpose, owner, or environment. For more information, see [Tagging
|
3594
|
+
# Amazon Web Services Resources][1].
|
3586
3595
|
#
|
3587
3596
|
#
|
3588
3597
|
#
|
@@ -3692,7 +3701,7 @@ module Aws::SageMaker
|
|
3692
3701
|
# resource_spec: {
|
3693
3702
|
# sage_maker_image_arn: "ImageArn",
|
3694
3703
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
3695
|
-
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
3704
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
3696
3705
|
# },
|
3697
3706
|
# }
|
3698
3707
|
#
|
@@ -3781,8 +3790,8 @@ module Aws::SageMaker
|
|
3781
3790
|
# }
|
3782
3791
|
#
|
3783
3792
|
# @!attribute [rw] artifact_name
|
3784
|
-
# The name of the artifact. Must be unique to your account in an
|
3785
|
-
# Region.
|
3793
|
+
# The name of the artifact. Must be unique to your account in an
|
3794
|
+
# Amazon Web Services Region.
|
3786
3795
|
# @return [String]
|
3787
3796
|
#
|
3788
3797
|
# @!attribute [rw] source
|
@@ -4006,9 +4015,10 @@ module Aws::SageMaker
|
|
4006
4015
|
# @return [Types::GitConfig]
|
4007
4016
|
#
|
4008
4017
|
# @!attribute [rw] tags
|
4009
|
-
# An array of key-value pairs. You can use tags to categorize your
|
4010
|
-
# resources in different ways, for example, by
|
4011
|
-
# environment. For more information, see [Tagging
|
4018
|
+
# An array of key-value pairs. You can use tags to categorize your
|
4019
|
+
# Amazon Web Services resources in different ways, for example, by
|
4020
|
+
# purpose, owner, or environment. For more information, see [Tagging
|
4021
|
+
# Amazon Web Services Resources][1].
|
4012
4022
|
#
|
4013
4023
|
#
|
4014
4024
|
#
|
@@ -4078,7 +4088,8 @@ module Aws::SageMaker
|
|
4078
4088
|
#
|
4079
4089
|
# @!attribute [rw] compilation_job_name
|
4080
4090
|
# A name for the model compilation job. The name must be unique within
|
4081
|
-
# the
|
4091
|
+
# the Amazon Web Services Region and within your Amazon Web Services
|
4092
|
+
# account.
|
4082
4093
|
# @return [String]
|
4083
4094
|
#
|
4084
4095
|
# @!attribute [rw] role_arn
|
@@ -4134,9 +4145,10 @@ module Aws::SageMaker
|
|
4134
4145
|
# @return [Types::StoppingCondition]
|
4135
4146
|
#
|
4136
4147
|
# @!attribute [rw] tags
|
4137
|
-
# An array of key-value pairs. You can use tags to categorize your
|
4138
|
-
# resources in different ways, for example, by
|
4139
|
-
# environment. For more information, see [Tagging
|
4148
|
+
# An array of key-value pairs. You can use tags to categorize your
|
4149
|
+
# Amazon Web Services resources in different ways, for example, by
|
4150
|
+
# purpose, owner, or environment. For more information, see [Tagging
|
4151
|
+
# Amazon Web Services Resources][1].
|
4140
4152
|
#
|
4141
4153
|
#
|
4142
4154
|
#
|
@@ -4200,8 +4212,8 @@ module Aws::SageMaker
|
|
4200
4212
|
# }
|
4201
4213
|
#
|
4202
4214
|
# @!attribute [rw] context_name
|
4203
|
-
# The name of the context. Must be unique to your account in an
|
4204
|
-
# Region.
|
4215
|
+
# The name of the context. Must be unique to your account in an Amazon
|
4216
|
+
# Web Services Region.
|
4205
4217
|
# @return [String]
|
4206
4218
|
#
|
4207
4219
|
# @!attribute [rw] source
|
@@ -4368,8 +4380,8 @@ module Aws::SageMaker
|
|
4368
4380
|
#
|
4369
4381
|
# @!attribute [rw] tags
|
4370
4382
|
# (Optional) An array of key-value pairs. For more information, see
|
4371
|
-
# [Using Cost Allocation Tags][1] in the *
|
4372
|
-
# Management User Guide*.
|
4383
|
+
# [Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
|
4384
|
+
# and Cost Management User Guide*.
|
4373
4385
|
#
|
4374
4386
|
#
|
4375
4387
|
#
|
@@ -4432,8 +4444,8 @@ module Aws::SageMaker
|
|
4432
4444
|
# @return [String]
|
4433
4445
|
#
|
4434
4446
|
# @!attribute [rw] role_arn
|
4435
|
-
# The Amazon Resource Name (ARN) that has access to
|
4436
|
-
# Things (IoT).
|
4447
|
+
# The Amazon Resource Name (ARN) that has access to Amazon Web
|
4448
|
+
# Services Internet of Things (IoT).
|
4437
4449
|
# @return [String]
|
4438
4450
|
#
|
4439
4451
|
# @!attribute [rw] description
|
@@ -4450,9 +4462,9 @@ module Aws::SageMaker
|
|
4450
4462
|
# @return [Array<Types::Tag>]
|
4451
4463
|
#
|
4452
4464
|
# @!attribute [rw] enable_iot_role_alias
|
4453
|
-
# Whether to create an
|
4454
|
-
# creation. The name of the role alias generated will
|
4455
|
-
# pattern: "SageMakerEdge-\\\{DeviceFleetName\\}".
|
4465
|
+
# Whether to create an Amazon Web Services IoT Role Alias during
|
4466
|
+
# device fleet creation. The name of the role alias generated will
|
4467
|
+
# match this pattern: "SageMakerEdge-\\\{DeviceFleetName\\}".
|
4456
4468
|
#
|
4457
4469
|
# For example, if your device fleet is called "demo-fleet", the name
|
4458
4470
|
# of the role alias will be "SageMakerEdge-demo-fleet".
|
@@ -4489,14 +4501,14 @@ module Aws::SageMaker
|
|
4489
4501
|
# default_resource_spec: {
|
4490
4502
|
# sage_maker_image_arn: "ImageArn",
|
4491
4503
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
4492
|
-
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
4504
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
4493
4505
|
# },
|
4494
4506
|
# },
|
4495
4507
|
# kernel_gateway_app_settings: {
|
4496
4508
|
# default_resource_spec: {
|
4497
4509
|
# sage_maker_image_arn: "ImageArn",
|
4498
4510
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
4499
|
-
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
4511
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
4500
4512
|
# },
|
4501
4513
|
# custom_images: [
|
4502
4514
|
# {
|
@@ -4510,7 +4522,7 @@ module Aws::SageMaker
|
|
4510
4522
|
# default_resource_spec: {
|
4511
4523
|
# sage_maker_image_arn: "ImageArn",
|
4512
4524
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
4513
|
-
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
4525
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
4514
4526
|
# },
|
4515
4527
|
# },
|
4516
4528
|
# },
|
@@ -4580,9 +4592,10 @@ module Aws::SageMaker
|
|
4580
4592
|
# @return [String]
|
4581
4593
|
#
|
4582
4594
|
# @!attribute [rw] kms_key_id
|
4583
|
-
# SageMaker uses
|
4584
|
-
# domain with an
|
4585
|
-
# more control, specify a customer
|
4595
|
+
# SageMaker uses Amazon Web Services KMS to encrypt the EFS volume
|
4596
|
+
# attached to the domain with an Amazon Web Services managed customer
|
4597
|
+
# master key (CMK) by default. For more control, specify a customer
|
4598
|
+
# managed CMK.
|
4586
4599
|
# @return [String]
|
4587
4600
|
#
|
4588
4601
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateDomainRequest AWS API Documentation
|
@@ -4751,9 +4764,10 @@ module Aws::SageMaker
|
|
4751
4764
|
# @return [Types::DataCaptureConfig]
|
4752
4765
|
#
|
4753
4766
|
# @!attribute [rw] tags
|
4754
|
-
# An array of key-value pairs. You can use tags to categorize your
|
4755
|
-
# resources in different ways, for example, by
|
4756
|
-
# environment. For more information, see [Tagging
|
4767
|
+
# An array of key-value pairs. You can use tags to categorize your
|
4768
|
+
# Amazon Web Services resources in different ways, for example, by
|
4769
|
+
# purpose, owner, or environment. For more information, see [Tagging
|
4770
|
+
# Amazon Web Services Resources][1].
|
4757
4771
|
#
|
4758
4772
|
#
|
4759
4773
|
#
|
@@ -4761,9 +4775,10 @@ module Aws::SageMaker
|
|
4761
4775
|
# @return [Array<Types::Tag>]
|
4762
4776
|
#
|
4763
4777
|
# @!attribute [rw] kms_key_id
|
4764
|
-
# The Amazon Resource Name (ARN) of a
|
4765
|
-
# that Amazon SageMaker uses to encrypt data on
|
4766
|
-
# attached to the ML compute instance that hosts
|
4778
|
+
# The Amazon Resource Name (ARN) of a Amazon Web Services Key
|
4779
|
+
# Management Service key that Amazon SageMaker uses to encrypt data on
|
4780
|
+
# the storage volume attached to the ML compute instance that hosts
|
4781
|
+
# the endpoint.
|
4767
4782
|
#
|
4768
4783
|
# The KmsKeyId can be any of the following formats:
|
4769
4784
|
#
|
@@ -4779,8 +4794,8 @@ module Aws::SageMaker
|
|
4779
4794
|
#
|
4780
4795
|
# The KMS key policy must grant permission to the IAM role that you
|
4781
4796
|
# specify in your `CreateEndpoint`, `UpdateEndpoint` requests. For
|
4782
|
-
# more information, refer to the
|
4783
|
-
# Using Key Policies in
|
4797
|
+
# more information, refer to the Amazon Web Services Key Management
|
4798
|
+
# Service section[ Using Key Policies in Amazon Web Services KMS ][1]
|
4784
4799
|
#
|
4785
4800
|
# <note markdown="1"> Certain Nitro-based instances include local storage, dependent on
|
4786
4801
|
# the instance type. Local storage volumes are encrypted using a
|
@@ -4846,9 +4861,10 @@ module Aws::SageMaker
|
|
4846
4861
|
# }
|
4847
4862
|
#
|
4848
4863
|
# @!attribute [rw] endpoint_name
|
4849
|
-
# The name of the endpoint.The name must be unique within an
|
4850
|
-
# Region in your
|
4851
|
-
# `CreateEndpoint`, but the case is preserved and
|
4864
|
+
# The name of the endpoint.The name must be unique within an Amazon
|
4865
|
+
# Web Services Region in your Amazon Web Services account. The name is
|
4866
|
+
# case-insensitive in `CreateEndpoint`, but the case is preserved and
|
4867
|
+
# must be matched in .
|
4852
4868
|
# @return [String]
|
4853
4869
|
#
|
4854
4870
|
# @!attribute [rw] endpoint_config_name
|
@@ -4857,9 +4873,10 @@ module Aws::SageMaker
|
|
4857
4873
|
# @return [String]
|
4858
4874
|
#
|
4859
4875
|
# @!attribute [rw] tags
|
4860
|
-
# An array of key-value pairs. You can use tags to categorize your
|
4861
|
-
# resources in different ways, for example, by
|
4862
|
-
# environment. For more information, see [Tagging
|
4876
|
+
# An array of key-value pairs. You can use tags to categorize your
|
4877
|
+
# Amazon Web Services resources in different ways, for example, by
|
4878
|
+
# purpose, owner, or environment. For more information, see [Tagging
|
4879
|
+
# Amazon Web Services Resources][1].
|
4863
4880
|
#
|
4864
4881
|
#
|
4865
4882
|
#
|
@@ -4904,8 +4921,8 @@ module Aws::SageMaker
|
|
4904
4921
|
# }
|
4905
4922
|
#
|
4906
4923
|
# @!attribute [rw] experiment_name
|
4907
|
-
# The name of the experiment. The name must be unique in your
|
4908
|
-
# account and is not case-sensitive.
|
4924
|
+
# The name of the experiment. The name must be unique in your Amazon
|
4925
|
+
# Web Services account and is not case-sensitive.
|
4909
4926
|
# @return [String]
|
4910
4927
|
#
|
4911
4928
|
# @!attribute [rw] display_name
|
@@ -4990,7 +5007,8 @@ module Aws::SageMaker
|
|
4990
5007
|
#
|
4991
5008
|
# @!attribute [rw] feature_group_name
|
4992
5009
|
# The name of the `FeatureGroup`. The name must be unique within an
|
4993
|
-
#
|
5010
|
+
# Amazon Web Services Region in an Amazon Web Services account. The
|
5011
|
+
# name:
|
4994
5012
|
#
|
4995
5013
|
# * Must start and end with an alphanumeric character.
|
4996
5014
|
#
|
@@ -5057,8 +5075,8 @@ module Aws::SageMaker
|
|
5057
5075
|
# the `EnableOnlineStore` flag in `OnlineStoreConfig`; the default
|
5058
5076
|
# value is `False`.
|
5059
5077
|
#
|
5060
|
-
# You can also include an
|
5061
|
-
# encryption of the `OnlineStore`.
|
5078
|
+
# You can also include an Amazon Web Services KMS key ID (`KMSKeyId`)
|
5079
|
+
# for at-rest encryption of the `OnlineStore`.
|
5062
5080
|
# @return [Types::OnlineStoreConfig]
|
5063
5081
|
#
|
5064
5082
|
# @!attribute [rw] offline_store_config
|
@@ -5068,7 +5086,8 @@ module Aws::SageMaker
|
|
5068
5086
|
# * The Amazon Simple Storage Service (Amazon S3) location of an
|
5069
5087
|
# `OfflineStore`.
|
5070
5088
|
#
|
5071
|
-
# * A configuration for an
|
5089
|
+
# * A configuration for an Amazon Web Services Glue or Amazon Web
|
5090
|
+
# Services Hive data cataolgue.
|
5072
5091
|
#
|
5073
5092
|
# * An KMS encryption key to encrypt the Amazon S3 location used for
|
5074
5093
|
# `OfflineStore`.
|
@@ -5543,9 +5562,10 @@ module Aws::SageMaker
|
|
5543
5562
|
# @!attribute [rw] hyper_parameter_tuning_job_name
|
5544
5563
|
# The name of the tuning job. This name is the prefix for the names of
|
5545
5564
|
# all training jobs that this tuning job launches. The name must be
|
5546
|
-
# unique within the same
|
5547
|
-
# have 1 to 32 characters. Valid
|
5548
|
-
# = @ \_ % - (hyphen). The name
|
5565
|
+
# unique within the same Amazon Web Services account and Amazon Web
|
5566
|
+
# Services Region. The name must have 1 to 32 characters. Valid
|
5567
|
+
# characters are a-z, A-Z, 0-9, and : + = @ \_ % - (hyphen). The name
|
5568
|
+
# is not case sensitive.
|
5549
5569
|
# @return [String]
|
5550
5570
|
#
|
5551
5571
|
# @!attribute [rw] hyper_parameter_tuning_job_config
|
@@ -5596,9 +5616,10 @@ module Aws::SageMaker
|
|
5596
5616
|
# @return [Types::HyperParameterTuningJobWarmStartConfig]
|
5597
5617
|
#
|
5598
5618
|
# @!attribute [rw] tags
|
5599
|
-
# An array of key-value pairs. You can use tags to categorize your
|
5600
|
-
# resources in different ways, for example, by
|
5601
|
-
# environment. For more information, see [Tagging
|
5619
|
+
# An array of key-value pairs. You can use tags to categorize your
|
5620
|
+
# Amazon Web Services resources in different ways, for example, by
|
5621
|
+
# purpose, owner, or environment. For more information, see [Tagging
|
5622
|
+
# Amazon Web Services Resources][1].
|
5602
5623
|
#
|
5603
5624
|
# Tags that you specify for the tuning job are also added to all
|
5604
5625
|
# training jobs that the tuning job launches.
|
@@ -5715,8 +5736,9 @@ module Aws::SageMaker
|
|
5715
5736
|
# @return [String]
|
5716
5737
|
#
|
5717
5738
|
# @!attribute [rw] client_token
|
5718
|
-
# A unique ID. If not specified, the
|
5719
|
-
# SDK for Python (Boto3), add a
|
5739
|
+
# A unique ID. If not specified, the Amazon Web Services CLI and
|
5740
|
+
# Amazon Web Services SDKs, such as the SDK for Python (Boto3), add a
|
5741
|
+
# unique value to the call.
|
5720
5742
|
#
|
5721
5743
|
# **A suitable default value is auto-generated.** You should normally
|
5722
5744
|
# not need to pass this option.
|
@@ -5821,9 +5843,9 @@ module Aws::SageMaker
|
|
5821
5843
|
# @!attribute [rw] labeling_job_name
|
5822
5844
|
# The name of the labeling job. This name is used to identify the job
|
5823
5845
|
# in a list of labeling jobs. Labeling job names must be unique within
|
5824
|
-
# an
|
5825
|
-
# For example, Example-job and example-job are
|
5826
|
-
# labeling job name by Ground Truth.
|
5846
|
+
# an Amazon Web Services account and region. `LabelingJobName` is not
|
5847
|
+
# case sensitive. For example, Example-job and example-job are
|
5848
|
+
# considered the same labeling job name by Ground Truth.
|
5827
5849
|
# @return [String]
|
5828
5850
|
#
|
5829
5851
|
# @!attribute [rw] label_attribute_name
|
@@ -5903,8 +5925,9 @@ module Aws::SageMaker
|
|
5903
5925
|
# @return [Types::LabelingJobInputConfig]
|
5904
5926
|
#
|
5905
5927
|
# @!attribute [rw] output_config
|
5906
|
-
# The location of the output data and the
|
5907
|
-
# key ID for the key used to encrypt the output
|
5928
|
+
# The location of the output data and the Amazon Web Services Key
|
5929
|
+
# Management Service key ID for the key used to encrypt the output
|
5930
|
+
# data, if any.
|
5908
5931
|
# @return [Types::LabelingJobOutputConfig]
|
5909
5932
|
#
|
5910
5933
|
# @!attribute [rw] role_arn
|
@@ -5981,8 +6004,8 @@ module Aws::SageMaker
|
|
5981
6004
|
#
|
5982
6005
|
# @!attribute [rw] tags
|
5983
6006
|
# An array of key/value pairs. For more information, see [Using Cost
|
5984
|
-
# Allocation Tags][1] in the *
|
5985
|
-
# Guide*.
|
6007
|
+
# Allocation Tags][1] in the *Amazon Web Services Billing and Cost
|
6008
|
+
# Management User Guide*.
|
5986
6009
|
#
|
5987
6010
|
#
|
5988
6011
|
#
|
@@ -6096,7 +6119,7 @@ module Aws::SageMaker
|
|
6096
6119
|
#
|
6097
6120
|
# @!attribute [rw] job_definition_name
|
6098
6121
|
# The name of the bias job definition. The name must be unique within
|
6099
|
-
# an
|
6122
|
+
# an Amazon Web Services Region in the Amazon Web Services account.
|
6100
6123
|
# @return [String]
|
6101
6124
|
#
|
6102
6125
|
# @!attribute [rw] model_bias_baseline_config
|
@@ -6136,8 +6159,8 @@ module Aws::SageMaker
|
|
6136
6159
|
#
|
6137
6160
|
# @!attribute [rw] tags
|
6138
6161
|
# (Optional) An array of key-value pairs. For more information, see
|
6139
|
-
# [Using Cost Allocation Tags][1] in the *
|
6140
|
-
# Management User Guide*.
|
6162
|
+
# [Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
|
6163
|
+
# and Cost Management User Guide*.
|
6141
6164
|
#
|
6142
6165
|
#
|
6143
6166
|
#
|
@@ -6247,7 +6270,8 @@ module Aws::SageMaker
|
|
6247
6270
|
#
|
6248
6271
|
# @!attribute [rw] job_definition_name
|
6249
6272
|
# The name of the model explainability job definition. The name must
|
6250
|
-
# be unique within an
|
6273
|
+
# be unique within an Amazon Web Services Region in the Amazon Web
|
6274
|
+
# Services account.
|
6251
6275
|
# @return [String]
|
6252
6276
|
#
|
6253
6277
|
# @!attribute [rw] model_explainability_baseline_config
|
@@ -6287,8 +6311,8 @@ module Aws::SageMaker
|
|
6287
6311
|
#
|
6288
6312
|
# @!attribute [rw] tags
|
6289
6313
|
# (Optional) An array of key-value pairs. For more information, see
|
6290
|
-
# [Using Cost Allocation Tags][1] in the *
|
6291
|
-
# Management User Guide*.
|
6314
|
+
# [Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
|
6315
|
+
# and Cost Management User Guide*.
|
6292
6316
|
#
|
6293
6317
|
#
|
6294
6318
|
#
|
@@ -6423,9 +6447,10 @@ module Aws::SageMaker
|
|
6423
6447
|
# @return [String]
|
6424
6448
|
#
|
6425
6449
|
# @!attribute [rw] tags
|
6426
|
-
# An array of key-value pairs. You can use tags to categorize your
|
6427
|
-
# resources in different ways, for example, by
|
6428
|
-
# environment. For more information, see [Tagging
|
6450
|
+
# An array of key-value pairs. You can use tags to categorize your
|
6451
|
+
# Amazon Web Services resources in different ways, for example, by
|
6452
|
+
# purpose, owner, or environment. For more information, see [Tagging
|
6453
|
+
# Amazon Web Services Resources][1].
|
6429
6454
|
#
|
6430
6455
|
#
|
6431
6456
|
#
|
@@ -6502,8 +6527,8 @@ module Aws::SageMaker
|
|
6502
6527
|
#
|
6503
6528
|
# @!attribute [rw] tags
|
6504
6529
|
# A list of key value pairs associated with the model group. For more
|
6505
|
-
# information, see [Tagging
|
6506
|
-
# Reference Guide*.
|
6530
|
+
# information, see [Tagging Amazon Web Services resources][1] in the
|
6531
|
+
# *Amazon Web Services General Reference Guide*.
|
6507
6532
|
#
|
6508
6533
|
#
|
6509
6534
|
#
|
@@ -6547,6 +6572,9 @@ module Aws::SageMaker
|
|
6547
6572
|
# image_digest: "ImageDigest",
|
6548
6573
|
# model_data_url: "Url",
|
6549
6574
|
# product_id: "ProductId",
|
6575
|
+
# environment: {
|
6576
|
+
# "EnvironmentKey" => "EnvironmentValue",
|
6577
|
+
# },
|
6550
6578
|
# },
|
6551
6579
|
# ],
|
6552
6580
|
# 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
|
@@ -6701,7 +6729,8 @@ module Aws::SageMaker
|
|
6701
6729
|
# @return [Types::SourceAlgorithmSpecification]
|
6702
6730
|
#
|
6703
6731
|
# @!attribute [rw] certify_for_marketplace
|
6704
|
-
# Whether to certify the model package for listing on
|
6732
|
+
# Whether to certify the model package for listing on Amazon Web
|
6733
|
+
# Services Marketplace.
|
6705
6734
|
#
|
6706
6735
|
# This parameter is optional for unversioned models, and does not
|
6707
6736
|
# apply to versioned models.
|
@@ -6709,8 +6738,8 @@ module Aws::SageMaker
|
|
6709
6738
|
#
|
6710
6739
|
# @!attribute [rw] tags
|
6711
6740
|
# A list of key value pairs associated with the model. For more
|
6712
|
-
# information, see [Tagging
|
6713
|
-
# Reference Guide*.
|
6741
|
+
# information, see [Tagging Amazon Web Services resources][1] in the
|
6742
|
+
# *Amazon Web Services General Reference Guide*.
|
6714
6743
|
#
|
6715
6744
|
#
|
6716
6745
|
#
|
@@ -6895,8 +6924,8 @@ module Aws::SageMaker
|
|
6895
6924
|
#
|
6896
6925
|
# @!attribute [rw] tags
|
6897
6926
|
# (Optional) An array of key-value pairs. For more information, see
|
6898
|
-
# [Using Cost Allocation Tags][1] in the *
|
6899
|
-
# Management User Guide*.
|
6927
|
+
# [Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
|
6928
|
+
# and Cost Management User Guide*.
|
6900
6929
|
#
|
6901
6930
|
#
|
6902
6931
|
#
|
@@ -7023,7 +7052,7 @@ module Aws::SageMaker
|
|
7023
7052
|
#
|
7024
7053
|
# @!attribute [rw] monitoring_schedule_name
|
7025
7054
|
# The name of the monitoring schedule. The name must be unique within
|
7026
|
-
# an
|
7055
|
+
# an Amazon Web Services Region within an Amazon Web Services account.
|
7027
7056
|
# @return [String]
|
7028
7057
|
#
|
7029
7058
|
# @!attribute [rw] monitoring_schedule_config
|
@@ -7035,7 +7064,7 @@ module Aws::SageMaker
|
|
7035
7064
|
# (Optional) An array of key-value pairs. For more information, see
|
7036
7065
|
# [Using Cost Allocation Tags](
|
7037
7066
|
# https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-whatURL)
|
7038
|
-
# in the *
|
7067
|
+
# in the *Amazon Web Services Billing and Cost Management User Guide*.
|
7039
7068
|
# @return [Array<Types::Tag>]
|
7040
7069
|
#
|
7041
7070
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateMonitoringScheduleRequest AWS API Documentation
|
@@ -7104,11 +7133,11 @@ module Aws::SageMaker
|
|
7104
7133
|
# @return [Array<String>]
|
7105
7134
|
#
|
7106
7135
|
# @!attribute [rw] role_arn
|
7107
|
-
# When you send any requests to
|
7108
|
-
# instance, Amazon SageMaker assumes this role to perform
|
7109
|
-
# your behalf. You must grant this role necessary permissions
|
7110
|
-
# Amazon SageMaker can perform these tasks. The policy must allow
|
7111
|
-
# Amazon SageMaker service principal (sagemaker.amazonaws.com)
|
7136
|
+
# When you send any requests to Amazon Web Services resources from the
|
7137
|
+
# notebook instance, Amazon SageMaker assumes this role to perform
|
7138
|
+
# tasks on your behalf. You must grant this role necessary permissions
|
7139
|
+
# so Amazon SageMaker can perform these tasks. The policy must allow
|
7140
|
+
# the Amazon SageMaker service principal (sagemaker.amazonaws.com)
|
7112
7141
|
# permissions to assume this role. For more information, see [Amazon
|
7113
7142
|
# SageMaker Roles][1].
|
7114
7143
|
#
|
@@ -7123,11 +7152,12 @@ module Aws::SageMaker
|
|
7123
7152
|
# @return [String]
|
7124
7153
|
#
|
7125
7154
|
# @!attribute [rw] kms_key_id
|
7126
|
-
# The Amazon Resource Name (ARN) of a
|
7127
|
-
# that Amazon SageMaker uses to encrypt data on
|
7128
|
-
# attached to your notebook instance. The KMS key
|
7129
|
-
# enabled. For information, see [Enabling and
|
7130
|
-
# the *
|
7155
|
+
# The Amazon Resource Name (ARN) of a Amazon Web Services Key
|
7156
|
+
# Management Service key that Amazon SageMaker uses to encrypt data on
|
7157
|
+
# the storage volume attached to your notebook instance. The KMS key
|
7158
|
+
# you provide must be enabled. For information, see [Enabling and
|
7159
|
+
# Disabling Keys][1] in the *Amazon Web Services Key Management
|
7160
|
+
# Service Developer Guide*.
|
7131
7161
|
#
|
7132
7162
|
#
|
7133
7163
|
#
|
@@ -7135,9 +7165,10 @@ module Aws::SageMaker
|
|
7135
7165
|
# @return [String]
|
7136
7166
|
#
|
7137
7167
|
# @!attribute [rw] tags
|
7138
|
-
# An array of key-value pairs. You can use tags to categorize your
|
7139
|
-
# resources in different ways, for example, by
|
7140
|
-
# environment. For more information, see [Tagging
|
7168
|
+
# An array of key-value pairs. You can use tags to categorize your
|
7169
|
+
# Amazon Web Services resources in different ways, for example, by
|
7170
|
+
# purpose, owner, or environment. For more information, see [Tagging
|
7171
|
+
# Amazon Web Services Resources][1].
|
7141
7172
|
#
|
7142
7173
|
#
|
7143
7174
|
#
|
@@ -7190,10 +7221,11 @@ module Aws::SageMaker
|
|
7190
7221
|
# A Git repository to associate with the notebook instance as its
|
7191
7222
|
# default code repository. This can be either the name of a Git
|
7192
7223
|
# repository stored as a resource in your account, or the URL of a Git
|
7193
|
-
# repository in [
|
7194
|
-
# When you open a notebook instance, it opens in the
|
7195
|
-
# contains this repository. For more information, see
|
7196
|
-
# Repositories with Amazon SageMaker Notebook
|
7224
|
+
# repository in [Amazon Web Services CodeCommit][1] or in any other
|
7225
|
+
# Git repository. When you open a notebook instance, it opens in the
|
7226
|
+
# directory that contains this repository. For more information, see
|
7227
|
+
# [Associating Git Repositories with Amazon SageMaker Notebook
|
7228
|
+
# Instances][2].
|
7197
7229
|
#
|
7198
7230
|
#
|
7199
7231
|
#
|
@@ -7205,10 +7237,11 @@ module Aws::SageMaker
|
|
7205
7237
|
# An array of up to three Git repositories to associate with the
|
7206
7238
|
# notebook instance. These can be either the names of Git repositories
|
7207
7239
|
# stored as resources in your account, or the URL of Git repositories
|
7208
|
-
# in [
|
7209
|
-
# repositories are cloned at the same level as the
|
7210
|
-
# of your notebook instance. For more information,
|
7211
|
-
# Git Repositories with Amazon SageMaker Notebook
|
7240
|
+
# in [Amazon Web Services CodeCommit][1] or in any other Git
|
7241
|
+
# repository. These repositories are cloned at the same level as the
|
7242
|
+
# default repository of your notebook instance. For more information,
|
7243
|
+
# see [Associating Git Repositories with Amazon SageMaker Notebook
|
7244
|
+
# Instances][2].
|
7212
7245
|
#
|
7213
7246
|
#
|
7214
7247
|
#
|
@@ -7595,7 +7628,7 @@ module Aws::SageMaker
|
|
7595
7628
|
#
|
7596
7629
|
# @!attribute [rw] processing_job_name
|
7597
7630
|
# The name of the processing job. The name must be unique within an
|
7598
|
-
#
|
7631
|
+
# Amazon Web Services Region in the Amazon Web Services account.
|
7599
7632
|
# @return [String]
|
7600
7633
|
#
|
7601
7634
|
# @!attribute [rw] processing_resources
|
@@ -7632,8 +7665,8 @@ module Aws::SageMaker
|
|
7632
7665
|
#
|
7633
7666
|
# @!attribute [rw] tags
|
7634
7667
|
# (Optional) An array of key-value pairs. For more information, see
|
7635
|
-
# [Using Cost Allocation Tags][1] in the *
|
7636
|
-
# Management User Guide*.
|
7668
|
+
# [Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
|
7669
|
+
# and Cost Management User Guide*.
|
7637
7670
|
#
|
7638
7671
|
#
|
7639
7672
|
#
|
@@ -7716,7 +7749,8 @@ module Aws::SageMaker
|
|
7716
7749
|
#
|
7717
7750
|
# @!attribute [rw] service_catalog_provisioning_details
|
7718
7751
|
# The product ID and provisioning artifact ID to provision a service
|
7719
|
-
# catalog. For information, see [What is
|
7752
|
+
# catalog. For information, see [What is Amazon Web Services Service
|
7753
|
+
# Catalog][1].
|
7720
7754
|
#
|
7721
7755
|
#
|
7722
7756
|
#
|
@@ -7725,8 +7759,9 @@ module Aws::SageMaker
|
|
7725
7759
|
#
|
7726
7760
|
# @!attribute [rw] tags
|
7727
7761
|
# An array of key-value pairs that you want to use to organize and
|
7728
|
-
# track your
|
7729
|
-
#
|
7762
|
+
# track your Amazon Web Services resource costs. For more information,
|
7763
|
+
# see [Tagging Amazon Web Services resources][1] in the *Amazon Web
|
7764
|
+
# Services General Reference Guide*.
|
7730
7765
|
#
|
7731
7766
|
#
|
7732
7767
|
#
|
@@ -7905,8 +7940,8 @@ module Aws::SageMaker
|
|
7905
7940
|
# }
|
7906
7941
|
#
|
7907
7942
|
# @!attribute [rw] training_job_name
|
7908
|
-
# The name of the training job. The name must be unique within an
|
7909
|
-
# Region in an
|
7943
|
+
# The name of the training job. The name must be unique within an
|
7944
|
+
# Amazon Web Services Region in an Amazon Web Services account.
|
7910
7945
|
# @return [String]
|
7911
7946
|
#
|
7912
7947
|
# @!attribute [rw] hyper_parameters
|
@@ -8020,9 +8055,10 @@ module Aws::SageMaker
|
|
8020
8055
|
# @return [Types::StoppingCondition]
|
8021
8056
|
#
|
8022
8057
|
# @!attribute [rw] tags
|
8023
|
-
# An array of key-value pairs. You can use tags to categorize your
|
8024
|
-
# resources in different ways, for example, by
|
8025
|
-
# environment. For more information, see [Tagging
|
8058
|
+
# An array of key-value pairs. You can use tags to categorize your
|
8059
|
+
# Amazon Web Services resources in different ways, for example, by
|
8060
|
+
# purpose, owner, or environment. For more information, see [Tagging
|
8061
|
+
# Amazon Web Services Resources][1].
|
8026
8062
|
#
|
8027
8063
|
#
|
8028
8064
|
#
|
@@ -8223,14 +8259,15 @@ module Aws::SageMaker
|
|
8223
8259
|
# }
|
8224
8260
|
#
|
8225
8261
|
# @!attribute [rw] transform_job_name
|
8226
|
-
# The name of the transform job. The name must be unique within an
|
8227
|
-
# Region in an
|
8262
|
+
# The name of the transform job. The name must be unique within an
|
8263
|
+
# Amazon Web Services Region in an Amazon Web Services account.
|
8228
8264
|
# @return [String]
|
8229
8265
|
#
|
8230
8266
|
# @!attribute [rw] model_name
|
8231
8267
|
# The name of the model that you want to use for the transform job.
|
8232
8268
|
# `ModelName` must be the name of an existing Amazon SageMaker model
|
8233
|
-
# within an
|
8269
|
+
# within an Amazon Web Services Region in an Amazon Web Services
|
8270
|
+
# account.
|
8234
8271
|
# @return [String]
|
8235
8272
|
#
|
8236
8273
|
# @!attribute [rw] max_concurrent_transforms
|
@@ -8322,8 +8359,8 @@ module Aws::SageMaker
|
|
8322
8359
|
#
|
8323
8360
|
# @!attribute [rw] tags
|
8324
8361
|
# (Optional) An array of key-value pairs. For more information, see
|
8325
|
-
# [Using Cost Allocation Tags][1] in the *
|
8326
|
-
# Management User Guide*.
|
8362
|
+
# [Using Cost Allocation Tags][1] in the *Amazon Web Services Billing
|
8363
|
+
# and Cost Management User Guide*.
|
8327
8364
|
#
|
8328
8365
|
#
|
8329
8366
|
#
|
@@ -8418,8 +8455,8 @@ module Aws::SageMaker
|
|
8418
8455
|
# }
|
8419
8456
|
#
|
8420
8457
|
# @!attribute [rw] trial_component_name
|
8421
|
-
# The name of the component. The name must be unique in your
|
8422
|
-
# account and is not case-sensitive.
|
8458
|
+
# The name of the component. The name must be unique in your Amazon
|
8459
|
+
# Web Services account and is not case-sensitive.
|
8423
8460
|
# @return [String]
|
8424
8461
|
#
|
8425
8462
|
# @!attribute [rw] display_name
|
@@ -8522,8 +8559,8 @@ module Aws::SageMaker
|
|
8522
8559
|
# }
|
8523
8560
|
#
|
8524
8561
|
# @!attribute [rw] trial_name
|
8525
|
-
# The name of the trial. The name must be unique in your
|
8526
|
-
# and is not case-sensitive.
|
8562
|
+
# The name of the trial. The name must be unique in your Amazon Web
|
8563
|
+
# Services account and is not case-sensitive.
|
8527
8564
|
# @return [String]
|
8528
8565
|
#
|
8529
8566
|
# @!attribute [rw] display_name
|
@@ -8595,14 +8632,14 @@ module Aws::SageMaker
|
|
8595
8632
|
# default_resource_spec: {
|
8596
8633
|
# sage_maker_image_arn: "ImageArn",
|
8597
8634
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
8598
|
-
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
8635
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
8599
8636
|
# },
|
8600
8637
|
# },
|
8601
8638
|
# kernel_gateway_app_settings: {
|
8602
8639
|
# default_resource_spec: {
|
8603
8640
|
# sage_maker_image_arn: "ImageArn",
|
8604
8641
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
8605
|
-
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
8642
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
8606
8643
|
# },
|
8607
8644
|
# custom_images: [
|
8608
8645
|
# {
|
@@ -8616,7 +8653,7 @@ module Aws::SageMaker
|
|
8616
8653
|
# default_resource_spec: {
|
8617
8654
|
# sage_maker_image_arn: "ImageArn",
|
8618
8655
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
8619
|
-
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
8656
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
8620
8657
|
# },
|
8621
8658
|
# },
|
8622
8659
|
# },
|
@@ -8639,9 +8676,9 @@ module Aws::SageMaker
|
|
8639
8676
|
# @return [String]
|
8640
8677
|
#
|
8641
8678
|
# @!attribute [rw] single_sign_on_user_value
|
8642
|
-
# The username of the associated
|
8643
|
-
# UserProfile. If the Domain's AuthMode is SSO, this
|
8644
|
-
# required, and must match a valid username of a user in your
|
8679
|
+
# The username of the associated Amazon Web Services Single Sign-On
|
8680
|
+
# User for this UserProfile. If the Domain's AuthMode is SSO, this
|
8681
|
+
# field is required, and must match a valid username of a user in your
|
8645
8682
|
# directory. If the Domain's AuthMode is not SSO, this field cannot
|
8646
8683
|
# be specified.
|
8647
8684
|
# @return [String]
|
@@ -8856,8 +8893,8 @@ module Aws::SageMaker
|
|
8856
8893
|
# An array of key-value pairs.
|
8857
8894
|
#
|
8858
8895
|
# For more information, see [Resource Tag][1] and [Using Cost
|
8859
|
-
# Allocation Tags][2] in the <i>
|
8860
|
-
# Guide</i>.
|
8896
|
+
# Allocation Tags][2] in the <i> Amazon Web Services Billing and Cost
|
8897
|
+
# Management User Guide</i>.
|
8861
8898
|
#
|
8862
8899
|
#
|
8863
8900
|
#
|
@@ -9937,7 +9974,8 @@ module Aws::SageMaker
|
|
9937
9974
|
#
|
9938
9975
|
# @!attribute [rw] feature_group_name
|
9939
9976
|
# The name of the `FeatureGroup` you want to delete. The name must be
|
9940
|
-
# unique within an
|
9977
|
+
# unique within an Amazon Web Services Region in an Amazon Web
|
9978
|
+
# Services account.
|
9941
9979
|
# @return [String]
|
9942
9980
|
#
|
9943
9981
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DeleteFeatureGroupRequest AWS API Documentation
|
@@ -10730,7 +10768,8 @@ module Aws::SageMaker
|
|
10730
10768
|
# @return [String]
|
10731
10769
|
#
|
10732
10770
|
# @!attribute [rw] certify_for_marketplace
|
10733
|
-
# Whether the algorithm is certified to be listed in
|
10771
|
+
# Whether the algorithm is certified to be listed in Amazon Web
|
10772
|
+
# Services Marketplace.
|
10734
10773
|
# @return [Boolean]
|
10735
10774
|
#
|
10736
10775
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeAlgorithmOutput AWS API Documentation
|
@@ -11017,10 +11056,10 @@ module Aws::SageMaker
|
|
11017
11056
|
# @return [Types::AutoMLOutputDataConfig]
|
11018
11057
|
#
|
11019
11058
|
# @!attribute [rw] role_arn
|
11020
|
-
# The Amazon Resource Name (ARN) of the
|
11021
|
-
# Management (IAM) role that has read permission to the
|
11022
|
-
# location and write permission to the output data location
|
11023
|
-
# S3.
|
11059
|
+
# The Amazon Resource Name (ARN) of the Amazon Web Services Identity
|
11060
|
+
# and Access Management (IAM) role that has read permission to the
|
11061
|
+
# input data location and write permission to the output data location
|
11062
|
+
# in Amazon S3.
|
11024
11063
|
# @return [String]
|
11025
11064
|
#
|
11026
11065
|
# @!attribute [rw] auto_ml_job_objective
|
@@ -11159,8 +11198,8 @@ module Aws::SageMaker
|
|
11159
11198
|
# @!attribute [rw] git_config
|
11160
11199
|
# Configuration details about the repository, including the URL where
|
11161
11200
|
# the repository is located, the default branch, and the Amazon
|
11162
|
-
# Resource Name (ARN) of the
|
11163
|
-
# the credentials used to access the repository.
|
11201
|
+
# Resource Name (ARN) of the Amazon Web Services Secrets Manager
|
11202
|
+
# secret that contains the credentials used to access the repository.
|
11164
11203
|
# @return [Types::GitConfig]
|
11165
11204
|
#
|
11166
11205
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeCodeRepositoryOutput AWS API Documentation
|
@@ -11232,6 +11271,8 @@ module Aws::SageMaker
|
|
11232
11271
|
# @return [Types::StoppingCondition]
|
11233
11272
|
#
|
11234
11273
|
# @!attribute [rw] inference_image
|
11274
|
+
# The inference image to use when compiling a model. Specify an image
|
11275
|
+
# only if the target device is a cloud instance.
|
11235
11276
|
# @return [String]
|
11236
11277
|
#
|
11237
11278
|
# @!attribute [rw] creation_time
|
@@ -11517,13 +11558,13 @@ module Aws::SageMaker
|
|
11517
11558
|
# @return [Time]
|
11518
11559
|
#
|
11519
11560
|
# @!attribute [rw] role_arn
|
11520
|
-
# The Amazon Resource Name (ARN) that has access to
|
11521
|
-
# Things (IoT).
|
11561
|
+
# The Amazon Resource Name (ARN) that has access to Amazon Web
|
11562
|
+
# Services Internet of Things (IoT).
|
11522
11563
|
# @return [String]
|
11523
11564
|
#
|
11524
11565
|
# @!attribute [rw] iot_role_alias
|
11525
|
-
# The Amazon Resource Name (ARN) alias created in
|
11526
|
-
# Things (IoT).
|
11566
|
+
# The Amazon Resource Name (ARN) alias created in Amazon Web Services
|
11567
|
+
# Internet of Things (IoT).
|
11527
11568
|
# @return [String]
|
11528
11569
|
#
|
11529
11570
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeDeviceFleetResponse AWS API Documentation
|
@@ -11589,8 +11630,8 @@ module Aws::SageMaker
|
|
11589
11630
|
# @return [String]
|
11590
11631
|
#
|
11591
11632
|
# @!attribute [rw] iot_thing_name
|
11592
|
-
# The
|
11593
|
-
# the device.
|
11633
|
+
# The Amazon Web Services Internet of Things (IoT) object thing name
|
11634
|
+
# associated with the device.
|
11594
11635
|
# @return [String]
|
11595
11636
|
#
|
11596
11637
|
# @!attribute [rw] registration_time
|
@@ -11725,8 +11766,8 @@ module Aws::SageMaker
|
|
11725
11766
|
# @return [String]
|
11726
11767
|
#
|
11727
11768
|
# @!attribute [rw] kms_key_id
|
11728
|
-
# The
|
11729
|
-
# attached to the domain.
|
11769
|
+
# The Amazon Web Services KMS customer managed CMK used to encrypt the
|
11770
|
+
# EFS volume attached to the domain.
|
11730
11771
|
# @return [String]
|
11731
11772
|
#
|
11732
11773
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeDomainResponse AWS API Documentation
|
@@ -11893,8 +11934,8 @@ module Aws::SageMaker
|
|
11893
11934
|
# @return [Types::DataCaptureConfig]
|
11894
11935
|
#
|
11895
11936
|
# @!attribute [rw] kms_key_id
|
11896
|
-
#
|
11897
|
-
# on the ML storage volume attached to the instance.
|
11937
|
+
# Amazon Web Services KMS key ID Amazon SageMaker uses to encrypt data
|
11938
|
+
# when storing it on the ML storage volume attached to the instance.
|
11898
11939
|
# @return [String]
|
11899
11940
|
#
|
11900
11941
|
# @!attribute [rw] creation_time
|
@@ -12159,8 +12200,8 @@ module Aws::SageMaker
|
|
12159
12200
|
#
|
12160
12201
|
# @!attribute [rw] offline_store_config
|
12161
12202
|
# The configuration of the `OfflineStore`, inducing the S3 location of
|
12162
|
-
# the `OfflineStore`,
|
12163
|
-
# configurations, and the security configuration.
|
12203
|
+
# the `OfflineStore`, Amazon Web Services Glue or Amazon Web Services
|
12204
|
+
# Hive data catalogue configurations, and the security configuration.
|
12164
12205
|
# @return [Types::OfflineStoreConfig]
|
12165
12206
|
#
|
12166
12207
|
# @!attribute [rw] role_arn
|
@@ -12274,8 +12315,8 @@ module Aws::SageMaker
|
|
12274
12315
|
# @return [Types::FlowDefinitionOutputConfig]
|
12275
12316
|
#
|
12276
12317
|
# @!attribute [rw] role_arn
|
12277
|
-
# The Amazon Resource Name (ARN) of the
|
12278
|
-
# Management (IAM) execution role for the flow definition.
|
12318
|
+
# The Amazon Resource Name (ARN) of the Amazon Web Services Identity
|
12319
|
+
# and Access Management (IAM) execution role for the flow definition.
|
12279
12320
|
# @return [String]
|
12280
12321
|
#
|
12281
12322
|
# @!attribute [rw] failure_reason
|
@@ -12688,8 +12729,9 @@ module Aws::SageMaker
|
|
12688
12729
|
# @return [Types::LabelingJobInputConfig]
|
12689
12730
|
#
|
12690
12731
|
# @!attribute [rw] output_config
|
12691
|
-
# The location of the job's output data and the
|
12692
|
-
# Service key ID for the key used to encrypt the output
|
12732
|
+
# The location of the job's output data and the Amazon Web Services
|
12733
|
+
# Key Management Service key ID for the key used to encrypt the output
|
12734
|
+
# data, if any.
|
12693
12735
|
# @return [Types::LabelingJobOutputConfig]
|
12694
12736
|
#
|
12695
12737
|
# @!attribute [rw] role_arn
|
@@ -12754,9 +12796,10 @@ module Aws::SageMaker
|
|
12754
12796
|
# @return [Types::HumanTaskConfig]
|
12755
12797
|
#
|
12756
12798
|
# @!attribute [rw] tags
|
12757
|
-
# An array of key-value pairs. You can use tags to categorize your
|
12758
|
-
# resources in different ways, for example, by
|
12759
|
-
# environment. For more information, see [Tagging
|
12799
|
+
# An array of key-value pairs. You can use tags to categorize your
|
12800
|
+
# Amazon Web Services resources in different ways, for example, by
|
12801
|
+
# purpose, owner, or environment. For more information, see [Tagging
|
12802
|
+
# Amazon Web Services Resources][1].
|
12760
12803
|
#
|
12761
12804
|
#
|
12762
12805
|
#
|
@@ -12801,7 +12844,8 @@ module Aws::SageMaker
|
|
12801
12844
|
#
|
12802
12845
|
# @!attribute [rw] job_definition_name
|
12803
12846
|
# The name of the model bias job definition. The name must be unique
|
12804
|
-
# within an
|
12847
|
+
# within an Amazon Web Services Region in the Amazon Web Services
|
12848
|
+
# account.
|
12805
12849
|
# @return [String]
|
12806
12850
|
#
|
12807
12851
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelBiasJobDefinitionRequest AWS API Documentation
|
@@ -12818,7 +12862,7 @@ module Aws::SageMaker
|
|
12818
12862
|
#
|
12819
12863
|
# @!attribute [rw] job_definition_name
|
12820
12864
|
# The name of the bias job definition. The name must be unique within
|
12821
|
-
# an
|
12865
|
+
# an Amazon Web Services Region in the Amazon Web Services account.
|
12822
12866
|
# @return [String]
|
12823
12867
|
#
|
12824
12868
|
# @!attribute [rw] creation_time
|
@@ -12851,10 +12895,10 @@ module Aws::SageMaker
|
|
12851
12895
|
# @return [Types::MonitoringNetworkConfig]
|
12852
12896
|
#
|
12853
12897
|
# @!attribute [rw] role_arn
|
12854
|
-
# The Amazon Resource Name (ARN) of the
|
12855
|
-
# Management (IAM) role that has read permission to the
|
12856
|
-
# location and write permission to the output data location
|
12857
|
-
# S3.
|
12898
|
+
# The Amazon Resource Name (ARN) of the Amazon Web Services Identity
|
12899
|
+
# and Access Management (IAM) role that has read permission to the
|
12900
|
+
# input data location and write permission to the output data location
|
12901
|
+
# in Amazon S3.
|
12858
12902
|
# @return [String]
|
12859
12903
|
#
|
12860
12904
|
# @!attribute [rw] stopping_condition
|
@@ -12889,7 +12933,8 @@ module Aws::SageMaker
|
|
12889
12933
|
#
|
12890
12934
|
# @!attribute [rw] job_definition_name
|
12891
12935
|
# The name of the model explainability job definition. The name must
|
12892
|
-
# be unique within an
|
12936
|
+
# be unique within an Amazon Web Services Region in the Amazon Web
|
12937
|
+
# Services account.
|
12893
12938
|
# @return [String]
|
12894
12939
|
#
|
12895
12940
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelExplainabilityJobDefinitionRequest AWS API Documentation
|
@@ -12906,7 +12951,8 @@ module Aws::SageMaker
|
|
12906
12951
|
#
|
12907
12952
|
# @!attribute [rw] job_definition_name
|
12908
12953
|
# The name of the explainability job definition. The name must be
|
12909
|
-
# unique within an
|
12954
|
+
# unique within an Amazon Web Services Region in the Amazon Web
|
12955
|
+
# Services account.
|
12910
12956
|
# @return [String]
|
12911
12957
|
#
|
12912
12958
|
# @!attribute [rw] creation_time
|
@@ -12939,10 +12985,10 @@ module Aws::SageMaker
|
|
12939
12985
|
# @return [Types::MonitoringNetworkConfig]
|
12940
12986
|
#
|
12941
12987
|
# @!attribute [rw] role_arn
|
12942
|
-
# The Amazon Resource Name (ARN) of the
|
12943
|
-
# Management (IAM) role that has read permission to the
|
12944
|
-
# location and write permission to the output data location
|
12945
|
-
# S3.
|
12988
|
+
# The Amazon Resource Name (ARN) of the Amazon Web Services Identity
|
12989
|
+
# and Access Management (IAM) role that has read permission to the
|
12990
|
+
# input data location and write permission to the output data location
|
12991
|
+
# in Amazon S3.
|
12946
12992
|
# @return [String]
|
12947
12993
|
#
|
12948
12994
|
# @!attribute [rw] stopping_condition
|
@@ -13179,8 +13225,8 @@ module Aws::SageMaker
|
|
13179
13225
|
# @return [Types::ModelPackageStatusDetails]
|
13180
13226
|
#
|
13181
13227
|
# @!attribute [rw] certify_for_marketplace
|
13182
|
-
# Whether the model package is certified for listing on
|
13183
|
-
# Marketplace.
|
13228
|
+
# Whether the model package is certified for listing on Amazon Web
|
13229
|
+
# Services Marketplace.
|
13184
13230
|
# @return [Boolean]
|
13185
13231
|
#
|
13186
13232
|
# @!attribute [rw] model_approval_status
|
@@ -13249,7 +13295,7 @@ module Aws::SageMaker
|
|
13249
13295
|
#
|
13250
13296
|
# @!attribute [rw] job_definition_name
|
13251
13297
|
# The name of the model quality job. The name must be unique within an
|
13252
|
-
#
|
13298
|
+
# Amazon Web Services Region in the Amazon Web Services account.
|
13253
13299
|
# @return [String]
|
13254
13300
|
#
|
13255
13301
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelQualityJobDefinitionRequest AWS API Documentation
|
@@ -13266,7 +13312,8 @@ module Aws::SageMaker
|
|
13266
13312
|
#
|
13267
13313
|
# @!attribute [rw] job_definition_name
|
13268
13314
|
# The name of the quality job definition. The name must be unique
|
13269
|
-
# within an
|
13315
|
+
# within an Amazon Web Services Region in the Amazon Web Services
|
13316
|
+
# account.
|
13270
13317
|
# @return [String]
|
13271
13318
|
#
|
13272
13319
|
# @!attribute [rw] creation_time
|
@@ -13533,8 +13580,9 @@ module Aws::SageMaker
|
|
13533
13580
|
# @return [String]
|
13534
13581
|
#
|
13535
13582
|
# @!attribute [rw] kms_key_id
|
13536
|
-
# The
|
13537
|
-
# storing it on the ML storage volume attached to the
|
13583
|
+
# The Amazon Web Services KMS key ID Amazon SageMaker uses to encrypt
|
13584
|
+
# data when storing it on the ML storage volume attached to the
|
13585
|
+
# instance.
|
13538
13586
|
# @return [String]
|
13539
13587
|
#
|
13540
13588
|
# @!attribute [rw] network_interface_id
|
@@ -13597,10 +13645,11 @@ module Aws::SageMaker
|
|
13597
13645
|
# The Git repository associated with the notebook instance as its
|
13598
13646
|
# default code repository. This can be either the name of a Git
|
13599
13647
|
# repository stored as a resource in your account, or the URL of a Git
|
13600
|
-
# repository in [
|
13601
|
-
# When you open a notebook instance, it opens in the
|
13602
|
-
# contains this repository. For more information, see
|
13603
|
-
# Repositories with Amazon SageMaker Notebook
|
13648
|
+
# repository in [Amazon Web Services CodeCommit][1] or in any other
|
13649
|
+
# Git repository. When you open a notebook instance, it opens in the
|
13650
|
+
# directory that contains this repository. For more information, see
|
13651
|
+
# [Associating Git Repositories with Amazon SageMaker Notebook
|
13652
|
+
# Instances][2].
|
13604
13653
|
#
|
13605
13654
|
#
|
13606
13655
|
#
|
@@ -13612,10 +13661,11 @@ module Aws::SageMaker
|
|
13612
13661
|
# An array of up to three Git repositories associated with the
|
13613
13662
|
# notebook instance. These can be either the names of Git repositories
|
13614
13663
|
# stored as resources in your account, or the URL of Git repositories
|
13615
|
-
# in [
|
13616
|
-
# repositories are cloned at the same level as the
|
13617
|
-
# of your notebook instance. For more information,
|
13618
|
-
# Git Repositories with Amazon SageMaker Notebook
|
13664
|
+
# in [Amazon Web Services CodeCommit][1] or in any other Git
|
13665
|
+
# repository. These repositories are cloned at the same level as the
|
13666
|
+
# default repository of your notebook instance. For more information,
|
13667
|
+
# see [Associating Git Repositories with Amazon SageMaker Notebook
|
13668
|
+
# Instances][2].
|
13619
13669
|
#
|
13620
13670
|
#
|
13621
13671
|
#
|
@@ -13879,7 +13929,7 @@ module Aws::SageMaker
|
|
13879
13929
|
#
|
13880
13930
|
# @!attribute [rw] processing_job_name
|
13881
13931
|
# The name of the processing job. The name must be unique within an
|
13882
|
-
#
|
13932
|
+
# Amazon Web Services Region in the Amazon Web Services account.
|
13883
13933
|
# @return [String]
|
13884
13934
|
#
|
13885
13935
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeProcessingJobRequest AWS API Documentation
|
@@ -13900,7 +13950,7 @@ module Aws::SageMaker
|
|
13900
13950
|
#
|
13901
13951
|
# @!attribute [rw] processing_job_name
|
13902
13952
|
# The name of the processing job. The name must be unique within an
|
13903
|
-
#
|
13953
|
+
# Amazon Web Services Region in the Amazon Web Services account.
|
13904
13954
|
# @return [String]
|
13905
13955
|
#
|
13906
13956
|
# @!attribute [rw] processing_resources
|
@@ -14046,7 +14096,7 @@ module Aws::SageMaker
|
|
14046
14096
|
#
|
14047
14097
|
# @!attribute [rw] service_catalog_provisioning_details
|
14048
14098
|
# Information used to provision a service catalog product. For
|
14049
|
-
# information, see [What is
|
14099
|
+
# information, see [What is Amazon Web Services Service Catalog][1].
|
14050
14100
|
#
|
14051
14101
|
#
|
14052
14102
|
#
|
@@ -14259,8 +14309,8 @@ module Aws::SageMaker
|
|
14259
14309
|
# @return [Types::AlgorithmSpecification]
|
14260
14310
|
#
|
14261
14311
|
# @!attribute [rw] role_arn
|
14262
|
-
# The
|
14263
|
-
# training job.
|
14312
|
+
# The Amazon Web Services Identity and Access Management (IAM) role
|
14313
|
+
# configured for the training job.
|
14264
14314
|
# @return [String]
|
14265
14315
|
#
|
14266
14316
|
# @!attribute [rw] input_data_config
|
@@ -14974,10 +15024,10 @@ module Aws::SageMaker
|
|
14974
15024
|
# @!attribute [rw] workforce
|
14975
15025
|
# A single private workforce, which is automatically created when you
|
14976
15026
|
# create your first private work team. You can create one private work
|
14977
|
-
# force in each
|
14978
|
-
# operation used in a specific region will apply
|
14979
|
-
# created in that region. To learn how to create a
|
14980
|
-
# see [Create a Private Workforce][1].
|
15027
|
+
# force in each Amazon Web Services Region. By default, any
|
15028
|
+
# workforce-related API operation used in a specific region will apply
|
15029
|
+
# to the workforce created in that region. To learn how to create a
|
15030
|
+
# private workforce, see [Create a Private Workforce][1].
|
14981
15031
|
#
|
14982
15032
|
#
|
14983
15033
|
#
|
@@ -15076,7 +15126,7 @@ module Aws::SageMaker
|
|
15076
15126
|
# @return [String]
|
15077
15127
|
#
|
15078
15128
|
# @!attribute [rw] iot_thing_name
|
15079
|
-
#
|
15129
|
+
# Amazon Web Services Internet of Things (IoT) object name.
|
15080
15130
|
# @return [String]
|
15081
15131
|
#
|
15082
15132
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/Device AWS API Documentation
|
@@ -15156,8 +15206,8 @@ module Aws::SageMaker
|
|
15156
15206
|
# @return [String]
|
15157
15207
|
#
|
15158
15208
|
# @!attribute [rw] iot_thing_name
|
15159
|
-
# The
|
15160
|
-
# the device..
|
15209
|
+
# The Amazon Web Services Internet of Things (IoT) object thing name
|
15210
|
+
# associated with the device..
|
15161
15211
|
# @return [String]
|
15162
15212
|
#
|
15163
15213
|
# @!attribute [rw] registration_time
|
@@ -15391,15 +15441,17 @@ module Aws::SageMaker
|
|
15391
15441
|
# @return [String]
|
15392
15442
|
#
|
15393
15443
|
# @!attribute [rw] kms_key_id
|
15394
|
-
# The
|
15395
|
-
# uses to encrypt data on the storage
|
15396
|
-
# you don't provide a KMS key ID,
|
15397
|
-
# KMS key for Amazon S3 for your
|
15444
|
+
# The Amazon Web Services Key Management Service (Amazon Web Services
|
15445
|
+
# KMS) key that Amazon SageMaker uses to encrypt data on the storage
|
15446
|
+
# volume after compilation job. If you don't provide a KMS key ID,
|
15447
|
+
# Amazon SageMaker uses the default KMS key for Amazon S3 for your
|
15448
|
+
# role's account.
|
15398
15449
|
# @return [String]
|
15399
15450
|
#
|
15400
15451
|
# @!attribute [rw] preset_deployment_type
|
15401
15452
|
# The deployment type SageMaker Edge Manager will create. Currently
|
15402
|
-
# only supports
|
15453
|
+
# only supports Amazon Web Services IoT Greengrass Version 2
|
15454
|
+
# components.
|
15403
15455
|
# @return [String]
|
15404
15456
|
#
|
15405
15457
|
# @!attribute [rw] preset_deployment_config
|
@@ -15416,11 +15468,11 @@ module Aws::SageMaker
|
|
15416
15468
|
#
|
15417
15469
|
# * `ComponentVersion` (optional) - The version of the component.
|
15418
15470
|
#
|
15419
|
-
# <note markdown="1">
|
15420
|
-
# versions follow a<i> major.minor.patch</i>
|
15421
|
-
# example, version 1.0.0 represents the first
|
15422
|
-
# component. For more information, see the
|
15423
|
-
# specification][1].
|
15471
|
+
# <note markdown="1"> Amazon Web Services IoT Greengrass uses semantic versions for
|
15472
|
+
# components. Semantic versions follow a<i> major.minor.patch</i>
|
15473
|
+
# number system. For example, version 1.0.0 represents the first
|
15474
|
+
# major release for a component. For more information, see the
|
15475
|
+
# [semantic version specification][1].
|
15424
15476
|
#
|
15425
15477
|
# </note>
|
15426
15478
|
#
|
@@ -15505,7 +15557,8 @@ module Aws::SageMaker
|
|
15505
15557
|
#
|
15506
15558
|
# @!attribute [rw] type
|
15507
15559
|
# The deployment type created by SageMaker Edge Manager. Currently
|
15508
|
-
# only supports
|
15560
|
+
# only supports Amazon Web Services IoT Greengrass Version 2
|
15561
|
+
# components.
|
15509
15562
|
# @return [String]
|
15510
15563
|
#
|
15511
15564
|
# @!attribute [rw] artifact
|
@@ -15590,8 +15643,8 @@ module Aws::SageMaker
|
|
15590
15643
|
#
|
15591
15644
|
# @!attribute [rw] tags
|
15592
15645
|
# A list of the tags associated with the endpoint. For more
|
15593
|
-
# information, see [Tagging
|
15594
|
-
# Reference Guide*.
|
15646
|
+
# information, see [Tagging Amazon Web Services resources][1] in the
|
15647
|
+
# *Amazon Web Services General Reference Guide*.
|
15595
15648
|
#
|
15596
15649
|
#
|
15597
15650
|
#
|
@@ -16075,10 +16128,10 @@ module Aws::SageMaker
|
|
16075
16128
|
# @return [Time]
|
16076
16129
|
#
|
16077
16130
|
# @!attribute [rw] online_store_config
|
16078
|
-
# Use this to specify the
|
16079
|
-
# `KMSKeyId`, for at rest data encryption. You can
|
16080
|
-
# on or off by specifying the `EnableOnlineStore`
|
16081
|
-
# Assembly; the default value is `False`.
|
16131
|
+
# Use this to specify the Amazon Web Services Key Management Service
|
16132
|
+
# (KMS) Key ID, or `KMSKeyId`, for at rest data encryption. You can
|
16133
|
+
# turn `OnlineStore` on or off by specifying the `EnableOnlineStore`
|
16134
|
+
# flag at General Assembly; the default value is `False`.
|
16082
16135
|
# @return [Types::OnlineStoreConfig]
|
16083
16136
|
#
|
16084
16137
|
# @!attribute [rw] offline_store_config
|
@@ -16088,8 +16141,8 @@ module Aws::SageMaker
|
|
16088
16141
|
# to create an `OfflineStore`.
|
16089
16142
|
#
|
16090
16143
|
# To encrypt an `OfflineStore` using at rest data encryption, specify
|
16091
|
-
#
|
16092
|
-
# `S3StorageConfig`.
|
16144
|
+
# Amazon Web Services Key Management Service (KMS) key ID, or
|
16145
|
+
# `KMSKeyId`, in `S3StorageConfig`.
|
16093
16146
|
# @return [Types::OfflineStoreConfig]
|
16094
16147
|
#
|
16095
16148
|
# @!attribute [rw] role_arn
|
@@ -16707,8 +16760,8 @@ module Aws::SageMaker
|
|
16707
16760
|
include Aws::Structure
|
16708
16761
|
end
|
16709
16762
|
|
16710
|
-
# Specifies configuration details for a Git repository in your
|
16711
|
-
# account.
|
16763
|
+
# Specifies configuration details for a Git repository in your Amazon
|
16764
|
+
# Web Services account.
|
16712
16765
|
#
|
16713
16766
|
# @note When making an API call, you may pass GitConfig
|
16714
16767
|
# data as a hash:
|
@@ -16728,10 +16781,10 @@ module Aws::SageMaker
|
|
16728
16781
|
# @return [String]
|
16729
16782
|
#
|
16730
16783
|
# @!attribute [rw] secret_arn
|
16731
|
-
# The Amazon Resource Name (ARN) of the
|
16732
|
-
# that contains the credentials used to access the git
|
16733
|
-
# secret must have a staging label of `AWSCURRENT` and
|
16734
|
-
# following format:
|
16784
|
+
# The Amazon Resource Name (ARN) of the Amazon Web Services Secrets
|
16785
|
+
# Manager secret that contains the credentials used to access the git
|
16786
|
+
# repository. The secret must have a staging label of `AWSCURRENT` and
|
16787
|
+
# must be in the following format:
|
16735
16788
|
#
|
16736
16789
|
# `\{"username": UserName, "password": Password\}`
|
16737
16790
|
# @return [String]
|
@@ -16757,10 +16810,10 @@ module Aws::SageMaker
|
|
16757
16810
|
# }
|
16758
16811
|
#
|
16759
16812
|
# @!attribute [rw] secret_arn
|
16760
|
-
# The Amazon Resource Name (ARN) of the
|
16761
|
-
# that contains the credentials used to access the git
|
16762
|
-
# secret must have a staging label of `AWSCURRENT` and
|
16763
|
-
# following format:
|
16813
|
+
# The Amazon Resource Name (ARN) of the Amazon Web Services Secrets
|
16814
|
+
# Manager secret that contains the credentials used to access the git
|
16815
|
+
# repository. The secret must have a staging label of `AWSCURRENT` and
|
16816
|
+
# must be in the following format:
|
16764
16817
|
#
|
16765
16818
|
# `\{"username": UserName, "password": Password\}`
|
16766
16819
|
# @return [String]
|
@@ -17889,7 +17942,7 @@ module Aws::SageMaker
|
|
17889
17942
|
#
|
17890
17943
|
# * For [3D point cloud][4] and [video frame][5] labeling jobs, the
|
17891
17944
|
# maximum is 7 days (604,800 seconds). If you want to change these
|
17892
|
-
# limits, contact
|
17945
|
+
# limits, contact Amazon Web Services Support.
|
17893
17946
|
#
|
17894
17947
|
#
|
17895
17948
|
#
|
@@ -17911,7 +17964,8 @@ module Aws::SageMaker
|
|
17911
17964
|
#
|
17912
17965
|
# * If you choose a private or vendor workforce, the default value is
|
17913
17966
|
# 10 days (864,000 seconds). For most users, the maximum is also 10
|
17914
|
-
# days. If you want to change this limit, contact
|
17967
|
+
# days. If you want to change this limit, contact Amazon Web
|
17968
|
+
# Services Support.
|
17915
17969
|
# @return [Integer]
|
17916
17970
|
#
|
17917
17971
|
# @!attribute [rw] max_concurrent_task_count
|
@@ -18937,6 +18991,9 @@ module Aws::SageMaker
|
|
18937
18991
|
# image_digest: "ImageDigest",
|
18938
18992
|
# model_data_url: "Url",
|
18939
18993
|
# product_id: "ProductId",
|
18994
|
+
# environment: {
|
18995
|
+
# "EnvironmentKey" => "EnvironmentValue",
|
18996
|
+
# },
|
18940
18997
|
# },
|
18941
18998
|
# ],
|
18942
18999
|
# 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
|
@@ -19321,7 +19378,7 @@ module Aws::SageMaker
|
|
19321
19378
|
# default_resource_spec: {
|
19322
19379
|
# sage_maker_image_arn: "ImageArn",
|
19323
19380
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
19324
|
-
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
19381
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
19325
19382
|
# },
|
19326
19383
|
# }
|
19327
19384
|
#
|
@@ -19347,7 +19404,7 @@ module Aws::SageMaker
|
|
19347
19404
|
# default_resource_spec: {
|
19348
19405
|
# sage_maker_image_arn: "ImageArn",
|
19349
19406
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
19350
|
-
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
19407
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
19351
19408
|
# },
|
19352
19409
|
# custom_images: [
|
19353
19410
|
# {
|
@@ -19645,7 +19702,8 @@ module Aws::SageMaker
|
|
19645
19702
|
# @return [String]
|
19646
19703
|
#
|
19647
19704
|
# @!attribute [rw] work_requester_account_id
|
19648
|
-
# The
|
19705
|
+
# The Amazon Web Services account ID of the account used to start the
|
19706
|
+
# labeling job.
|
19649
19707
|
# @return [String]
|
19650
19708
|
#
|
19651
19709
|
# @!attribute [rw] creation_time
|
@@ -19745,16 +19803,16 @@ module Aws::SageMaker
|
|
19745
19803
|
# @return [String]
|
19746
19804
|
#
|
19747
19805
|
# @!attribute [rw] kms_key_id
|
19748
|
-
# The
|
19749
|
-
# output data, if any.
|
19806
|
+
# The Amazon Web Services Key Management Service ID of the key used to
|
19807
|
+
# encrypt the output data, if any.
|
19750
19808
|
#
|
19751
19809
|
# If you provide your own KMS key ID, you must add the required
|
19752
19810
|
# permissions to your KMS key described in [Encrypt Output Data and
|
19753
|
-
# Storage Volume with
|
19811
|
+
# Storage Volume with Amazon Web Services KMS][1].
|
19754
19812
|
#
|
19755
19813
|
# If you don't provide a KMS key ID, Amazon SageMaker uses the
|
19756
|
-
# default
|
19757
|
-
# encrypt your output data.
|
19814
|
+
# default Amazon Web Services KMS key for Amazon S3 for your role's
|
19815
|
+
# account to encrypt your output data.
|
19758
19816
|
#
|
19759
19817
|
# If you use a bucket policy with an `s3:PutObject` permission that
|
19760
19818
|
# only allows objects with server-side encryption, set the condition
|
@@ -19808,18 +19866,18 @@ module Aws::SageMaker
|
|
19808
19866
|
# }
|
19809
19867
|
#
|
19810
19868
|
# @!attribute [rw] volume_kms_key_id
|
19811
|
-
# The
|
19812
|
-
# uses to encrypt data on the storage
|
19813
|
-
# compute instance(s) that run the training
|
19814
|
-
# for automated data labeling.
|
19869
|
+
# The Amazon Web Services Key Management Service (Amazon Web Services
|
19870
|
+
# KMS) key that Amazon SageMaker uses to encrypt data on the storage
|
19871
|
+
# volume attached to the ML compute instance(s) that run the training
|
19872
|
+
# and inference jobs used for automated data labeling.
|
19815
19873
|
#
|
19816
19874
|
# You can only specify a `VolumeKmsKeyId` when you create a labeling
|
19817
19875
|
# job with automated data labeling enabled using the API operation
|
19818
|
-
# `CreateLabelingJob`. You cannot specify an
|
19819
|
-
# CMK to encrypt the storage volume used for
|
19820
|
-
# model training and inference when you create
|
19821
|
-
# the console. To learn more, see [Output Data
|
19822
|
-
# Encryption][1].
|
19876
|
+
# `CreateLabelingJob`. You cannot specify an Amazon Web Services KMS
|
19877
|
+
# customer managed CMK to encrypt the storage volume used for
|
19878
|
+
# automated data labeling model training and inference when you create
|
19879
|
+
# a labeling job using the console. To learn more, see [Output Data
|
19880
|
+
# and Storage Volume Encryption][1].
|
19823
19881
|
#
|
19824
19882
|
# The `VolumeKmsKeyId` can be any of the following formats:
|
19825
19883
|
#
|
@@ -20021,6 +20079,26 @@ module Aws::SageMaker
|
|
20021
20079
|
include Aws::Structure
|
20022
20080
|
end
|
20023
20081
|
|
20082
|
+
# Metadata for a Lambda step.
|
20083
|
+
#
|
20084
|
+
# @!attribute [rw] arn
|
20085
|
+
# The Amazon Resource Name (ARN) of the Lambda function that was run
|
20086
|
+
# by this step execution.
|
20087
|
+
# @return [String]
|
20088
|
+
#
|
20089
|
+
# @!attribute [rw] output_parameters
|
20090
|
+
# A list of the output parameters of the Lambda step.
|
20091
|
+
# @return [Array<Types::OutputParameter>]
|
20092
|
+
#
|
20093
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/LambdaStepMetadata AWS API Documentation
|
20094
|
+
#
|
20095
|
+
class LambdaStepMetadata < Struct.new(
|
20096
|
+
:arn,
|
20097
|
+
:output_parameters)
|
20098
|
+
SENSITIVE = []
|
20099
|
+
include Aws::Structure
|
20100
|
+
end
|
20101
|
+
|
20024
20102
|
# @note When making an API call, you may pass ListActionsRequest
|
20025
20103
|
# data as a hash:
|
20026
20104
|
#
|
@@ -20794,8 +20872,9 @@ module Aws::SageMaker
|
|
20794
20872
|
# * Last modified time
|
20795
20873
|
#
|
20796
20874
|
# * Configuration information, including the URL location of the
|
20797
|
-
# repository and the ARN of the
|
20798
|
-
# contains the credentials used to access the
|
20875
|
+
# repository and the ARN of the Amazon Web Services Secrets Manager
|
20876
|
+
# secret that contains the credentials used to access the
|
20877
|
+
# repository.
|
20799
20878
|
# @return [Array<Types::CodeRepositorySummary>]
|
20800
20879
|
#
|
20801
20880
|
# @!attribute [rw] next_token
|
@@ -22560,7 +22639,8 @@ module Aws::SageMaker
|
|
22560
22639
|
end
|
22561
22640
|
|
22562
22641
|
# @!attribute [rw] model_package_group_summary_list
|
22563
|
-
# A list of summaries of the model groups in your
|
22642
|
+
# A list of summaries of the model groups in your Amazon Web Services
|
22643
|
+
# account.
|
22564
22644
|
# @return [Array<Types::ModelPackageGroupSummary>]
|
22565
22645
|
#
|
22566
22646
|
# @!attribute [rw] next_token
|
@@ -25229,10 +25309,10 @@ module Aws::SageMaker
|
|
25229
25309
|
# @return [Types::ModelPackageStatusDetails]
|
25230
25310
|
#
|
25231
25311
|
# @!attribute [rw] certify_for_marketplace
|
25232
|
-
# Whether the model package is to be certified to be listed on
|
25233
|
-
# Marketplace. For information about listing model
|
25234
|
-
# Marketplace, see [List Your
|
25235
|
-
# Marketplace][1].
|
25312
|
+
# Whether the model package is to be certified to be listed on Amazon
|
25313
|
+
# Web Services Marketplace. For information about listing model
|
25314
|
+
# packages on Amazon Web Services Marketplace, see [List Your
|
25315
|
+
# Algorithm or Model Package on Amazon Web Services Marketplace][1].
|
25236
25316
|
#
|
25237
25317
|
#
|
25238
25318
|
#
|
@@ -25280,8 +25360,8 @@ module Aws::SageMaker
|
|
25280
25360
|
#
|
25281
25361
|
# @!attribute [rw] tags
|
25282
25362
|
# A list of the tags associated with the model package. For more
|
25283
|
-
# information, see [Tagging
|
25284
|
-
# Reference Guide*.
|
25363
|
+
# information, see [Tagging Amazon Web Services resources][1] in the
|
25364
|
+
# *Amazon Web Services General Reference Guide*.
|
25285
25365
|
#
|
25286
25366
|
#
|
25287
25367
|
#
|
@@ -25326,6 +25406,9 @@ module Aws::SageMaker
|
|
25326
25406
|
# image_digest: "ImageDigest",
|
25327
25407
|
# model_data_url: "Url",
|
25328
25408
|
# product_id: "ProductId",
|
25409
|
+
# environment: {
|
25410
|
+
# "EnvironmentKey" => "EnvironmentValue",
|
25411
|
+
# },
|
25329
25412
|
# }
|
25330
25413
|
#
|
25331
25414
|
# @!attribute [rw] container_hostname
|
@@ -25365,9 +25448,15 @@ module Aws::SageMaker
|
|
25365
25448
|
# @return [String]
|
25366
25449
|
#
|
25367
25450
|
# @!attribute [rw] product_id
|
25368
|
-
# The
|
25451
|
+
# The Amazon Web Services Marketplace product ID of the model package.
|
25369
25452
|
# @return [String]
|
25370
25453
|
#
|
25454
|
+
# @!attribute [rw] environment
|
25455
|
+
# The environment variables to set in the Docker container. Each key
|
25456
|
+
# and value in the `Environment` string to string map can have length
|
25457
|
+
# of up to 1024. We support up to 16 entries in the map.
|
25458
|
+
# @return [Hash<String,String>]
|
25459
|
+
#
|
25371
25460
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelPackageContainerDefinition AWS API Documentation
|
25372
25461
|
#
|
25373
25462
|
class ModelPackageContainerDefinition < Struct.new(
|
@@ -25375,7 +25464,8 @@ module Aws::SageMaker
|
|
25375
25464
|
:image,
|
25376
25465
|
:image_digest,
|
25377
25466
|
:model_data_url,
|
25378
|
-
:product_id
|
25467
|
+
:product_id,
|
25468
|
+
:environment)
|
25379
25469
|
SENSITIVE = []
|
25380
25470
|
include Aws::Structure
|
25381
25471
|
end
|
@@ -25423,8 +25513,8 @@ module Aws::SageMaker
|
|
25423
25513
|
#
|
25424
25514
|
# @!attribute [rw] tags
|
25425
25515
|
# A list of the tags associated with the model group. For more
|
25426
|
-
# information, see [Tagging
|
25427
|
-
# Reference Guide*.
|
25516
|
+
# information, see [Tagging Amazon Web Services resources][1] in the
|
25517
|
+
# *Amazon Web Services General Reference Guide*.
|
25428
25518
|
#
|
25429
25519
|
#
|
25430
25520
|
#
|
@@ -25586,7 +25676,7 @@ module Aws::SageMaker
|
|
25586
25676
|
# used in the process of validating the model package.
|
25587
25677
|
#
|
25588
25678
|
# The data provided in the validation profile is made available to your
|
25589
|
-
# buyers on
|
25679
|
+
# buyers on Amazon Web Services Marketplace.
|
25590
25680
|
#
|
25591
25681
|
# @note When making an API call, you may pass ModelPackageValidationProfile
|
25592
25682
|
# data as a hash:
|
@@ -26043,9 +26133,10 @@ module Aws::SageMaker
|
|
26043
26133
|
# @return [Integer]
|
26044
26134
|
#
|
26045
26135
|
# @!attribute [rw] volume_kms_key_id
|
26046
|
-
# The
|
26047
|
-
# uses to encrypt data on the storage
|
26048
|
-
# compute instance(s) that run the model
|
26136
|
+
# The Amazon Web Services Key Management Service (Amazon Web Services
|
26137
|
+
# KMS) key that Amazon SageMaker uses to encrypt data on the storage
|
26138
|
+
# volume attached to the ML compute instance(s) that run the model
|
26139
|
+
# monitoring job.
|
26049
26140
|
# @return [String]
|
26050
26141
|
#
|
26051
26142
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MonitoringClusterConfig AWS API Documentation
|
@@ -26456,9 +26547,9 @@ module Aws::SageMaker
|
|
26456
26547
|
# @return [Array<Types::MonitoringOutput>]
|
26457
26548
|
#
|
26458
26549
|
# @!attribute [rw] kms_key_id
|
26459
|
-
# The
|
26460
|
-
# uses to encrypt the model artifacts
|
26461
|
-
# server-side encryption.
|
26550
|
+
# The Amazon Web Services Key Management Service (Amazon Web Services
|
26551
|
+
# KMS) key that Amazon SageMaker uses to encrypt the model artifacts
|
26552
|
+
# at rest using Amazon S3 server-side encryption.
|
26462
26553
|
# @return [String]
|
26463
26554
|
#
|
26464
26555
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/MonitoringOutputConfig AWS API Documentation
|
@@ -26593,8 +26684,8 @@ module Aws::SageMaker
|
|
26593
26684
|
#
|
26594
26685
|
# @!attribute [rw] tags
|
26595
26686
|
# A list of the tags associated with the monitoring schedlue. For more
|
26596
|
-
# information, see [Tagging
|
26597
|
-
# Reference Guide*.
|
26687
|
+
# information, see [Tagging Amazon Web Services resources][1] in the
|
26688
|
+
# *Amazon Web Services General Reference Guide*.
|
26598
26689
|
#
|
26599
26690
|
#
|
26600
26691
|
#
|
@@ -26855,6 +26946,16 @@ module Aws::SageMaker
|
|
26855
26946
|
include Aws::Structure
|
26856
26947
|
end
|
26857
26948
|
|
26949
|
+
# The VpcConfig configuration object that specifies the VPC that you
|
26950
|
+
# want the compilation jobs to connect to. For more information on
|
26951
|
+
# controlling access to your Amazon S3 buckets used for compilation job,
|
26952
|
+
# see [Give Amazon SageMaker Compilation Jobs Access to Resources in
|
26953
|
+
# Your Amazon VPC][1].
|
26954
|
+
#
|
26955
|
+
#
|
26956
|
+
#
|
26957
|
+
# [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/neo-vpc.html
|
26958
|
+
#
|
26858
26959
|
# @note When making an API call, you may pass NeoVpcConfig
|
26859
26960
|
# data as a hash:
|
26860
26961
|
#
|
@@ -26864,9 +26965,14 @@ module Aws::SageMaker
|
|
26864
26965
|
# }
|
26865
26966
|
#
|
26866
26967
|
# @!attribute [rw] security_group_ids
|
26968
|
+
# The VPC security group IDs. IDs have the form of `sg-xxxxxxxx`.
|
26969
|
+
# Specify the security groups for the VPC that is specified in the
|
26970
|
+
# `Subnets` field.
|
26867
26971
|
# @return [Array<String>]
|
26868
26972
|
#
|
26869
26973
|
# @!attribute [rw] subnets
|
26974
|
+
# The ID of the subnets in the VPC that you want to connect the
|
26975
|
+
# compilation job to for accessing the model in Amazon S3.
|
26870
26976
|
# @return [Array<String>]
|
26871
26977
|
#
|
26872
26978
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/NeoVpcConfig AWS API Documentation
|
@@ -27101,10 +27207,11 @@ module Aws::SageMaker
|
|
27101
27207
|
# The Git repository associated with the notebook instance as its
|
27102
27208
|
# default code repository. This can be either the name of a Git
|
27103
27209
|
# repository stored as a resource in your account, or the URL of a Git
|
27104
|
-
# repository in [
|
27105
|
-
# When you open a notebook instance, it opens in the
|
27106
|
-
# contains this repository. For more information, see
|
27107
|
-
# Repositories with Amazon SageMaker Notebook
|
27210
|
+
# repository in [Amazon Web Services CodeCommit][1] or in any other
|
27211
|
+
# Git repository. When you open a notebook instance, it opens in the
|
27212
|
+
# directory that contains this repository. For more information, see
|
27213
|
+
# [Associating Git Repositories with Amazon SageMaker Notebook
|
27214
|
+
# Instances][2].
|
27108
27215
|
#
|
27109
27216
|
#
|
27110
27217
|
#
|
@@ -27116,10 +27223,11 @@ module Aws::SageMaker
|
|
27116
27223
|
# An array of up to three Git repositories associated with the
|
27117
27224
|
# notebook instance. These can be either the names of Git repositories
|
27118
27225
|
# stored as resources in your account, or the URL of Git repositories
|
27119
|
-
# in [
|
27120
|
-
# repositories are cloned at the same level as the
|
27121
|
-
# of your notebook instance. For more information,
|
27122
|
-
# Git Repositories with Amazon SageMaker Notebook
|
27226
|
+
# in [Amazon Web Services CodeCommit][1] or in any other Git
|
27227
|
+
# repository. These repositories are cloned at the same level as the
|
27228
|
+
# default repository of your notebook instance. For more information,
|
27229
|
+
# see [Associating Git Repositories with Amazon SageMaker Notebook
|
27230
|
+
# Instances][2].
|
27123
27231
|
#
|
27124
27232
|
#
|
27125
27233
|
#
|
@@ -27207,8 +27315,8 @@ module Aws::SageMaker
|
|
27207
27315
|
# to create an `OfflineStore`.
|
27208
27316
|
#
|
27209
27317
|
# To encrypt an `OfflineStore` using at rest data encryption, specify
|
27210
|
-
#
|
27211
|
-
# `S3StorageConfig`.
|
27318
|
+
# Amazon Web Services Key Management Service (KMS) key ID, or
|
27319
|
+
# `KMSKeyId`, in `S3StorageConfig`.
|
27212
27320
|
#
|
27213
27321
|
# @note When making an API call, you may pass OfflineStoreConfig
|
27214
27322
|
# data as a hash:
|
@@ -27232,8 +27340,8 @@ module Aws::SageMaker
|
|
27232
27340
|
# @return [Types::S3StorageConfig]
|
27233
27341
|
#
|
27234
27342
|
# @!attribute [rw] disable_glue_table_creation
|
27235
|
-
# Set to `True` to disable the automatic creation of an
|
27236
|
-
# when configuring an `OfflineStore`.
|
27343
|
+
# Set to `True` to disable the automatic creation of an Amazon Web
|
27344
|
+
# Services Glue table when configuring an `OfflineStore`.
|
27237
27345
|
# @return [Boolean]
|
27238
27346
|
#
|
27239
27347
|
# @!attribute [rw] data_catalog_config
|
@@ -27416,10 +27524,10 @@ module Aws::SageMaker
|
|
27416
27524
|
include Aws::Structure
|
27417
27525
|
end
|
27418
27526
|
|
27419
|
-
# Use this to specify the
|
27420
|
-
# `KMSKeyId`, for at rest data encryption. You can turn
|
27421
|
-
# or off by specifying the `EnableOnlineStore` flag at
|
27422
|
-
# the default value is `False`.
|
27527
|
+
# Use this to specify the Amazon Web Services Key Management Service
|
27528
|
+
# (KMS) Key ID, or `KMSKeyId`, for at rest data encryption. You can turn
|
27529
|
+
# `OnlineStore` on or off by specifying the `EnableOnlineStore` flag at
|
27530
|
+
# General Assembly; the default value is `False`.
|
27423
27531
|
#
|
27424
27532
|
# @note When making an API call, you may pass OnlineStoreConfig
|
27425
27533
|
# data as a hash:
|
@@ -27463,9 +27571,9 @@ module Aws::SageMaker
|
|
27463
27571
|
# }
|
27464
27572
|
#
|
27465
27573
|
# @!attribute [rw] kms_key_id
|
27466
|
-
# The ID of the
|
27467
|
-
# SageMaker Feature Store uses to encrypt the
|
27468
|
-
# rest using Amazon S3 server-side encryption.
|
27574
|
+
# The ID of the Amazon Web Services Key Management Service (Amazon Web
|
27575
|
+
# Services KMS) key that SageMaker Feature Store uses to encrypt the
|
27576
|
+
# Amazon S3 objects at rest using Amazon S3 server-side encryption.
|
27469
27577
|
#
|
27470
27578
|
# The caller (either IAM user or IAM role) of `CreateFeatureGroup`
|
27471
27579
|
# must have below permissions to the `OnlineStore` `KmsKeyId`\:
|
@@ -27743,10 +27851,10 @@ module Aws::SageMaker
|
|
27743
27851
|
# }
|
27744
27852
|
#
|
27745
27853
|
# @!attribute [rw] kms_key_id
|
27746
|
-
# The
|
27747
|
-
# uses to encrypt the model artifacts
|
27748
|
-
# server-side encryption. The `KmsKeyId` can
|
27749
|
-
# formats:
|
27854
|
+
# The Amazon Web Services Key Management Service (Amazon Web Services
|
27855
|
+
# KMS) key that Amazon SageMaker uses to encrypt the model artifacts
|
27856
|
+
# at rest using Amazon S3 server-side encryption. The `KmsKeyId` can
|
27857
|
+
# be any of the following formats:
|
27750
27858
|
#
|
27751
27859
|
# * // KMS Key ID
|
27752
27860
|
#
|
@@ -27779,8 +27887,8 @@ module Aws::SageMaker
|
|
27779
27887
|
# The KMS key policy must grant permission to the IAM role that you
|
27780
27888
|
# specify in your `CreateTrainingJob`, `CreateTransformJob`, or
|
27781
27889
|
# `CreateHyperParameterTuningJob` requests. For more information, see
|
27782
|
-
# [Using Key Policies in
|
27783
|
-
# Service Developer Guide*.
|
27890
|
+
# [Using Key Policies in Amazon Web Services KMS][2] in the *Amazon
|
27891
|
+
# Web Services Key Management Service Developer Guide*.
|
27784
27892
|
#
|
27785
27893
|
#
|
27786
27894
|
#
|
@@ -28221,33 +28329,48 @@ module Aws::SageMaker
|
|
28221
28329
|
# this step execution.
|
28222
28330
|
# @return [Types::TransformJobStepMetadata]
|
28223
28331
|
#
|
28332
|
+
# @!attribute [rw] tuning_job
|
28333
|
+
# The Amazon Resource Name (ARN) of the tuning job that was run by
|
28334
|
+
# this step execution.
|
28335
|
+
# @return [Types::TuningJobStepMetaData]
|
28336
|
+
#
|
28224
28337
|
# @!attribute [rw] model
|
28225
|
-
#
|
28338
|
+
# The Amazon Resource Name (ARN) of the model that was created by this
|
28339
|
+
# step execution.
|
28226
28340
|
# @return [Types::ModelStepMetadata]
|
28227
28341
|
#
|
28228
28342
|
# @!attribute [rw] register_model
|
28229
|
-
#
|
28343
|
+
# The Amazon Resource Name (ARN) of the model package the model was
|
28344
|
+
# registered to by this step execution.
|
28230
28345
|
# @return [Types::RegisterModelStepMetadata]
|
28231
28346
|
#
|
28232
28347
|
# @!attribute [rw] condition
|
28233
|
-
#
|
28234
|
-
#
|
28348
|
+
# The outcome of the condition evaluation that was run by this step
|
28349
|
+
# execution.
|
28235
28350
|
# @return [Types::ConditionStepMetadata]
|
28236
28351
|
#
|
28237
28352
|
# @!attribute [rw] callback
|
28238
|
-
#
|
28353
|
+
# The URL of the Amazon SQS queue used by this step execution, the
|
28354
|
+
# pipeline generated token, and a list of output parameters.
|
28239
28355
|
# @return [Types::CallbackStepMetadata]
|
28240
28356
|
#
|
28357
|
+
# @!attribute [rw] lambda
|
28358
|
+
# The Amazon Resource Name (ARN) of the Lambda function that was run
|
28359
|
+
# by this step execution and a list of output parameters.
|
28360
|
+
# @return [Types::LambdaStepMetadata]
|
28361
|
+
#
|
28241
28362
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/PipelineExecutionStepMetadata AWS API Documentation
|
28242
28363
|
#
|
28243
28364
|
class PipelineExecutionStepMetadata < Struct.new(
|
28244
28365
|
:training_job,
|
28245
28366
|
:processing_job,
|
28246
28367
|
:transform_job,
|
28368
|
+
:tuning_job,
|
28247
28369
|
:model,
|
28248
28370
|
:register_model,
|
28249
28371
|
:condition,
|
28250
|
-
:callback
|
28372
|
+
:callback,
|
28373
|
+
:lambda)
|
28251
28374
|
SENSITIVE = []
|
28252
28375
|
include Aws::Structure
|
28253
28376
|
end
|
@@ -28399,9 +28522,10 @@ module Aws::SageMaker
|
|
28399
28522
|
# @return [Integer]
|
28400
28523
|
#
|
28401
28524
|
# @!attribute [rw] volume_kms_key_id
|
28402
|
-
# The
|
28403
|
-
# uses to encrypt data on the storage
|
28404
|
-
# compute instance(s) that run the
|
28525
|
+
# The Amazon Web Services Key Management Service (Amazon Web Services
|
28526
|
+
# KMS) key that Amazon SageMaker uses to encrypt data on the storage
|
28527
|
+
# volume attached to the ML compute instance(s) that run the
|
28528
|
+
# processing job.
|
28405
28529
|
#
|
28406
28530
|
# <note markdown="1"> Certain Nitro-based instances include local storage, dependent on
|
28407
28531
|
# the instance type. Local storage volumes are encrypted using a
|
@@ -28645,8 +28769,8 @@ module Aws::SageMaker
|
|
28645
28769
|
#
|
28646
28770
|
# @!attribute [rw] tags
|
28647
28771
|
# An array of key-value pairs. For more information, see [Using Cost
|
28648
|
-
# Allocation Tags][1] in the *
|
28649
|
-
# Guide*.
|
28772
|
+
# Allocation Tags][1] in the *Amazon Web Services Billing and Cost
|
28773
|
+
# Management User Guide*.
|
28650
28774
|
#
|
28651
28775
|
#
|
28652
28776
|
#
|
@@ -28828,10 +28952,11 @@ module Aws::SageMaker
|
|
28828
28952
|
# @return [Array<Types::ProcessingOutput>]
|
28829
28953
|
#
|
28830
28954
|
# @!attribute [rw] kms_key_id
|
28831
|
-
# The
|
28832
|
-
# uses to encrypt the processing job
|
28833
|
-
#
|
28834
|
-
# KMS key. The `KmsKeyId` is applied
|
28955
|
+
# The Amazon Web Services Key Management Service (Amazon Web Services
|
28956
|
+
# KMS) key that Amazon SageMaker uses to encrypt the processing job
|
28957
|
+
# output. `KmsKeyId` can be an ID of a KMS key, ARN of a KMS key,
|
28958
|
+
# alias of a KMS key, or alias of a KMS key. The `KmsKeyId` is applied
|
28959
|
+
# to all outputs.
|
28835
28960
|
# @return [String]
|
28836
28961
|
#
|
28837
28962
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ProcessingOutputConfig AWS API Documentation
|
@@ -29101,10 +29226,10 @@ module Aws::SageMaker
|
|
29101
29226
|
# @return [String]
|
29102
29227
|
#
|
29103
29228
|
# @!attribute [rw] kms_key_id
|
29104
|
-
# The
|
29105
|
-
# uses to encrypt the core dump data at
|
29106
|
-
# server-side encryption. The `KmsKeyId` can be
|
29107
|
-
# formats:
|
29229
|
+
# The Amazon Web Services Key Management Service (Amazon Web Services
|
29230
|
+
# KMS) key that Amazon SageMaker uses to encrypt the core dump data at
|
29231
|
+
# rest using Amazon S3 server-side encryption. The `KmsKeyId` can be
|
29232
|
+
# any of the following formats:
|
29108
29233
|
#
|
29109
29234
|
# * // KMS Key ID
|
29110
29235
|
#
|
@@ -29136,8 +29261,9 @@ module Aws::SageMaker
|
|
29136
29261
|
#
|
29137
29262
|
# The KMS key policy must grant permission to the IAM role that you
|
29138
29263
|
# specify in your `CreateEndpoint` and `UpdateEndpoint` requests. For
|
29139
|
-
# more information, see [Using Key Policies in
|
29140
|
-
# Key Management Service Developer
|
29264
|
+
# more information, see [Using Key Policies in Amazon Web Services
|
29265
|
+
# KMS][2] in the *Amazon Web Services Key Management Service Developer
|
29266
|
+
# Guide*.
|
29141
29267
|
#
|
29142
29268
|
#
|
29143
29269
|
#
|
@@ -29483,8 +29609,8 @@ module Aws::SageMaker
|
|
29483
29609
|
end
|
29484
29610
|
|
29485
29611
|
# A key value pair used when you provision a project as a service
|
29486
|
-
# catalog product. For information, see [What is
|
29487
|
-
# Catalog][1].
|
29612
|
+
# catalog product. For information, see [What is Amazon Web Services
|
29613
|
+
# Service Catalog][1].
|
29488
29614
|
#
|
29489
29615
|
#
|
29490
29616
|
#
|
@@ -29826,8 +29952,9 @@ module Aws::SageMaker
|
|
29826
29952
|
# @return [String]
|
29827
29953
|
#
|
29828
29954
|
# @!attribute [rw] kms_key_id
|
29829
|
-
# The
|
29830
|
-
# uses to encrypt data from a Redshift
|
29955
|
+
# The Amazon Web Services Key Management Service (Amazon Web Services
|
29956
|
+
# KMS) key that Amazon SageMaker uses to encrypt data from a Redshift
|
29957
|
+
# execution.
|
29831
29958
|
# @return [String]
|
29832
29959
|
#
|
29833
29960
|
# @!attribute [rw] output_format
|
@@ -30025,8 +30152,8 @@ module Aws::SageMaker
|
|
30025
30152
|
# registry where your model image is hosted. Specify a value for this
|
30026
30153
|
# property only if you specified `Vpc` as the value for the
|
30027
30154
|
# `RepositoryAccessMode` field of the `ImageConfig` object that you
|
30028
|
-
# passed to a call to CreateModel and the private Docker registry
|
30029
|
-
# the model image is hosted requires authentication.
|
30155
|
+
# passed to a call to `CreateModel` and the private Docker registry
|
30156
|
+
# where the model image is hosted requires authentication.
|
30030
30157
|
#
|
30031
30158
|
# @note When making an API call, you may pass RepositoryAuthConfig
|
30032
30159
|
# data as a hash:
|
@@ -30036,11 +30163,12 @@ module Aws::SageMaker
|
|
30036
30163
|
# }
|
30037
30164
|
#
|
30038
30165
|
# @!attribute [rw] repository_credentials_provider_arn
|
30039
|
-
# The Amazon Resource Name (ARN) of an
|
30040
|
-
# provides credentials to authenticate to the private
|
30041
|
-
# where your model image is hosted. For information
|
30042
|
-
#
|
30043
|
-
# the console][1] in the *
|
30166
|
+
# The Amazon Resource Name (ARN) of an Amazon Web Services Lambda
|
30167
|
+
# function that provides credentials to authenticate to the private
|
30168
|
+
# Docker registry where your model image is hosted. For information
|
30169
|
+
# about how to create an Amazon Web Services Lambda function, see
|
30170
|
+
# [Create a Lambda function with the console][1] in the *Amazon Web
|
30171
|
+
# Services Lambda Developer Guide*.
|
30044
30172
|
#
|
30045
30173
|
#
|
30046
30174
|
#
|
@@ -30138,9 +30266,9 @@ module Aws::SageMaker
|
|
30138
30266
|
# @return [Integer]
|
30139
30267
|
#
|
30140
30268
|
# @!attribute [rw] volume_kms_key_id
|
30141
|
-
# The
|
30142
|
-
# storage volume attached to the ML compute
|
30143
|
-
# training job.
|
30269
|
+
# The Amazon Web Services KMS key that Amazon SageMaker uses to
|
30270
|
+
# encrypt data on the storage volume attached to the ML compute
|
30271
|
+
# instance(s) that run the training job.
|
30144
30272
|
#
|
30145
30273
|
# <note markdown="1"> Certain Nitro-based instances include local storage, dependent on
|
30146
30274
|
# the instance type. Local storage volumes are encrypted using a
|
@@ -30261,7 +30389,7 @@ module Aws::SageMaker
|
|
30261
30389
|
# {
|
30262
30390
|
# sage_maker_image_arn: "ImageArn",
|
30263
30391
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
30264
|
-
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
30392
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
30265
30393
|
# }
|
30266
30394
|
#
|
30267
30395
|
# @!attribute [rw] sage_maker_image_arn
|
@@ -30474,8 +30602,9 @@ module Aws::SageMaker
|
|
30474
30602
|
# @return [String]
|
30475
30603
|
#
|
30476
30604
|
# @!attribute [rw] kms_key_id
|
30477
|
-
# The
|
30478
|
-
# encrypt any objects written into the `OfflineStore` S3
|
30605
|
+
# The Amazon Web Services Key Management Service (KMS) key ID of the
|
30606
|
+
# key used to encrypt any objects written into the `OfflineStore` S3
|
30607
|
+
# location.
|
30479
30608
|
#
|
30480
30609
|
# The IAM `roleARN` that is passed as a parameter to
|
30481
30610
|
# `CreateFeatureGroup` must have below permissions to the `KmsKeyId`\:
|
@@ -31053,7 +31182,8 @@ module Aws::SageMaker
|
|
31053
31182
|
end
|
31054
31183
|
|
31055
31184
|
# Details of a provisioned service catalog product. For information
|
31056
|
-
# about service catalog, see [What is
|
31185
|
+
# about service catalog, see [What is Amazon Web Services Service
|
31186
|
+
# Catalog][1].
|
31057
31187
|
#
|
31058
31188
|
#
|
31059
31189
|
#
|
@@ -31100,8 +31230,8 @@ module Aws::SageMaker
|
|
31100
31230
|
end
|
31101
31231
|
|
31102
31232
|
# Details that you specify to provision a service catalog product. For
|
31103
|
-
# information about service catalog, see .[What is
|
31104
|
-
# Catalog][1].
|
31233
|
+
# information about service catalog, see .[What is Amazon Web Services
|
31234
|
+
# Service Catalog][1].
|
31105
31235
|
#
|
31106
31236
|
#
|
31107
31237
|
#
|
@@ -31178,9 +31308,9 @@ module Aws::SageMaker
|
|
31178
31308
|
# @return [String]
|
31179
31309
|
#
|
31180
31310
|
# @!attribute [rw] s3_kms_key_id
|
31181
|
-
# When `NotebookOutputOption` is `Allowed`, the
|
31182
|
-
# Service (KMS) encryption key ID used to encrypt the
|
31183
|
-
# output in the Amazon S3 bucket.
|
31311
|
+
# When `NotebookOutputOption` is `Allowed`, the Amazon Web Services
|
31312
|
+
# Key Management Service (KMS) encryption key ID used to encrypt the
|
31313
|
+
# notebook cell output in the Amazon S3 bucket.
|
31184
31314
|
# @return [String]
|
31185
31315
|
#
|
31186
31316
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SharingSettings AWS API Documentation
|
@@ -31231,8 +31361,8 @@ module Aws::SageMaker
|
|
31231
31361
|
|
31232
31362
|
# Specifies an algorithm that was used to create the model package. The
|
31233
31363
|
# algorithm must be either an algorithm resource in your Amazon
|
31234
|
-
# SageMaker account or an algorithm in
|
31235
|
-
# subscribed to.
|
31364
|
+
# SageMaker account or an algorithm in Amazon Web Services Marketplace
|
31365
|
+
# that you are subscribed to.
|
31236
31366
|
#
|
31237
31367
|
# @note When making an API call, you may pass SourceAlgorithm
|
31238
31368
|
# data as a hash:
|
@@ -31256,8 +31386,8 @@ module Aws::SageMaker
|
|
31256
31386
|
# @!attribute [rw] algorithm_name
|
31257
31387
|
# The name of an algorithm that was used to create the model package.
|
31258
31388
|
# The algorithm must be either an algorithm resource in your Amazon
|
31259
|
-
# SageMaker account or an algorithm in
|
31260
|
-
# subscribed to.
|
31389
|
+
# SageMaker account or an algorithm in Amazon Web Services Marketplace
|
31390
|
+
# that you are subscribed to.
|
31261
31391
|
# @return [String]
|
31262
31392
|
#
|
31263
31393
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SourceAlgorithm AWS API Documentation
|
@@ -31676,10 +31806,10 @@ module Aws::SageMaker
|
|
31676
31806
|
# time limit, Amazon SageMaker ends the training or compilation job. Use
|
31677
31807
|
# this API to cap model training costs.
|
31678
31808
|
#
|
31679
|
-
# To stop a job, Amazon SageMaker sends the algorithm the
|
31680
|
-
# signal, which delays job termination for 120 seconds.
|
31681
|
-
# use this 120-second window to save the model artifacts,
|
31682
|
-
# of training are not lost.
|
31809
|
+
# To stop a training job, Amazon SageMaker sends the algorithm the
|
31810
|
+
# `SIGTERM` signal, which delays job termination for 120 seconds.
|
31811
|
+
# Algorithms can use this 120-second window to save the model artifacts,
|
31812
|
+
# so the results of training are not lost.
|
31683
31813
|
#
|
31684
31814
|
# The training algorithms provided by Amazon SageMaker automatically
|
31685
31815
|
# save the intermediate results of a model training job when possible.
|
@@ -31705,14 +31835,17 @@ module Aws::SageMaker
|
|
31705
31835
|
#
|
31706
31836
|
# @!attribute [rw] max_runtime_in_seconds
|
31707
31837
|
# The maximum length of time, in seconds, that a training or
|
31708
|
-
# compilation job can run.
|
31709
|
-
# time, Amazon SageMaker ends the job.
|
31838
|
+
# compilation job can run.
|
31710
31839
|
#
|
31711
|
-
#
|
31712
|
-
# `
|
31713
|
-
#
|
31840
|
+
# For compilation jobs, if the job does not complete during this time,
|
31841
|
+
# you will receive a `TimeOut` error. We recommend starting with 900
|
31842
|
+
# seconds and increase as necessary based on your model.
|
31714
31843
|
#
|
31715
|
-
#
|
31844
|
+
# For all other jobs, if the job does not complete during this time,
|
31845
|
+
# Amazon SageMaker ends the job. When `RetryStrategy` is specified in
|
31846
|
+
# the job request, `MaxRuntimeInSeconds` specifies the maximum time
|
31847
|
+
# for all of the attempts in total, not each individual attempt. The
|
31848
|
+
# default value is 1 day. The maximum value is 28 days.
|
31716
31849
|
# @return [Integer]
|
31717
31850
|
#
|
31718
31851
|
# @!attribute [rw] max_wait_time_in_seconds
|
@@ -31798,17 +31931,19 @@ module Aws::SageMaker
|
|
31798
31931
|
end
|
31799
31932
|
|
31800
31933
|
# A tag object that consists of a key and an optional value, used to
|
31801
|
-
# manage metadata for Amazon SageMaker
|
31934
|
+
# manage metadata for Amazon SageMaker Amazon Web Services resources.
|
31802
31935
|
#
|
31803
31936
|
# You can add tags to notebook instances, training jobs, hyperparameter
|
31804
31937
|
# tuning jobs, batch transform jobs, models, labeling jobs, work teams,
|
31805
31938
|
# endpoint configurations, and endpoints. For more information on adding
|
31806
31939
|
# tags to Amazon SageMaker resources, see AddTags.
|
31807
31940
|
#
|
31808
|
-
# For more information on adding metadata to your
|
31809
|
-
# tagging, see [Tagging
|
31810
|
-
#
|
31811
|
-
#
|
31941
|
+
# For more information on adding metadata to your Amazon Web Services
|
31942
|
+
# resources with tagging, see [Tagging Amazon Web Services
|
31943
|
+
# resources][1]. For advice on best practices for managing Amazon Web
|
31944
|
+
# Services resources with tagging, see [Tagging Best Practices:
|
31945
|
+
# Implement an Effective Amazon Web Services Resource Tagging
|
31946
|
+
# Strategy][2].
|
31812
31947
|
#
|
31813
31948
|
#
|
31814
31949
|
#
|
@@ -31908,7 +32043,7 @@ module Aws::SageMaker
|
|
31908
32043
|
# default_resource_spec: {
|
31909
32044
|
# sage_maker_image_arn: "ImageArn",
|
31910
32045
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
31911
|
-
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
32046
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
31912
32047
|
# },
|
31913
32048
|
# }
|
31914
32049
|
#
|
@@ -32104,8 +32239,8 @@ module Aws::SageMaker
|
|
32104
32239
|
# @return [Types::AlgorithmSpecification]
|
32105
32240
|
#
|
32106
32241
|
# @!attribute [rw] role_arn
|
32107
|
-
# The
|
32108
|
-
# training job.
|
32242
|
+
# The Amazon Web Services Identity and Access Management (IAM) role
|
32243
|
+
# configured for the training job.
|
32109
32244
|
# @return [String]
|
32110
32245
|
#
|
32111
32246
|
# @!attribute [rw] input_data_config
|
@@ -32269,9 +32404,10 @@ module Aws::SageMaker
|
|
32269
32404
|
# @return [Types::RetryStrategy]
|
32270
32405
|
#
|
32271
32406
|
# @!attribute [rw] tags
|
32272
|
-
# An array of key-value pairs. You can use tags to categorize your
|
32273
|
-
# resources in different ways, for example, by
|
32274
|
-
# environment. For more information, see [Tagging
|
32407
|
+
# An array of key-value pairs. You can use tags to categorize your
|
32408
|
+
# Amazon Web Services resources in different ways, for example, by
|
32409
|
+
# purpose, owner, or environment. For more information, see [Tagging
|
32410
|
+
# Amazon Web Services Resources][1].
|
32275
32411
|
#
|
32276
32412
|
#
|
32277
32413
|
#
|
@@ -33141,10 +33277,10 @@ module Aws::SageMaker
|
|
33141
33277
|
# @return [String]
|
33142
33278
|
#
|
33143
33279
|
# @!attribute [rw] kms_key_id
|
33144
|
-
# The
|
33145
|
-
# uses to encrypt the model artifacts
|
33146
|
-
# server-side encryption. The `KmsKeyId` can
|
33147
|
-
# formats:
|
33280
|
+
# The Amazon Web Services Key Management Service (Amazon Web Services
|
33281
|
+
# KMS) key that Amazon SageMaker uses to encrypt the model artifacts
|
33282
|
+
# at rest using Amazon S3 server-side encryption. The `KmsKeyId` can
|
33283
|
+
# be any of the following formats:
|
33148
33284
|
#
|
33149
33285
|
# * Key ID: `1234abcd-12ab-34cd-56ef-1234567890ab`
|
33150
33286
|
#
|
@@ -33163,8 +33299,8 @@ module Aws::SageMaker
|
|
33163
33299
|
#
|
33164
33300
|
# The KMS key policy must grant permission to the IAM role that you
|
33165
33301
|
# specify in your CreateModel request. For more information, see
|
33166
|
-
# [Using Key Policies in
|
33167
|
-
# Service Developer Guide*.
|
33302
|
+
# [Using Key Policies in Amazon Web Services KMS][2] in the *Amazon
|
33303
|
+
# Web Services Key Management Service Developer Guide*.
|
33168
33304
|
#
|
33169
33305
|
#
|
33170
33306
|
#
|
@@ -33208,9 +33344,10 @@ module Aws::SageMaker
|
|
33208
33344
|
# @return [Integer]
|
33209
33345
|
#
|
33210
33346
|
# @!attribute [rw] volume_kms_key_id
|
33211
|
-
# The
|
33212
|
-
# uses to encrypt model data on the
|
33213
|
-
# compute instance(s) that run the
|
33347
|
+
# The Amazon Web Services Key Management Service (Amazon Web Services
|
33348
|
+
# KMS) key that Amazon SageMaker uses to encrypt model data on the
|
33349
|
+
# storage volume attached to the ML compute instance(s) that run the
|
33350
|
+
# batch transform job.
|
33214
33351
|
#
|
33215
33352
|
# <note markdown="1"> Certain Nitro-based instances include local storage, dependent on
|
33216
33353
|
# the instance type. Local storage volumes are encrypted using a
|
@@ -33910,6 +34047,21 @@ module Aws::SageMaker
|
|
33910
34047
|
include Aws::Structure
|
33911
34048
|
end
|
33912
34049
|
|
34050
|
+
# Metadata for a tuning step.
|
34051
|
+
#
|
34052
|
+
# @!attribute [rw] arn
|
34053
|
+
# The Amazon Resource Name (ARN) of the tuning job that was run by
|
34054
|
+
# this step execution.
|
34055
|
+
# @return [String]
|
34056
|
+
#
|
34057
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/TuningJobStepMetaData AWS API Documentation
|
34058
|
+
#
|
34059
|
+
class TuningJobStepMetaData < Struct.new(
|
34060
|
+
:arn)
|
34061
|
+
SENSITIVE = []
|
34062
|
+
include Aws::Structure
|
34063
|
+
end
|
34064
|
+
|
33913
34065
|
# Represents an amount of money in United States dollars.
|
33914
34066
|
#
|
33915
34067
|
# @note When making an API call, you may pass USD
|
@@ -33973,8 +34125,8 @@ module Aws::SageMaker
|
|
33973
34125
|
# Use this parameter when you are creating a labeling job for 3D point
|
33974
34126
|
# cloud and video fram labeling jobs. Use your labeling job task type
|
33975
34127
|
# to select one of the following ARNs and use it with this parameter
|
33976
|
-
# when you create a labeling job. Replace `aws-region` with the
|
33977
|
-
# region you are creating your labeling job in.
|
34128
|
+
# when you create a labeling job. Replace `aws-region` with the Amazon
|
34129
|
+
# Web Services region you are creating your labeling job in.
|
33978
34130
|
#
|
33979
34131
|
# **3D Point Cloud HumanTaskUiArns**
|
33980
34132
|
#
|
@@ -34238,10 +34390,10 @@ module Aws::SageMaker
|
|
34238
34390
|
#
|
34239
34391
|
# @!attribute [rw] git_config
|
34240
34392
|
# The configuration of the git repository, including the URL and the
|
34241
|
-
# Amazon Resource Name (ARN) of the
|
34242
|
-
# contains the credentials used to access the
|
34243
|
-
# must have a staging label of `AWSCURRENT` and
|
34244
|
-
# following format:
|
34393
|
+
# Amazon Resource Name (ARN) of the Amazon Web Services Secrets
|
34394
|
+
# Manager secret that contains the credentials used to access the
|
34395
|
+
# repository. The secret must have a staging label of `AWSCURRENT` and
|
34396
|
+
# must be in the following format:
|
34245
34397
|
#
|
34246
34398
|
# `\{"username": UserName, "password": Password\}`
|
34247
34399
|
# @return [Types::GitConfigForUpdate]
|
@@ -34351,9 +34503,9 @@ module Aws::SageMaker
|
|
34351
34503
|
# @return [Types::EdgeOutputConfig]
|
34352
34504
|
#
|
34353
34505
|
# @!attribute [rw] enable_iot_role_alias
|
34354
|
-
# Whether to create an
|
34355
|
-
# creation. The name of the role alias generated will
|
34356
|
-
# pattern: "SageMakerEdge-\\\{DeviceFleetName\\}".
|
34506
|
+
# Whether to create an Amazon Web Services IoT Role Alias during
|
34507
|
+
# device fleet creation. The name of the role alias generated will
|
34508
|
+
# match this pattern: "SageMakerEdge-\\\{DeviceFleetName\\}".
|
34357
34509
|
#
|
34358
34510
|
# For example, if your device fleet is called "demo-fleet", the name
|
34359
34511
|
# of the role alias will be "SageMakerEdge-demo-fleet".
|
@@ -34419,14 +34571,14 @@ module Aws::SageMaker
|
|
34419
34571
|
# default_resource_spec: {
|
34420
34572
|
# sage_maker_image_arn: "ImageArn",
|
34421
34573
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
34422
|
-
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
34574
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
34423
34575
|
# },
|
34424
34576
|
# },
|
34425
34577
|
# kernel_gateway_app_settings: {
|
34426
34578
|
# default_resource_spec: {
|
34427
34579
|
# sage_maker_image_arn: "ImageArn",
|
34428
34580
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
34429
|
-
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
34581
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
34430
34582
|
# },
|
34431
34583
|
# custom_images: [
|
34432
34584
|
# {
|
@@ -34440,7 +34592,7 @@ module Aws::SageMaker
|
|
34440
34592
|
# default_resource_spec: {
|
34441
34593
|
# sage_maker_image_arn: "ImageArn",
|
34442
34594
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
34443
|
-
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
34595
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
34444
34596
|
# },
|
34445
34597
|
# },
|
34446
34598
|
# },
|
@@ -34843,7 +34995,7 @@ module Aws::SageMaker
|
|
34843
34995
|
#
|
34844
34996
|
# @!attribute [rw] monitoring_schedule_name
|
34845
34997
|
# The name of the monitoring schedule. The name must be unique within
|
34846
|
-
# an
|
34998
|
+
# an Amazon Web Services Region within an Amazon Web Services account.
|
34847
34999
|
# @return [String]
|
34848
35000
|
#
|
34849
35001
|
# @!attribute [rw] monitoring_schedule_config
|
@@ -34947,10 +35099,11 @@ module Aws::SageMaker
|
|
34947
35099
|
# The Git repository to associate with the notebook instance as its
|
34948
35100
|
# default code repository. This can be either the name of a Git
|
34949
35101
|
# repository stored as a resource in your account, or the URL of a Git
|
34950
|
-
# repository in [
|
34951
|
-
# When you open a notebook instance, it opens in the
|
34952
|
-
# contains this repository. For more information, see
|
34953
|
-
# Repositories with Amazon SageMaker Notebook
|
35102
|
+
# repository in [Amazon Web Services CodeCommit][1] or in any other
|
35103
|
+
# Git repository. When you open a notebook instance, it opens in the
|
35104
|
+
# directory that contains this repository. For more information, see
|
35105
|
+
# [Associating Git Repositories with Amazon SageMaker Notebook
|
35106
|
+
# Instances][2].
|
34954
35107
|
#
|
34955
35108
|
#
|
34956
35109
|
#
|
@@ -34962,10 +35115,11 @@ module Aws::SageMaker
|
|
34962
35115
|
# An array of up to three Git repositories to associate with the
|
34963
35116
|
# notebook instance. These can be either the names of Git repositories
|
34964
35117
|
# stored as resources in your account, or the URL of Git repositories
|
34965
|
-
# in [
|
34966
|
-
# repositories are cloned at the same level as the
|
34967
|
-
# of your notebook instance. For more information,
|
34968
|
-
# Git Repositories with Amazon SageMaker Notebook
|
35118
|
+
# in [Amazon Web Services CodeCommit][1] or in any other Git
|
35119
|
+
# repository. These repositories are cloned at the same level as the
|
35120
|
+
# default repository of your notebook instance. For more information,
|
35121
|
+
# see [Associating Git Repositories with Amazon SageMaker Notebook
|
35122
|
+
# Instances][2].
|
34969
35123
|
#
|
34970
35124
|
#
|
34971
35125
|
#
|
@@ -35419,14 +35573,14 @@ module Aws::SageMaker
|
|
35419
35573
|
# default_resource_spec: {
|
35420
35574
|
# sage_maker_image_arn: "ImageArn",
|
35421
35575
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
35422
|
-
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
35576
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
35423
35577
|
# },
|
35424
35578
|
# },
|
35425
35579
|
# kernel_gateway_app_settings: {
|
35426
35580
|
# default_resource_spec: {
|
35427
35581
|
# sage_maker_image_arn: "ImageArn",
|
35428
35582
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
35429
|
-
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
35583
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
35430
35584
|
# },
|
35431
35585
|
# custom_images: [
|
35432
35586
|
# {
|
@@ -35440,7 +35594,7 @@ module Aws::SageMaker
|
|
35440
35594
|
# default_resource_spec: {
|
35441
35595
|
# sage_maker_image_arn: "ImageArn",
|
35442
35596
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
35443
|
-
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
35597
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
35444
35598
|
# },
|
35445
35599
|
# },
|
35446
35600
|
# },
|
@@ -35533,10 +35687,10 @@ module Aws::SageMaker
|
|
35533
35687
|
|
35534
35688
|
# @!attribute [rw] workforce
|
35535
35689
|
# A single private workforce. You can create one private work force in
|
35536
|
-
# each
|
35537
|
-
# used in a specific region will apply to the workforce
|
35538
|
-
# that region. To learn how to create a private workforce,
|
35539
|
-
# a Private Workforce][1].
|
35690
|
+
# each Amazon Web Services Region. By default, any workforce-related
|
35691
|
+
# API operation used in a specific region will apply to the workforce
|
35692
|
+
# created in that region. To learn how to create a private workforce,
|
35693
|
+
# see [Create a Private Workforce][1].
|
35540
35694
|
#
|
35541
35695
|
#
|
35542
35696
|
#
|
@@ -35726,14 +35880,14 @@ module Aws::SageMaker
|
|
35726
35880
|
# default_resource_spec: {
|
35727
35881
|
# sage_maker_image_arn: "ImageArn",
|
35728
35882
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
35729
|
-
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
35883
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
35730
35884
|
# },
|
35731
35885
|
# },
|
35732
35886
|
# kernel_gateway_app_settings: {
|
35733
35887
|
# default_resource_spec: {
|
35734
35888
|
# sage_maker_image_arn: "ImageArn",
|
35735
35889
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
35736
|
-
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
35890
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
35737
35891
|
# },
|
35738
35892
|
# custom_images: [
|
35739
35893
|
# {
|
@@ -35747,7 +35901,7 @@ module Aws::SageMaker
|
|
35747
35901
|
# default_resource_spec: {
|
35748
35902
|
# sage_maker_image_arn: "ImageArn",
|
35749
35903
|
# sage_maker_image_version_arn: "ImageVersionArn",
|
35750
|
-
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge
|
35904
|
+
# instance_type: "system", # accepts system, ml.t3.micro, ml.t3.small, ml.t3.medium, ml.t3.large, ml.t3.xlarge, ml.t3.2xlarge, ml.m5.large, ml.m5.xlarge, ml.m5.2xlarge, ml.m5.4xlarge, ml.m5.8xlarge, ml.m5.12xlarge, ml.m5.16xlarge, ml.m5.24xlarge, ml.m5d.large, ml.m5d.xlarge, ml.m5d.2xlarge, ml.m5d.4xlarge, ml.m5d.8xlarge, ml.m5d.12xlarge, ml.m5d.16xlarge, ml.m5d.24xlarge, ml.c5.large, ml.c5.xlarge, ml.c5.2xlarge, ml.c5.4xlarge, ml.c5.9xlarge, ml.c5.12xlarge, ml.c5.18xlarge, ml.c5.24xlarge, ml.p3.2xlarge, ml.p3.8xlarge, ml.p3.16xlarge, ml.p3dn.24xlarge, ml.g4dn.xlarge, ml.g4dn.2xlarge, ml.g4dn.4xlarge, ml.g4dn.8xlarge, ml.g4dn.12xlarge, ml.g4dn.16xlarge, ml.r5.large, ml.r5.xlarge, ml.r5.2xlarge, ml.r5.4xlarge, ml.r5.8xlarge, ml.r5.12xlarge, ml.r5.16xlarge, ml.r5.24xlarge
|
35751
35905
|
# },
|
35752
35906
|
# },
|
35753
35907
|
# }
|
@@ -35884,10 +36038,10 @@ module Aws::SageMaker
|
|
35884
36038
|
|
35885
36039
|
# A single private workforce, which is automatically created when you
|
35886
36040
|
# create your first private work team. You can create one private work
|
35887
|
-
# force in each
|
35888
|
-
# operation used in a specific region will apply
|
35889
|
-
# created in that region. To learn how to create a
|
35890
|
-
# see [Create a Private Workforce][1].
|
36041
|
+
# force in each Amazon Web Services Region. By default, any
|
36042
|
+
# workforce-related API operation used in a specific region will apply
|
36043
|
+
# to the workforce created in that region. To learn how to create a
|
36044
|
+
# private workforce, see [Create a Private Workforce][1].
|
35891
36045
|
#
|
35892
36046
|
#
|
35893
36047
|
#
|