aws-sdk-sagemaker 1.120.0 → 1.123.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +264 -248
- data/lib/aws-sdk-sagemaker/client_api.rb +19 -0
- data/lib/aws-sdk-sagemaker/types.rb +580 -401
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +2 -2
@@ -99,9 +99,11 @@ module Aws::SageMaker
|
|
99
99
|
AutoMLCandidateStep = Shapes::StructureShape.new(name: 'AutoMLCandidateStep')
|
100
100
|
AutoMLCandidates = Shapes::ListShape.new(name: 'AutoMLCandidates')
|
101
101
|
AutoMLChannel = Shapes::StructureShape.new(name: 'AutoMLChannel')
|
102
|
+
AutoMLChannelType = Shapes::StringShape.new(name: 'AutoMLChannelType')
|
102
103
|
AutoMLContainerDefinition = Shapes::StructureShape.new(name: 'AutoMLContainerDefinition')
|
103
104
|
AutoMLContainerDefinitions = Shapes::ListShape.new(name: 'AutoMLContainerDefinitions')
|
104
105
|
AutoMLDataSource = Shapes::StructureShape.new(name: 'AutoMLDataSource')
|
106
|
+
AutoMLDataSplitConfig = Shapes::StructureShape.new(name: 'AutoMLDataSplitConfig')
|
105
107
|
AutoMLFailureReason = Shapes::StringShape.new(name: 'AutoMLFailureReason')
|
106
108
|
AutoMLInputDataConfig = Shapes::ListShape.new(name: 'AutoMLInputDataConfig')
|
107
109
|
AutoMLJobArn = Shapes::StringShape.new(name: 'AutoMLJobArn')
|
@@ -1270,9 +1272,11 @@ module Aws::SageMaker
|
|
1270
1272
|
RStudioServerProUserGroup = Shapes::StringShape.new(name: 'RStudioServerProUserGroup')
|
1271
1273
|
RealtimeInferenceInstanceTypes = Shapes::ListShape.new(name: 'RealtimeInferenceInstanceTypes')
|
1272
1274
|
RecommendationJobArn = Shapes::StringShape.new(name: 'RecommendationJobArn')
|
1275
|
+
RecommendationJobCompiledOutputConfig = Shapes::StructureShape.new(name: 'RecommendationJobCompiledOutputConfig')
|
1273
1276
|
RecommendationJobDescription = Shapes::StringShape.new(name: 'RecommendationJobDescription')
|
1274
1277
|
RecommendationJobInputConfig = Shapes::StructureShape.new(name: 'RecommendationJobInputConfig')
|
1275
1278
|
RecommendationJobName = Shapes::StringShape.new(name: 'RecommendationJobName')
|
1279
|
+
RecommendationJobOutputConfig = Shapes::StructureShape.new(name: 'RecommendationJobOutputConfig')
|
1276
1280
|
RecommendationJobResourceLimit = Shapes::StructureShape.new(name: 'RecommendationJobResourceLimit')
|
1277
1281
|
RecommendationJobStatus = Shapes::StringShape.new(name: 'RecommendationJobStatus')
|
1278
1282
|
RecommendationJobStoppingConditions = Shapes::StructureShape.new(name: 'RecommendationJobStoppingConditions')
|
@@ -1592,6 +1596,7 @@ module Aws::SageMaker
|
|
1592
1596
|
UserProfileSortKey = Shapes::StringShape.new(name: 'UserProfileSortKey')
|
1593
1597
|
UserProfileStatus = Shapes::StringShape.new(name: 'UserProfileStatus')
|
1594
1598
|
UserSettings = Shapes::StructureShape.new(name: 'UserSettings')
|
1599
|
+
ValidationFraction = Shapes::FloatShape.new(name: 'ValidationFraction')
|
1595
1600
|
VariantName = Shapes::StringShape.new(name: 'VariantName')
|
1596
1601
|
VariantProperty = Shapes::StructureShape.new(name: 'VariantProperty')
|
1597
1602
|
VariantPropertyList = Shapes::ListShape.new(name: 'VariantPropertyList')
|
@@ -1831,6 +1836,7 @@ module Aws::SageMaker
|
|
1831
1836
|
AutoMLChannel.add_member(:compression_type, Shapes::ShapeRef.new(shape: CompressionType, location_name: "CompressionType"))
|
1832
1837
|
AutoMLChannel.add_member(:target_attribute_name, Shapes::ShapeRef.new(shape: TargetAttributeName, required: true, location_name: "TargetAttributeName"))
|
1833
1838
|
AutoMLChannel.add_member(:content_type, Shapes::ShapeRef.new(shape: ContentType, location_name: "ContentType"))
|
1839
|
+
AutoMLChannel.add_member(:channel_type, Shapes::ShapeRef.new(shape: AutoMLChannelType, location_name: "ChannelType"))
|
1834
1840
|
AutoMLChannel.struct_class = Types::AutoMLChannel
|
1835
1841
|
|
1836
1842
|
AutoMLContainerDefinition.add_member(:image, Shapes::ShapeRef.new(shape: ContainerImage, required: true, location_name: "Image"))
|
@@ -1843,6 +1849,9 @@ module Aws::SageMaker
|
|
1843
1849
|
AutoMLDataSource.add_member(:s3_data_source, Shapes::ShapeRef.new(shape: AutoMLS3DataSource, required: true, location_name: "S3DataSource"))
|
1844
1850
|
AutoMLDataSource.struct_class = Types::AutoMLDataSource
|
1845
1851
|
|
1852
|
+
AutoMLDataSplitConfig.add_member(:validation_fraction, Shapes::ShapeRef.new(shape: ValidationFraction, location_name: "ValidationFraction"))
|
1853
|
+
AutoMLDataSplitConfig.struct_class = Types::AutoMLDataSplitConfig
|
1854
|
+
|
1846
1855
|
AutoMLInputDataConfig.member = Shapes::ShapeRef.new(shape: AutoMLChannel)
|
1847
1856
|
|
1848
1857
|
AutoMLJobArtifacts.add_member(:candidate_definition_notebook_location, Shapes::ShapeRef.new(shape: CandidateDefinitionNotebookLocation, location_name: "CandidateDefinitionNotebookLocation"))
|
@@ -1856,6 +1865,7 @@ module Aws::SageMaker
|
|
1856
1865
|
|
1857
1866
|
AutoMLJobConfig.add_member(:completion_criteria, Shapes::ShapeRef.new(shape: AutoMLJobCompletionCriteria, location_name: "CompletionCriteria"))
|
1858
1867
|
AutoMLJobConfig.add_member(:security_config, Shapes::ShapeRef.new(shape: AutoMLSecurityConfig, location_name: "SecurityConfig"))
|
1868
|
+
AutoMLJobConfig.add_member(:data_split_config, Shapes::ShapeRef.new(shape: AutoMLDataSplitConfig, location_name: "DataSplitConfig"))
|
1859
1869
|
AutoMLJobConfig.struct_class = Types::AutoMLJobConfig
|
1860
1870
|
|
1861
1871
|
AutoMLJobObjective.add_member(:metric_name, Shapes::ShapeRef.new(shape: AutoMLMetricEnum, required: true, location_name: "MetricName"))
|
@@ -2360,6 +2370,7 @@ module Aws::SageMaker
|
|
2360
2370
|
CreateInferenceRecommendationsJobRequest.add_member(:input_config, Shapes::ShapeRef.new(shape: RecommendationJobInputConfig, required: true, location_name: "InputConfig"))
|
2361
2371
|
CreateInferenceRecommendationsJobRequest.add_member(:job_description, Shapes::ShapeRef.new(shape: RecommendationJobDescription, location_name: "JobDescription"))
|
2362
2372
|
CreateInferenceRecommendationsJobRequest.add_member(:stopping_conditions, Shapes::ShapeRef.new(shape: RecommendationJobStoppingConditions, location_name: "StoppingConditions"))
|
2373
|
+
CreateInferenceRecommendationsJobRequest.add_member(:output_config, Shapes::ShapeRef.new(shape: RecommendationJobOutputConfig, location_name: "OutputConfig"))
|
2363
2374
|
CreateInferenceRecommendationsJobRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
2364
2375
|
CreateInferenceRecommendationsJobRequest.struct_class = Types::CreateInferenceRecommendationsJobRequest
|
2365
2376
|
|
@@ -6201,13 +6212,21 @@ module Aws::SageMaker
|
|
6201
6212
|
|
6202
6213
|
RealtimeInferenceInstanceTypes.member = Shapes::ShapeRef.new(shape: ProductionVariantInstanceType)
|
6203
6214
|
|
6215
|
+
RecommendationJobCompiledOutputConfig.add_member(:s3_output_uri, Shapes::ShapeRef.new(shape: S3Uri, location_name: "S3OutputUri"))
|
6216
|
+
RecommendationJobCompiledOutputConfig.struct_class = Types::RecommendationJobCompiledOutputConfig
|
6217
|
+
|
6204
6218
|
RecommendationJobInputConfig.add_member(:model_package_version_arn, Shapes::ShapeRef.new(shape: ModelPackageArn, required: true, location_name: "ModelPackageVersionArn"))
|
6205
6219
|
RecommendationJobInputConfig.add_member(:job_duration_in_seconds, Shapes::ShapeRef.new(shape: JobDurationInSeconds, location_name: "JobDurationInSeconds"))
|
6206
6220
|
RecommendationJobInputConfig.add_member(:traffic_pattern, Shapes::ShapeRef.new(shape: TrafficPattern, location_name: "TrafficPattern"))
|
6207
6221
|
RecommendationJobInputConfig.add_member(:resource_limit, Shapes::ShapeRef.new(shape: RecommendationJobResourceLimit, location_name: "ResourceLimit"))
|
6208
6222
|
RecommendationJobInputConfig.add_member(:endpoint_configurations, Shapes::ShapeRef.new(shape: EndpointInputConfigurations, location_name: "EndpointConfigurations"))
|
6223
|
+
RecommendationJobInputConfig.add_member(:volume_kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "VolumeKmsKeyId"))
|
6209
6224
|
RecommendationJobInputConfig.struct_class = Types::RecommendationJobInputConfig
|
6210
6225
|
|
6226
|
+
RecommendationJobOutputConfig.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
|
6227
|
+
RecommendationJobOutputConfig.add_member(:compiled_output_config, Shapes::ShapeRef.new(shape: RecommendationJobCompiledOutputConfig, location_name: "CompiledOutputConfig"))
|
6228
|
+
RecommendationJobOutputConfig.struct_class = Types::RecommendationJobOutputConfig
|
6229
|
+
|
6211
6230
|
RecommendationJobResourceLimit.add_member(:max_number_of_tests, Shapes::ShapeRef.new(shape: MaxNumberOfTests, location_name: "MaxNumberOfTests"))
|
6212
6231
|
RecommendationJobResourceLimit.add_member(:max_parallel_of_tests, Shapes::ShapeRef.new(shape: MaxParallelOfTests, location_name: "MaxParallelOfTests"))
|
6213
6232
|
RecommendationJobResourceLimit.struct_class = Types::RecommendationJobResourceLimit
|