interface ModelExplainabilityJobInputProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Sagemaker.CfnModelExplainabilityJobDefinition.ModelExplainabilityJobInputProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnModelExplainabilityJobDefinition_ModelExplainabilityJobInputProperty |
![]() | software.amazon.awscdk.services.sagemaker.CfnModelExplainabilityJobDefinition.ModelExplainabilityJobInputProperty |
![]() | aws_cdk.aws_sagemaker.CfnModelExplainabilityJobDefinition.ModelExplainabilityJobInputProperty |
![]() | aws-cdk-lib » aws_sagemaker » CfnModelExplainabilityJobDefinition » ModelExplainabilityJobInputProperty |
Inputs for the model explainability job.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const modelExplainabilityJobInputProperty: sagemaker.CfnModelExplainabilityJobDefinition.ModelExplainabilityJobInputProperty = {
batchTransformInput: {
dataCapturedDestinationS3Uri: 'dataCapturedDestinationS3Uri',
datasetFormat: {
csv: {
header: false,
},
json: {
line: false,
},
parquet: false,
},
localPath: 'localPath',
// the properties below are optional
featuresAttribute: 'featuresAttribute',
inferenceAttribute: 'inferenceAttribute',
probabilityAttribute: 'probabilityAttribute',
s3DataDistributionType: 's3DataDistributionType',
s3InputMode: 's3InputMode',
},
endpointInput: {
endpointName: 'endpointName',
localPath: 'localPath',
// the properties below are optional
featuresAttribute: 'featuresAttribute',
inferenceAttribute: 'inferenceAttribute',
probabilityAttribute: 'probabilityAttribute',
s3DataDistributionType: 's3DataDistributionType',
s3InputMode: 's3InputMode',
},
};
Properties
Name | Type | Description |
---|---|---|
batch | IResolvable | Batch | Input object for the batch transform job. |
endpoint | IResolvable | Endpoint | Input object for the endpoint. |
batchTransformInput?
Type:
IResolvable
|
Batch
(optional)
Input object for the batch transform job.
endpointInput?
Type:
IResolvable
|
Endpoint
(optional)
Input object for the endpoint.