Struct aws_sdk_sagemaker::model::AsyncInferenceNotificationConfig [−][src]
#[non_exhaustive]pub struct AsyncInferenceNotificationConfig {
pub success_topic: Option<String>,
pub error_topic: Option<String>,
}
Expand description
Specifies the configuration for notifications of inference results for asynchronous inference.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.success_topic: Option<String>
Amazon SNS topic to post a notification to when inference completes successfully. If no topic is provided, no notification is sent on success.
error_topic: Option<String>
Amazon SNS topic to post a notification to when inference fails. If no topic is provided, no notification is sent on failure.
Implementations
Creates a new builder-style object to manufacture AsyncInferenceNotificationConfig
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for AsyncInferenceNotificationConfig
impl Sync for AsyncInferenceNotificationConfig
impl Unpin for AsyncInferenceNotificationConfig
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more