Interface CfnEndpointConfigPropsMixin.AsyncInferenceConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEndpointConfigPropsMixin.AsyncInferenceConfigProperty.Jsii$Proxy
- Enclosing class:
CfnEndpointConfigPropsMixin
@Stability(Stable)
public static interface CfnEndpointConfigPropsMixin.AsyncInferenceConfigProperty
extends software.amazon.jsii.JsiiSerializable
Specifies configuration for how an endpoint performs asynchronous inference.
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.*;
AsyncInferenceConfigProperty asyncInferenceConfigProperty = AsyncInferenceConfigProperty.builder()
.clientConfig(AsyncInferenceClientConfigProperty.builder()
.maxConcurrentInvocationsPerInstance(123)
.build())
.outputConfig(AsyncInferenceOutputConfigProperty.builder()
.kmsKeyId("kmsKeyId")
.notificationConfig(AsyncInferenceNotificationConfigProperty.builder()
.errorTopic("errorTopic")
.includeInferenceResponseIn(List.of("includeInferenceResponseIn"))
.successTopic("successTopic")
.build())
.s3FailurePath("s3FailurePath")
.s3OutputPath("s3OutputPath")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEndpointConfigPropsMixin.AsyncInferenceConfigPropertystatic final classAn implementation forCfnEndpointConfigPropsMixin.AsyncInferenceConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClientConfig
Configures the behavior of the client used by SageMaker to interact with the model container during asynchronous inference.Returns union: either
IResolvableorCfnEndpointConfigPropsMixin.AsyncInferenceClientConfigProperty- See Also:
-
getOutputConfig
Specifies the configuration for asynchronous inference invocation outputs.Returns union: either
IResolvableorCfnEndpointConfigPropsMixin.AsyncInferenceOutputConfigProperty- See Also:
-
builder
@Stability(Stable) static CfnEndpointConfigPropsMixin.AsyncInferenceConfigProperty.Builder builder()
-