Skip to content

Commit 84879bd

Browse files
author
AWS
committed
Amazon SageMaker Service Update: Adding support for AdditionalS3DataSource, a data source used for training or inference that is in addition to the input dataset or model data.
1 parent 485afdc commit 84879bd

File tree

2 files changed

+41
-1
lines changed

2 files changed

+41
-1
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "Amazon SageMaker Service",
4+
"contributor": "",
5+
"description": "Adding support for AdditionalS3DataSource, a data source used for training or inference that is in addition to the input dataset or model data."
6+
}

services/sagemaker/src/main/resources/codegen-resources/service-2.json

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3895,6 +3895,32 @@
38953895
"max":15,
38963896
"min":1
38973897
},
3898+
"AdditionalS3DataSource":{
3899+
"type":"structure",
3900+
"required":[
3901+
"S3DataType",
3902+
"S3Uri"
3903+
],
3904+
"members":{
3905+
"S3DataType":{
3906+
"shape":"AdditionalS3DataSourceDataType",
3907+
"documentation":"<p>The data type of the additional data source that you specify for use in inference or training. </p>"
3908+
},
3909+
"S3Uri":{
3910+
"shape":"S3Uri",
3911+
"documentation":"<p>The uniform resource identifier (URI) used to identify an additional data source used in inference or training.</p>"
3912+
},
3913+
"CompressionType":{
3914+
"shape":"CompressionType",
3915+
"documentation":"<p>The type of compression used for an additional data source used in inference or training. Specify <code>None</code> if your additional data source is not compressed.</p>"
3916+
}
3917+
},
3918+
"documentation":"<p>A data source used for training or inference that is in addition to the input dataset or model data.</p>"
3919+
},
3920+
"AdditionalS3DataSourceDataType":{
3921+
"type":"string",
3922+
"enum":["S3Object"]
3923+
},
38983924
"AgentVersion":{
38993925
"type":"structure",
39003926
"required":[
@@ -25150,6 +25176,10 @@
2515025176
"NearestModelName":{
2515125177
"shape":"String",
2515225178
"documentation":"<p>The name of a pre-trained machine learning benchmarked by Amazon SageMaker Inference Recommender model that matches your model. You can find a list of benchmarked models by calling <code>ListModelMetadata</code>.</p>"
25179+
},
25180+
"AdditionalS3DataSource":{
25181+
"shape":"AdditionalS3DataSource",
25182+
"documentation":"<p>The additional data source that is used during inference in the Docker container for your model package.</p>"
2515325183
}
2515425184
},
2515525185
"documentation":"<p>Describes the Docker container for the model package.</p>"
@@ -30600,7 +30630,7 @@
3060030630
"members":{
3060130631
"SourcePipelineExecutionArn":{
3060230632
"shape":"PipelineExecutionArn",
30603-
"documentation":"<p>The ARN from a reference execution of the current pipeline. Used to copy input collaterals needed for the selected steps to run. The execution status of the pipeline can be either <code>Failed</code> or <code>Success</code>.</p> <p>This field is required if the steps you specify for <code>SelectedSteps</code> depend on output collaterals from any non-specified pipeline steps. For more information, see <a href=\"https://docs.aws.amazon.com/sagemaker/latest/dg/pipelines-selective-ex.html\">Selective Execution for Pipeline Steps</a>.</p>"
30633+
"documentation":"<p>The ARN from a reference execution of the current pipeline. Used to copy input collaterals needed for the selected steps to run. The execution status of the pipeline can be either <code>Failed</code> or <code>Success</code>.</p>"
3060430634
},
3060530635
"SelectedSteps":{
3060630636
"shape":"SelectedStepList",
@@ -32598,6 +32628,10 @@
3259832628
"SupportedTuningJobObjectiveMetrics":{
3259932629
"shape":"HyperParameterTuningJobObjectives",
3260032630
"documentation":"<p>A list of the metrics that the algorithm emits that can be used as the objective metric in a hyperparameter tuning job.</p>"
32631+
},
32632+
"AdditionalS3DataSource":{
32633+
"shape":"AdditionalS3DataSource",
32634+
"documentation":"<p>The additional data source used during the training job.</p>"
3260132635
}
3260232636
},
3260332637
"documentation":"<p>Defines how the algorithm is used for a training job.</p>"

0 commit comments

Comments
 (0)