aws-cdk-lib.aws_sagemaker.CfnModelExplainabilityJobDefinition.EndpointInputProperty

interface EndpointInputProperty

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnModelExplainabilityJobDefinition.EndpointInputProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnModelExplainabilityJobDefinition_EndpointInputProperty
Javasoftware.amazon.awscdk.services.sagemaker.CfnModelExplainabilityJobDefinition.EndpointInputProperty
Pythonaws_cdk.aws_sagemaker.CfnModelExplainabilityJobDefinition.EndpointInputProperty
TypeScript aws-cdk-lib » aws_sagemaker » CfnModelExplainabilityJobDefinition » EndpointInputProperty

Input object for the endpoint.

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 endpointInputProperty: sagemaker.CfnModelExplainabilityJobDefinition.EndpointInputProperty = {
  endpointName: 'endpointName',
  localPath: 'localPath',

  // the properties below are optional
  featuresAttribute: 'featuresAttribute',
  inferenceAttribute: 'inferenceAttribute',
  probabilityAttribute: 'probabilityAttribute',
  s3DataDistributionType: 's3DataDistributionType',
  s3InputMode: 's3InputMode',
};

Properties

NameTypeDescription
endpointNamestringAn endpoint in customer's account which has enabled DataCaptureConfig enabled.
localPathstringPath to the filesystem where the endpoint data is available to the container.
featuresAttribute?stringThe attributes of the input data that are the input features.
inferenceAttribute?stringThe attribute of the input data that represents the ground truth label.
probabilityAttribute?stringIn a classification problem, the attribute that represents the class probability.
s3DataDistributionType?stringWhether input data distributed in Amazon S3 is fully replicated or sharded by an S3 key.
s3InputMode?stringWhether the Pipe or File is used as the input mode for transferring data for the monitoring job.

endpointName

Type: string

An endpoint in customer's account which has enabled DataCaptureConfig enabled.


localPath

Type: string

Path to the filesystem where the endpoint data is available to the container.


featuresAttribute?

Type: string (optional)

The attributes of the input data that are the input features.


inferenceAttribute?

Type: string (optional)

The attribute of the input data that represents the ground truth label.


probabilityAttribute?

Type: string (optional)

In a classification problem, the attribute that represents the class probability.


s3DataDistributionType?

Type: string (optional)

Whether input data distributed in Amazon S3 is fully replicated or sharded by an S3 key.

Defaults to FullyReplicated


s3InputMode?

Type: string (optional)

Whether the Pipe or File is used as the input mode for transferring data for the monitoring job.

Pipe mode is recommended for large datasets. File mode is useful for small files that fit in memory. Defaults to File .