Skip to content

Commit

Permalink
docs(client-sagemaker): Amazon Sagemaker Autopilot adds support for P…
Browse files Browse the repository at this point in the history
…arquet file input to NLP text classification jobs.
  • Loading branch information
awstools committed Jun 1, 2023
1 parent 861251b commit 0916451
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
13 changes: 5 additions & 8 deletions clients/client-sagemaker/src/models/models_0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5028,13 +5028,12 @@ export interface AutoMLJobChannel {
* content types for different problems:</p>
* <ul>
* <li>
* <p>ImageClassification: <code>image/png</code>, <code>image/jpeg</code>,
* <code>image/*</code>
* </p>
* <p>ImageClassification: <code>image/png</code>, <code>image/jpeg</code>, or
* <code>image/*</code>. The default value is <code>image/*</code>.</p>
* </li>
* <li>
* <p>TextClassification: <code>text/csv;header=present</code>
* </p>
* <p>TextClassification: <code>text/csv;header=present</code> or <code>x-application/vnd.amazon+parquet</code>.
* The default value is <code>text/csv;header=present</code>.</p>
* </li>
* </ul>
*/
Expand Down Expand Up @@ -10072,9 +10071,7 @@ export type RStudioServerProUserGroup = (typeof RStudioServerProUserGroup)[keyof
/**
* @public
* <p>A collection of settings that configure user interaction with the
* <code>RStudioServerPro</code> app. <code>RStudioServerProAppSettings</code> cannot
* be updated. The <code>RStudioServerPro</code> app must be deleted and a new one created
* to make any changes.</p>
* <code>RStudioServerPro</code> app.</p>
*/
export interface RStudioServerProAppSettings {
/**
Expand Down
9 changes: 6 additions & 3 deletions clients/client-sagemaker/src/models/models_2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -392,12 +392,15 @@ export type RecommendationStatus = (typeof RecommendationStatus)[keyof typeof Re

/**
* @public
* <p>A set of recommended deployment configurations for the model.</p>
* <p>A set of recommended deployment configurations for the model. To get more advanced recommendations, see
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateInferenceRecommendationsJob.html">CreateInferenceRecommendationsJob</a>
* to create an inference recommendation job.</p>
*/
export interface DeploymentRecommendation {
/**
* <p>Status of the deployment recommendation. <code>NOT_APPLICABLE</code> means that SageMaker
* is unable to provide a default recommendation for the model using the information provided.</p>
* <p>Status of the deployment recommendation. The status <code>NOT_APPLICABLE</code> means that SageMaker
* is unable to provide a default recommendation for the model using the information provided. If the deployment status is <code>IN_PROGRESS</code>,
* retry your API call after a few seconds to get a <code>COMPLETED</code> deployment recommendation.</p>
*/
RecommendationStatus: RecommendationStatus | string | undefined;

Expand Down
8 changes: 4 additions & 4 deletions codegen/sdk-codegen/aws-models/sagemaker.json
Original file line number Diff line number Diff line change
Expand Up @@ -2546,7 +2546,7 @@
"ContentType": {
"target": "com.amazonaws.sagemaker#ContentType",
"traits": {
"smithy.api#documentation": "<p>The content type of the data from the input source. The following are the allowed\n content types for different problems:</p>\n <ul>\n <li>\n <p>ImageClassification: <code>image/png</code>, <code>image/jpeg</code>,\n <code>image/*</code>\n </p>\n </li>\n <li>\n <p>TextClassification: <code>text/csv;header=present</code>\n </p>\n </li>\n </ul>"
"smithy.api#documentation": "<p>The content type of the data from the input source. The following are the allowed\n content types for different problems:</p>\n <ul>\n <li>\n <p>ImageClassification: <code>image/png</code>, <code>image/jpeg</code>, or\n <code>image/*</code>. The default value is <code>image/*</code>.</p>\n </li>\n <li>\n <p>TextClassification: <code>text/csv;header=present</code> or <code>x-application/vnd.amazon+parquet</code>. \n The default value is <code>text/csv;header=present</code>.</p>\n </li>\n </ul>"
}
},
"CompressionType": {
Expand Down Expand Up @@ -13389,7 +13389,7 @@
"RecommendationStatus": {
"target": "com.amazonaws.sagemaker#RecommendationStatus",
"traits": {
"smithy.api#documentation": "<p>Status of the deployment recommendation. <code>NOT_APPLICABLE</code> means that SageMaker\n is unable to provide a default recommendation for the model using the information provided.</p>",
"smithy.api#documentation": "<p>Status of the deployment recommendation. The status <code>NOT_APPLICABLE</code> means that SageMaker\n is unable to provide a default recommendation for the model using the information provided. If the deployment status is <code>IN_PROGRESS</code>,\n retry your API call after a few seconds to get a <code>COMPLETED</code> deployment recommendation.</p>",
"smithy.api#required": {}
}
},
Expand All @@ -13401,7 +13401,7 @@
}
},
"traits": {
"smithy.api#documentation": "<p>A set of recommended deployment configurations for the model.</p>"
"smithy.api#documentation": "<p>A set of recommended deployment configurations for the model. To get more advanced recommendations, see\n <a href=\"https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateInferenceRecommendationsJob.html\">CreateInferenceRecommendationsJob</a>\n to create an inference recommendation job.</p>"
}
},
"com.amazonaws.sagemaker#DeploymentStage": {
Expand Down Expand Up @@ -45911,7 +45911,7 @@
}
},
"traits": {
"smithy.api#documentation": "<p>A collection of settings that configure user interaction with the\n <code>RStudioServerPro</code> app. <code>RStudioServerProAppSettings</code> cannot\n be updated. The <code>RStudioServerPro</code> app must be deleted and a new one created\n to make any changes.</p>"
"smithy.api#documentation": "<p>A collection of settings that configure user interaction with the\n <code>RStudioServerPro</code> app.</p>"
}
},
"com.amazonaws.sagemaker#RStudioServerProDomainSettings": {
Expand Down

0 comments on commit 0916451

Please sign in to comment.