interface BatchTransformInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnMonitoringSchedule.BatchTransformInputProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnMonitoringSchedule.BatchTransformInputProperty |
Python | aws_cdk.aws_sagemaker.CfnMonitoringSchedule.BatchTransformInputProperty |
TypeScript | @aws-cdk/aws-sagemaker » CfnMonitoringSchedule » BatchTransformInputProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as sagemaker from '@aws-cdk/aws-sagemaker';
declare const json: any;
const batchTransformInputProperty: sagemaker.CfnMonitoringSchedule.BatchTransformInputProperty = {
dataCapturedDestinationS3Uri: 'dataCapturedDestinationS3Uri',
datasetFormat: {
csv: {
header: false,
},
json: json,
parquet: false,
},
localPath: 'localPath',
// the properties below are optional
s3DataDistributionType: 's3DataDistributionType',
s3InputMode: 's3InputMode',
};
Properties
| Name | Type | Description |
|---|---|---|
| data | string | CfnMonitoringSchedule.BatchTransformInputProperty.DataCapturedDestinationS3Uri. |
| dataset | IResolvable | Dataset | CfnMonitoringSchedule.BatchTransformInputProperty.DatasetFormat. |
| local | string | CfnMonitoringSchedule.BatchTransformInputProperty.LocalPath. |
| s3 | string | CfnMonitoringSchedule.BatchTransformInputProperty.S3DataDistributionType. |
| s3 | string | CfnMonitoringSchedule.BatchTransformInputProperty.S3InputMode. |
dataCapturedDestinationS3Uri
Type:
string
CfnMonitoringSchedule.BatchTransformInputProperty.DataCapturedDestinationS3Uri.
datasetFormat
Type:
IResolvable | Dataset
CfnMonitoringSchedule.BatchTransformInputProperty.DatasetFormat.
localPath
Type:
string
CfnMonitoringSchedule.BatchTransformInputProperty.LocalPath.
s3DataDistributionType?
Type:
string
(optional)
CfnMonitoringSchedule.BatchTransformInputProperty.S3DataDistributionType.
s3InputMode?
Type:
string
(optional)
CfnMonitoringSchedule.BatchTransformInputProperty.S3InputMode.

.NET
Java
Python
TypeScript