@Stability(value=Stable)
public static interface CfnEndpointConfig.AsyncInferenceConfigProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.sagemaker.*;
AsyncInferenceConfigProperty asyncInferenceConfigProperty = AsyncInferenceConfigProperty.builder()
.outputConfig(AsyncInferenceOutputConfigProperty.builder()
.s3OutputPath("s3OutputPath")
// the properties below are optional
.kmsKeyId("kmsKeyId")
.notificationConfig(AsyncInferenceNotificationConfigProperty.builder()
.errorTopic("errorTopic")
.successTopic("successTopic")
.build())
.build())
// the properties below are optional
.clientConfig(AsyncInferenceClientConfigProperty.builder()
.maxConcurrentInvocationsPerInstance(123)
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnEndpointConfig.AsyncInferenceConfigProperty.Builder
A builder for
CfnEndpointConfig.AsyncInferenceConfigProperty |
static class |
CfnEndpointConfig.AsyncInferenceConfigProperty.Jsii$Proxy
An implementation for
CfnEndpointConfig.AsyncInferenceConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnEndpointConfig.AsyncInferenceConfigProperty.Builder |
builder() |
default Object |
getClientConfig()
Configures the behavior of the client used by SageMaker to interact with the model container during asynchronous inference.
|
Object |
getOutputConfig()
Specifies the configuration for asynchronous inference invocation outputs.
|
@Stability(value=Stable) @NotNull Object getOutputConfig()
@Stability(value=Stable) @Nullable default Object getClientConfig()
@Stability(value=Stable) static CfnEndpointConfig.AsyncInferenceConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.