aws-sdk-sagemaker 1.122.0 → 1.125.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 +339 -255
- data/lib/aws-sdk-sagemaker/client_api.rb +17 -0
- data/lib/aws-sdk-sagemaker/types.rb +670 -413
- data/lib/aws-sdk-sagemaker.rb +1 -1
- metadata +2 -2
@@ -96,12 +96,15 @@ module Aws::SageMaker
|
|
96
96
|
AuthMode = Shapes::StringShape.new(name: 'AuthMode')
|
97
97
|
AutoGenerateEndpointName = Shapes::BooleanShape.new(name: 'AutoGenerateEndpointName')
|
98
98
|
AutoMLCandidate = Shapes::StructureShape.new(name: 'AutoMLCandidate')
|
99
|
+
AutoMLCandidateGenerationConfig = Shapes::StructureShape.new(name: 'AutoMLCandidateGenerationConfig')
|
99
100
|
AutoMLCandidateStep = Shapes::StructureShape.new(name: 'AutoMLCandidateStep')
|
100
101
|
AutoMLCandidates = Shapes::ListShape.new(name: 'AutoMLCandidates')
|
101
102
|
AutoMLChannel = Shapes::StructureShape.new(name: 'AutoMLChannel')
|
103
|
+
AutoMLChannelType = Shapes::StringShape.new(name: 'AutoMLChannelType')
|
102
104
|
AutoMLContainerDefinition = Shapes::StructureShape.new(name: 'AutoMLContainerDefinition')
|
103
105
|
AutoMLContainerDefinitions = Shapes::ListShape.new(name: 'AutoMLContainerDefinitions')
|
104
106
|
AutoMLDataSource = Shapes::StructureShape.new(name: 'AutoMLDataSource')
|
107
|
+
AutoMLDataSplitConfig = Shapes::StructureShape.new(name: 'AutoMLDataSplitConfig')
|
105
108
|
AutoMLFailureReason = Shapes::StringShape.new(name: 'AutoMLFailureReason')
|
106
109
|
AutoMLInputDataConfig = Shapes::ListShape.new(name: 'AutoMLInputDataConfig')
|
107
110
|
AutoMLJobArn = Shapes::StringShape.new(name: 'AutoMLJobArn')
|
@@ -117,6 +120,7 @@ module Aws::SageMaker
|
|
117
120
|
AutoMLJobSummary = Shapes::StructureShape.new(name: 'AutoMLJobSummary')
|
118
121
|
AutoMLMaxResults = Shapes::IntegerShape.new(name: 'AutoMLMaxResults')
|
119
122
|
AutoMLMetricEnum = Shapes::StringShape.new(name: 'AutoMLMetricEnum')
|
123
|
+
AutoMLMetricExtendedEnum = Shapes::StringShape.new(name: 'AutoMLMetricExtendedEnum')
|
120
124
|
AutoMLNameContains = Shapes::StringShape.new(name: 'AutoMLNameContains')
|
121
125
|
AutoMLOutputDataConfig = Shapes::StructureShape.new(name: 'AutoMLOutputDataConfig')
|
122
126
|
AutoMLPartialFailureReason = Shapes::StructureShape.new(name: 'AutoMLPartialFailureReason')
|
@@ -1594,6 +1598,7 @@ module Aws::SageMaker
|
|
1594
1598
|
UserProfileSortKey = Shapes::StringShape.new(name: 'UserProfileSortKey')
|
1595
1599
|
UserProfileStatus = Shapes::StringShape.new(name: 'UserProfileStatus')
|
1596
1600
|
UserSettings = Shapes::StructureShape.new(name: 'UserSettings')
|
1601
|
+
ValidationFraction = Shapes::FloatShape.new(name: 'ValidationFraction')
|
1597
1602
|
VariantName = Shapes::StringShape.new(name: 'VariantName')
|
1598
1603
|
VariantProperty = Shapes::StructureShape.new(name: 'VariantProperty')
|
1599
1604
|
VariantPropertyList = Shapes::ListShape.new(name: 'VariantPropertyList')
|
@@ -1822,6 +1827,9 @@ module Aws::SageMaker
|
|
1822
1827
|
AutoMLCandidate.add_member(:candidate_properties, Shapes::ShapeRef.new(shape: CandidateProperties, location_name: "CandidateProperties"))
|
1823
1828
|
AutoMLCandidate.struct_class = Types::AutoMLCandidate
|
1824
1829
|
|
1830
|
+
AutoMLCandidateGenerationConfig.add_member(:feature_specification_s3_uri, Shapes::ShapeRef.new(shape: S3Uri, location_name: "FeatureSpecificationS3Uri"))
|
1831
|
+
AutoMLCandidateGenerationConfig.struct_class = Types::AutoMLCandidateGenerationConfig
|
1832
|
+
|
1825
1833
|
AutoMLCandidateStep.add_member(:candidate_step_type, Shapes::ShapeRef.new(shape: CandidateStepType, required: true, location_name: "CandidateStepType"))
|
1826
1834
|
AutoMLCandidateStep.add_member(:candidate_step_arn, Shapes::ShapeRef.new(shape: CandidateStepArn, required: true, location_name: "CandidateStepArn"))
|
1827
1835
|
AutoMLCandidateStep.add_member(:candidate_step_name, Shapes::ShapeRef.new(shape: CandidateStepName, required: true, location_name: "CandidateStepName"))
|
@@ -1833,6 +1841,7 @@ module Aws::SageMaker
|
|
1833
1841
|
AutoMLChannel.add_member(:compression_type, Shapes::ShapeRef.new(shape: CompressionType, location_name: "CompressionType"))
|
1834
1842
|
AutoMLChannel.add_member(:target_attribute_name, Shapes::ShapeRef.new(shape: TargetAttributeName, required: true, location_name: "TargetAttributeName"))
|
1835
1843
|
AutoMLChannel.add_member(:content_type, Shapes::ShapeRef.new(shape: ContentType, location_name: "ContentType"))
|
1844
|
+
AutoMLChannel.add_member(:channel_type, Shapes::ShapeRef.new(shape: AutoMLChannelType, location_name: "ChannelType"))
|
1836
1845
|
AutoMLChannel.struct_class = Types::AutoMLChannel
|
1837
1846
|
|
1838
1847
|
AutoMLContainerDefinition.add_member(:image, Shapes::ShapeRef.new(shape: ContainerImage, required: true, location_name: "Image"))
|
@@ -1845,6 +1854,9 @@ module Aws::SageMaker
|
|
1845
1854
|
AutoMLDataSource.add_member(:s3_data_source, Shapes::ShapeRef.new(shape: AutoMLS3DataSource, required: true, location_name: "S3DataSource"))
|
1846
1855
|
AutoMLDataSource.struct_class = Types::AutoMLDataSource
|
1847
1856
|
|
1857
|
+
AutoMLDataSplitConfig.add_member(:validation_fraction, Shapes::ShapeRef.new(shape: ValidationFraction, location_name: "ValidationFraction"))
|
1858
|
+
AutoMLDataSplitConfig.struct_class = Types::AutoMLDataSplitConfig
|
1859
|
+
|
1848
1860
|
AutoMLInputDataConfig.member = Shapes::ShapeRef.new(shape: AutoMLChannel)
|
1849
1861
|
|
1850
1862
|
AutoMLJobArtifacts.add_member(:candidate_definition_notebook_location, Shapes::ShapeRef.new(shape: CandidateDefinitionNotebookLocation, location_name: "CandidateDefinitionNotebookLocation"))
|
@@ -1858,6 +1870,8 @@ module Aws::SageMaker
|
|
1858
1870
|
|
1859
1871
|
AutoMLJobConfig.add_member(:completion_criteria, Shapes::ShapeRef.new(shape: AutoMLJobCompletionCriteria, location_name: "CompletionCriteria"))
|
1860
1872
|
AutoMLJobConfig.add_member(:security_config, Shapes::ShapeRef.new(shape: AutoMLSecurityConfig, location_name: "SecurityConfig"))
|
1873
|
+
AutoMLJobConfig.add_member(:data_split_config, Shapes::ShapeRef.new(shape: AutoMLDataSplitConfig, location_name: "DataSplitConfig"))
|
1874
|
+
AutoMLJobConfig.add_member(:candidate_generation_config, Shapes::ShapeRef.new(shape: AutoMLCandidateGenerationConfig, location_name: "CandidateGenerationConfig"))
|
1861
1875
|
AutoMLJobConfig.struct_class = Types::AutoMLJobConfig
|
1862
1876
|
|
1863
1877
|
AutoMLJobObjective.add_member(:metric_name, Shapes::ShapeRef.new(shape: AutoMLMetricEnum, required: true, location_name: "MetricName"))
|
@@ -5312,6 +5326,7 @@ module Aws::SageMaker
|
|
5312
5326
|
MetricDatum.add_member(:metric_name, Shapes::ShapeRef.new(shape: AutoMLMetricEnum, location_name: "MetricName"))
|
5313
5327
|
MetricDatum.add_member(:value, Shapes::ShapeRef.new(shape: Float, location_name: "Value"))
|
5314
5328
|
MetricDatum.add_member(:set, Shapes::ShapeRef.new(shape: MetricSetSource, location_name: "Set"))
|
5329
|
+
MetricDatum.add_member(:standard_metric_name, Shapes::ShapeRef.new(shape: AutoMLMetricExtendedEnum, location_name: "StandardMetricName"))
|
5315
5330
|
MetricDatum.struct_class = Types::MetricDatum
|
5316
5331
|
|
5317
5332
|
MetricDefinition.add_member(:name, Shapes::ShapeRef.new(shape: MetricName, required: true, location_name: "Name"))
|
@@ -6186,6 +6201,8 @@ module Aws::SageMaker
|
|
6186
6201
|
|
6187
6202
|
QueryTypes.member = Shapes::ShapeRef.new(shape: String40)
|
6188
6203
|
|
6204
|
+
RSessionAppSettings.add_member(:default_resource_spec, Shapes::ShapeRef.new(shape: ResourceSpec, location_name: "DefaultResourceSpec"))
|
6205
|
+
RSessionAppSettings.add_member(:custom_images, Shapes::ShapeRef.new(shape: CustomImages, location_name: "CustomImages"))
|
6189
6206
|
RSessionAppSettings.struct_class = Types::RSessionAppSettings
|
6190
6207
|
|
6191
6208
|
RStudioServerProAppSettings.add_member(:access_status, Shapes::ShapeRef.new(shape: RStudioServerProAccessStatus, location_name: "AccessStatus"))
|