aws-sdk-sagemaker 1.121.0 → 1.124.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sagemaker/client.rb +330 -244
- data/lib/aws-sdk-sagemaker/client_api.rb +23 -0
- data/lib/aws-sdk-sagemaker/types.rb +683 -402
- 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')
|
@@ -117,6 +119,7 @@ module Aws::SageMaker
|
|
117
119
|
AutoMLJobSummary = Shapes::StructureShape.new(name: 'AutoMLJobSummary')
|
118
120
|
AutoMLMaxResults = Shapes::IntegerShape.new(name: 'AutoMLMaxResults')
|
119
121
|
AutoMLMetricEnum = Shapes::StringShape.new(name: 'AutoMLMetricEnum')
|
122
|
+
AutoMLMetricExtendedEnum = Shapes::StringShape.new(name: 'AutoMLMetricExtendedEnum')
|
120
123
|
AutoMLNameContains = Shapes::StringShape.new(name: 'AutoMLNameContains')
|
121
124
|
AutoMLOutputDataConfig = Shapes::StructureShape.new(name: 'AutoMLOutputDataConfig')
|
122
125
|
AutoMLPartialFailureReason = Shapes::StructureShape.new(name: 'AutoMLPartialFailureReason')
|
@@ -1270,9 +1273,11 @@ module Aws::SageMaker
|
|
1270
1273
|
RStudioServerProUserGroup = Shapes::StringShape.new(name: 'RStudioServerProUserGroup')
|
1271
1274
|
RealtimeInferenceInstanceTypes = Shapes::ListShape.new(name: 'RealtimeInferenceInstanceTypes')
|
1272
1275
|
RecommendationJobArn = Shapes::StringShape.new(name: 'RecommendationJobArn')
|
1276
|
+
RecommendationJobCompiledOutputConfig = Shapes::StructureShape.new(name: 'RecommendationJobCompiledOutputConfig')
|
1273
1277
|
RecommendationJobDescription = Shapes::StringShape.new(name: 'RecommendationJobDescription')
|
1274
1278
|
RecommendationJobInputConfig = Shapes::StructureShape.new(name: 'RecommendationJobInputConfig')
|
1275
1279
|
RecommendationJobName = Shapes::StringShape.new(name: 'RecommendationJobName')
|
1280
|
+
RecommendationJobOutputConfig = Shapes::StructureShape.new(name: 'RecommendationJobOutputConfig')
|
1276
1281
|
RecommendationJobResourceLimit = Shapes::StructureShape.new(name: 'RecommendationJobResourceLimit')
|
1277
1282
|
RecommendationJobStatus = Shapes::StringShape.new(name: 'RecommendationJobStatus')
|
1278
1283
|
RecommendationJobStoppingConditions = Shapes::StructureShape.new(name: 'RecommendationJobStoppingConditions')
|
@@ -1592,6 +1597,7 @@ module Aws::SageMaker
|
|
1592
1597
|
UserProfileSortKey = Shapes::StringShape.new(name: 'UserProfileSortKey')
|
1593
1598
|
UserProfileStatus = Shapes::StringShape.new(name: 'UserProfileStatus')
|
1594
1599
|
UserSettings = Shapes::StructureShape.new(name: 'UserSettings')
|
1600
|
+
ValidationFraction = Shapes::FloatShape.new(name: 'ValidationFraction')
|
1595
1601
|
VariantName = Shapes::StringShape.new(name: 'VariantName')
|
1596
1602
|
VariantProperty = Shapes::StructureShape.new(name: 'VariantProperty')
|
1597
1603
|
VariantPropertyList = Shapes::ListShape.new(name: 'VariantPropertyList')
|
@@ -1831,6 +1837,7 @@ module Aws::SageMaker
|
|
1831
1837
|
AutoMLChannel.add_member(:compression_type, Shapes::ShapeRef.new(shape: CompressionType, location_name: "CompressionType"))
|
1832
1838
|
AutoMLChannel.add_member(:target_attribute_name, Shapes::ShapeRef.new(shape: TargetAttributeName, required: true, location_name: "TargetAttributeName"))
|
1833
1839
|
AutoMLChannel.add_member(:content_type, Shapes::ShapeRef.new(shape: ContentType, location_name: "ContentType"))
|
1840
|
+
AutoMLChannel.add_member(:channel_type, Shapes::ShapeRef.new(shape: AutoMLChannelType, location_name: "ChannelType"))
|
1834
1841
|
AutoMLChannel.struct_class = Types::AutoMLChannel
|
1835
1842
|
|
1836
1843
|
AutoMLContainerDefinition.add_member(:image, Shapes::ShapeRef.new(shape: ContainerImage, required: true, location_name: "Image"))
|
@@ -1843,6 +1850,9 @@ module Aws::SageMaker
|
|
1843
1850
|
AutoMLDataSource.add_member(:s3_data_source, Shapes::ShapeRef.new(shape: AutoMLS3DataSource, required: true, location_name: "S3DataSource"))
|
1844
1851
|
AutoMLDataSource.struct_class = Types::AutoMLDataSource
|
1845
1852
|
|
1853
|
+
AutoMLDataSplitConfig.add_member(:validation_fraction, Shapes::ShapeRef.new(shape: ValidationFraction, location_name: "ValidationFraction"))
|
1854
|
+
AutoMLDataSplitConfig.struct_class = Types::AutoMLDataSplitConfig
|
1855
|
+
|
1846
1856
|
AutoMLInputDataConfig.member = Shapes::ShapeRef.new(shape: AutoMLChannel)
|
1847
1857
|
|
1848
1858
|
AutoMLJobArtifacts.add_member(:candidate_definition_notebook_location, Shapes::ShapeRef.new(shape: CandidateDefinitionNotebookLocation, location_name: "CandidateDefinitionNotebookLocation"))
|
@@ -1856,6 +1866,7 @@ module Aws::SageMaker
|
|
1856
1866
|
|
1857
1867
|
AutoMLJobConfig.add_member(:completion_criteria, Shapes::ShapeRef.new(shape: AutoMLJobCompletionCriteria, location_name: "CompletionCriteria"))
|
1858
1868
|
AutoMLJobConfig.add_member(:security_config, Shapes::ShapeRef.new(shape: AutoMLSecurityConfig, location_name: "SecurityConfig"))
|
1869
|
+
AutoMLJobConfig.add_member(:data_split_config, Shapes::ShapeRef.new(shape: AutoMLDataSplitConfig, location_name: "DataSplitConfig"))
|
1859
1870
|
AutoMLJobConfig.struct_class = Types::AutoMLJobConfig
|
1860
1871
|
|
1861
1872
|
AutoMLJobObjective.add_member(:metric_name, Shapes::ShapeRef.new(shape: AutoMLMetricEnum, required: true, location_name: "MetricName"))
|
@@ -2360,6 +2371,7 @@ module Aws::SageMaker
|
|
2360
2371
|
CreateInferenceRecommendationsJobRequest.add_member(:input_config, Shapes::ShapeRef.new(shape: RecommendationJobInputConfig, required: true, location_name: "InputConfig"))
|
2361
2372
|
CreateInferenceRecommendationsJobRequest.add_member(:job_description, Shapes::ShapeRef.new(shape: RecommendationJobDescription, location_name: "JobDescription"))
|
2362
2373
|
CreateInferenceRecommendationsJobRequest.add_member(:stopping_conditions, Shapes::ShapeRef.new(shape: RecommendationJobStoppingConditions, location_name: "StoppingConditions"))
|
2374
|
+
CreateInferenceRecommendationsJobRequest.add_member(:output_config, Shapes::ShapeRef.new(shape: RecommendationJobOutputConfig, location_name: "OutputConfig"))
|
2363
2375
|
CreateInferenceRecommendationsJobRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
2364
2376
|
CreateInferenceRecommendationsJobRequest.struct_class = Types::CreateInferenceRecommendationsJobRequest
|
2365
2377
|
|
@@ -5309,6 +5321,7 @@ module Aws::SageMaker
|
|
5309
5321
|
MetricDatum.add_member(:metric_name, Shapes::ShapeRef.new(shape: AutoMLMetricEnum, location_name: "MetricName"))
|
5310
5322
|
MetricDatum.add_member(:value, Shapes::ShapeRef.new(shape: Float, location_name: "Value"))
|
5311
5323
|
MetricDatum.add_member(:set, Shapes::ShapeRef.new(shape: MetricSetSource, location_name: "Set"))
|
5324
|
+
MetricDatum.add_member(:standard_metric_name, Shapes::ShapeRef.new(shape: AutoMLMetricExtendedEnum, location_name: "StandardMetricName"))
|
5312
5325
|
MetricDatum.struct_class = Types::MetricDatum
|
5313
5326
|
|
5314
5327
|
MetricDefinition.add_member(:name, Shapes::ShapeRef.new(shape: MetricName, required: true, location_name: "Name"))
|
@@ -6183,6 +6196,8 @@ module Aws::SageMaker
|
|
6183
6196
|
|
6184
6197
|
QueryTypes.member = Shapes::ShapeRef.new(shape: String40)
|
6185
6198
|
|
6199
|
+
RSessionAppSettings.add_member(:default_resource_spec, Shapes::ShapeRef.new(shape: ResourceSpec, location_name: "DefaultResourceSpec"))
|
6200
|
+
RSessionAppSettings.add_member(:custom_images, Shapes::ShapeRef.new(shape: CustomImages, location_name: "CustomImages"))
|
6186
6201
|
RSessionAppSettings.struct_class = Types::RSessionAppSettings
|
6187
6202
|
|
6188
6203
|
RStudioServerProAppSettings.add_member(:access_status, Shapes::ShapeRef.new(shape: RStudioServerProAccessStatus, location_name: "AccessStatus"))
|
@@ -6201,13 +6216,21 @@ module Aws::SageMaker
|
|
6201
6216
|
|
6202
6217
|
RealtimeInferenceInstanceTypes.member = Shapes::ShapeRef.new(shape: ProductionVariantInstanceType)
|
6203
6218
|
|
6219
|
+
RecommendationJobCompiledOutputConfig.add_member(:s3_output_uri, Shapes::ShapeRef.new(shape: S3Uri, location_name: "S3OutputUri"))
|
6220
|
+
RecommendationJobCompiledOutputConfig.struct_class = Types::RecommendationJobCompiledOutputConfig
|
6221
|
+
|
6204
6222
|
RecommendationJobInputConfig.add_member(:model_package_version_arn, Shapes::ShapeRef.new(shape: ModelPackageArn, required: true, location_name: "ModelPackageVersionArn"))
|
6205
6223
|
RecommendationJobInputConfig.add_member(:job_duration_in_seconds, Shapes::ShapeRef.new(shape: JobDurationInSeconds, location_name: "JobDurationInSeconds"))
|
6206
6224
|
RecommendationJobInputConfig.add_member(:traffic_pattern, Shapes::ShapeRef.new(shape: TrafficPattern, location_name: "TrafficPattern"))
|
6207
6225
|
RecommendationJobInputConfig.add_member(:resource_limit, Shapes::ShapeRef.new(shape: RecommendationJobResourceLimit, location_name: "ResourceLimit"))
|
6208
6226
|
RecommendationJobInputConfig.add_member(:endpoint_configurations, Shapes::ShapeRef.new(shape: EndpointInputConfigurations, location_name: "EndpointConfigurations"))
|
6227
|
+
RecommendationJobInputConfig.add_member(:volume_kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "VolumeKmsKeyId"))
|
6209
6228
|
RecommendationJobInputConfig.struct_class = Types::RecommendationJobInputConfig
|
6210
6229
|
|
6230
|
+
RecommendationJobOutputConfig.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
|
6231
|
+
RecommendationJobOutputConfig.add_member(:compiled_output_config, Shapes::ShapeRef.new(shape: RecommendationJobCompiledOutputConfig, location_name: "CompiledOutputConfig"))
|
6232
|
+
RecommendationJobOutputConfig.struct_class = Types::RecommendationJobOutputConfig
|
6233
|
+
|
6211
6234
|
RecommendationJobResourceLimit.add_member(:max_number_of_tests, Shapes::ShapeRef.new(shape: MaxNumberOfTests, location_name: "MaxNumberOfTests"))
|
6212
6235
|
RecommendationJobResourceLimit.add_member(:max_parallel_of_tests, Shapes::ShapeRef.new(shape: MaxParallelOfTests, location_name: "MaxParallelOfTests"))
|
6213
6236
|
RecommendationJobResourceLimit.struct_class = Types::RecommendationJobResourceLimit
|