interface ModelClientConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnTransformJob.ModelClientConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnTransformJob_ModelClientConfigProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnTransformJob.ModelClientConfigProperty |
Python | aws_cdk.aws_sagemaker.CfnTransformJob.ModelClientConfigProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnTransformJob » ModelClientConfigProperty |
Configures the timeout and maximum number of retries for processing a transform job invocation.
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 modelClientConfigProperty: sagemaker.CfnTransformJob.ModelClientConfigProperty = {
invocationsMaxRetries: 123,
invocationsTimeoutInSeconds: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| invocations | number | The maximum number of retries when invocation requests are failing. |
| invocations | number | The timeout value in seconds for an invocation request. |
invocationsMaxRetries?
Type:
number
(optional)
The maximum number of retries when invocation requests are failing.
invocationsTimeoutInSeconds?
Type:
number
(optional)
The timeout value in seconds for an invocation request.

.NET
Go
Java
Python
TypeScript