Skip to content

Commit 126b1c6

Browse files
author
awstools
committed
feat(client-sagemaker): Including DataCaptureConfig key in the Amazon Sagemaker Search's transform job object
1 parent 70146be commit 126b1c6

File tree

4 files changed

+21
-0
lines changed

4 files changed

+21
-0
lines changed

clients/client-sagemaker/src/commands/SearchCommand.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -831,6 +831,11 @@ export interface SearchCommandOutput extends SearchResponse, __MetadataBearer {}
831831
* // RunName: "STRING_VALUE",
832832
* // },
833833
* // Tags: "<TagList>",
834+
* // DataCaptureConfig: { // BatchDataCaptureConfig
835+
* // DestinationS3Uri: "STRING_VALUE", // required
836+
* // KmsKeyId: "STRING_VALUE",
837+
* // GenerateInferenceId: true || false,
838+
* // },
834839
* // },
835840
* // },
836841
* // LineageGroupArn: "STRING_VALUE",
@@ -1821,6 +1826,11 @@ export interface SearchCommandOutput extends SearchResponse, __MetadataBearer {}
18211826
* // },
18221827
* // ExperimentConfig: "<ExperimentConfig>",
18231828
* // Tags: "<TagList>",
1829+
* // DataCaptureConfig: {
1830+
* // DestinationS3Uri: "STRING_VALUE", // required
1831+
* // KmsKeyId: "STRING_VALUE",
1832+
* // GenerateInferenceId: true || false,
1833+
* // },
18241834
* // },
18251835
* // MonitoringSchedules: [ // ModelDashboardMonitoringSchedules
18261836
* // { // ModelDashboardMonitoringSchedule

clients/client-sagemaker/src/models/models_3.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import {
2121
AutoMLJobSummary,
2222
AutoMLSortBy,
2323
AutoMLSortOrder,
24+
BatchDataCaptureConfig,
2425
BatchStrategy,
2526
CacheHitResult,
2627
CallbackStepMetadata,
@@ -9867,6 +9868,12 @@ export interface TransformJob {
98679868
* <p>A list of tags associated with the transform job.</p>
98689869
*/
98699870
Tags?: Tag[];
9871+
9872+
/**
9873+
* @public
9874+
* <p>Configuration to control how SageMaker captures inference data for batch transform jobs.</p>
9875+
*/
9876+
DataCaptureConfig?: BatchDataCaptureConfig;
98709877
}
98719878

98729879
/**

clients/client-sagemaker/src/protocols/Aws_json1_1.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28110,6 +28110,7 @@ const de_TransformJob = (output: any, context: __SerdeContext): TransformJob =>
2811028110
AutoMLJobArn: __expectString,
2811128111
BatchStrategy: __expectString,
2811228112
CreationTime: (_: any) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
28113+
DataCaptureConfig: _json,
2811328114
DataProcessing: _json,
2811428115
Environment: _json,
2811528116
ExperimentConfig: _json,

codegen/sdk-codegen/aws-models/sagemaker.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55952,6 +55952,9 @@
5595255952
"traits": {
5595355953
"smithy.api#documentation": "<p>A list of tags associated with the transform job.</p>"
5595455954
}
55955+
},
55956+
"DataCaptureConfig": {
55957+
"target": "com.amazonaws.sagemaker#BatchDataCaptureConfig"
5595555958
}
5595655959
},
5595755960
"traits": {

0 commit comments

Comments
 (0)