@Stability(value=Stable)
public static interface CfnEndpointConfig.AsyncInferenceOutputConfigProperty
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.*;
AsyncInferenceOutputConfigProperty asyncInferenceOutputConfigProperty = AsyncInferenceOutputConfigProperty.builder()
.s3OutputPath("s3OutputPath")
// the properties below are optional
.kmsKeyId("kmsKeyId")
.notificationConfig(AsyncInferenceNotificationConfigProperty.builder()
.errorTopic("errorTopic")
.successTopic("successTopic")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnEndpointConfig.AsyncInferenceOutputConfigProperty.Builder
A builder for
CfnEndpointConfig.AsyncInferenceOutputConfigProperty |
static class |
CfnEndpointConfig.AsyncInferenceOutputConfigProperty.Jsii$Proxy
An implementation for
CfnEndpointConfig.AsyncInferenceOutputConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnEndpointConfig.AsyncInferenceOutputConfigProperty.Builder |
builder() |
default String |
getKmsKeyId()
The AWS Key Management Service ( AWS KMS) key that Amazon SageMaker uses to encrypt the asynchronous inference output in Amazon S3.
|
default Object |
getNotificationConfig()
Specifies the configuration for notifications of inference results for asynchronous inference.
|
String |
getS3OutputPath()
The Amazon S3 location to upload inference responses to.
|
@Stability(value=Stable) @NotNull String getS3OutputPath()
@Stability(value=Stable) @Nullable default String getKmsKeyId()
@Stability(value=Stable) @Nullable default Object getNotificationConfig()
@Stability(value=Stable) static CfnEndpointConfig.AsyncInferenceOutputConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.