Interface CfnTransformJobPropsMixin.ModelClientConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTransformJobPropsMixin.ModelClientConfigProperty.Jsii$Proxy
- Enclosing class:
CfnTransformJobPropsMixin
@Stability(Stable)
public static interface CfnTransformJobPropsMixin.ModelClientConfigProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.sagemaker.*;
ModelClientConfigProperty modelClientConfigProperty = ModelClientConfigProperty.builder()
.invocationsMaxRetries(123)
.invocationsTimeoutInSeconds(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTransformJobPropsMixin.ModelClientConfigPropertystatic final classAn implementation forCfnTransformJobPropsMixin.ModelClientConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInvocationsMaxRetries
The maximum number of retries when invocation requests are failing.- See Also:
-
getInvocationsTimeoutInSeconds
The timeout value in seconds for an invocation request.- See Also:
-
builder
-