Class: Aws::SageMaker::Types::AsyncInferenceNotificationConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::AsyncInferenceNotificationConfig
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Specifies the configuration for notifications of inference results for asynchronous inference.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#error_topic ⇒ String
Amazon SNS topic to post a notification to when inference fails.
-
#include_inference_response_in ⇒ Array<String>
The Amazon SNS topics where you want the inference response to be included.
-
#success_topic ⇒ String
Amazon SNS topic to post a notification to when inference completes successfully.
Instance Attribute Details
#error_topic ⇒ String
Amazon SNS topic to post a notification to when inference fails. If no topic is provided, no notification is sent on failure.
1672 1673 1674 1675 1676 1677 1678 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 1672 class AsyncInferenceNotificationConfig < Struct.new( :success_topic, :error_topic, :include_inference_response_in) SENSITIVE = [] include Aws::Structure end |
#include_inference_response_in ⇒ Array<String>
The Amazon SNS topics where you want the inference response to be included.
<note markdown=“1”> The inference response is included only if the response size is less than or equal to 128 KB.
</note>
1672 1673 1674 1675 1676 1677 1678 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 1672 class AsyncInferenceNotificationConfig < Struct.new( :success_topic, :error_topic, :include_inference_response_in) SENSITIVE = [] include Aws::Structure end |
#success_topic ⇒ String
Amazon SNS topic to post a notification to when inference completes successfully. If no topic is provided, no notification is sent on success.
1672 1673 1674 1675 1676 1677 1678 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 1672 class AsyncInferenceNotificationConfig < Struct.new( :success_topic, :error_topic, :include_inference_response_in) SENSITIVE = [] include Aws::Structure end |