EndpointConfigurationAsyncInferenceConfigOutputConfig constructor

const EndpointConfigurationAsyncInferenceConfigOutputConfig({
  1. Input<String?>? kmsKeyId,
  2. Input<EndpointConfigurationAsyncInferenceConfigOutputConfigNotificationConfig?>? notificationConfig,
  3. Input<String?>? s3FailurePath,
  4. required Input<String> s3OutputPath,
})

Creates a new EndpointConfigurationAsyncInferenceConfigOutputConfig. kmsKeyId KMS key that SageMaker AI uses to encrypt the asynchronous inference output in S3. notificationConfig Configuration for notifications of inference results for asynchronous inference. s3FailurePath S3 location to upload failure inference responses to. s3OutputPath S3 location to upload inference responses to.

Implementation

const EndpointConfigurationAsyncInferenceConfigOutputConfig({
  this.kmsKeyId,
  this.notificationConfig,
  this.s3FailurePath,
  required this.s3OutputPath,
});