public static interface CfnEndpointConfig.AsyncInferenceOutputConfigProperty
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 java.lang.String |
getKmsKeyId()
The AWS Key Management Service ( AWS KMS) key that Amazon SageMaker uses to encrypt the asynchronous inference output in Amazon S3.
|
default java.lang.Object |
getNotificationConfig()
Specifies the configuration for notifications of inference results for asynchronous inference.
|
java.lang.String |
getS3OutputPath()
The Amazon S3 location to upload inference responses to.
|
java.lang.String getS3OutputPath()
default java.lang.String getKmsKeyId()
default java.lang.Object getNotificationConfig()