interface ModelBiasJobInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnModelBiasJobDefinitionPropsMixin.ModelBiasJobInputProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnModelBiasJobDefinitionPropsMixin_ModelBiasJobInputProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnModelBiasJobDefinitionPropsMixin.ModelBiasJobInputProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnModelBiasJobDefinitionPropsMixin.ModelBiasJobInputProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnModelBiasJobDefinitionPropsMixin » ModelBiasJobInputProperty |
Inputs for the model bias 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/cfn-property-mixins';
const modelBiasJobInputProperty: sagemaker.CfnModelBiasJobDefinitionPropsMixin.ModelBiasJobInputProperty = {
batchTransformInput: {
dataCapturedDestinationS3Uri: 'dataCapturedDestinationS3Uri',
datasetFormat: {
csv: {
header: false,
},
json: {
line: false,
},
parquet: false,
},
endTimeOffset: 'endTimeOffset',
featuresAttribute: 'featuresAttribute',
inferenceAttribute: 'inferenceAttribute',
localPath: 'localPath',
probabilityAttribute: 'probabilityAttribute',
probabilityThresholdAttribute: 123,
s3DataDistributionType: 's3DataDistributionType',
s3InputMode: 's3InputMode',
startTimeOffset: 'startTimeOffset',
},
endpointInput: {
endpointName: 'endpointName',
endTimeOffset: 'endTimeOffset',
featuresAttribute: 'featuresAttribute',
inferenceAttribute: 'inferenceAttribute',
localPath: 'localPath',
probabilityAttribute: 'probabilityAttribute',
probabilityThresholdAttribute: 123,
s3DataDistributionType: 's3DataDistributionType',
s3InputMode: 's3InputMode',
startTimeOffset: 'startTimeOffset',
},
groundTruthS3Input: {
s3Uri: 's3Uri',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| batch | IResolvable | Batch | Input object for the batch transform job. |
| endpoint | IResolvable | Endpoint | Input object for the endpoint. |
| ground | IResolvable | Monitoring | Location of ground truth labels to use in model bias job. |
batchTransformInput?
Type:
IResolvable | Batch
(optional)
Input object for the batch transform job.
endpointInput?
Type:
IResolvable | Endpoint
(optional)
Input object for the endpoint.
groundTruthS3Input?
Type:
IResolvable | Monitoring
(optional)
Location of ground truth labels to use in model bias job.

.NET
Go
Java
Python
TypeScript