interface EndpointInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnDataQualityJobDefinitionPropsMixin.EndpointInputProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnDataQualityJobDefinitionPropsMixin_EndpointInputProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnDataQualityJobDefinitionPropsMixin.EndpointInputProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnDataQualityJobDefinitionPropsMixin.EndpointInputProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnDataQualityJobDefinitionPropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const endpointInputProperty: sagemaker_mixins.CfnDataQualityJobDefinitionPropsMixin.EndpointInputProperty = {
endpointName: 'endpointName',
excludeFeaturesAttribute: 'excludeFeaturesAttribute',
localPath: 'localPath',
s3DataDistributionType: 's3DataDistributionType',
s3InputMode: 's3InputMode',
};
Properties
| Name | Type | Description |
|---|---|---|
| endpoint | string | An endpoint in customer's account which has enabled DataCaptureConfig enabled. |
| exclude | string | The attributes of the input data to exclude from the analysis. |
| local | string | Path to the filesystem where the endpoint data is available to the container. |
| s3 | string | Whether input data distributed in Amazon S3 is fully replicated or sharded by an Amazon S3 key. |
| s3 | string | Whether the Pipe or File is used as the input mode for transferring data for the monitoring job. |
endpointName?
Type:
string
(optional)
An endpoint in customer's account which has enabled DataCaptureConfig enabled.
excludeFeaturesAttribute?
Type:
string
(optional)
The attributes of the input data to exclude from the analysis.
localPath?
Type:
string
(optional)
Path to the filesystem where the endpoint data is available to the container.
s3DataDistributionType?
Type:
string
(optional)
Whether input data distributed in Amazon S3 is fully replicated or sharded by an Amazon 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 .

.NET
Go
Java
Python
TypeScript