#[non_exhaustive]pub struct AsyncInferenceOutputConfig { /* private fields */ }
Expand description
Specifies the configuration for asynchronous inference invocation outputs.
Implementations§
source§impl AsyncInferenceOutputConfig
impl AsyncInferenceOutputConfig
sourcepub fn kms_key_id(&self) -> Option<&str>
pub fn kms_key_id(&self) -> Option<&str>
The Amazon Web Services Key Management Service (Amazon Web Services KMS) key that SageMaker uses to encrypt the asynchronous inference output in Amazon S3.
sourcepub fn s3_output_path(&self) -> Option<&str>
pub fn s3_output_path(&self) -> Option<&str>
The Amazon S3 location to upload inference responses to.
sourcepub fn notification_config(&self) -> Option<&AsyncInferenceNotificationConfig>
pub fn notification_config(&self) -> Option<&AsyncInferenceNotificationConfig>
Specifies the configuration for notifications of inference results for asynchronous inference.
sourcepub fn s3_failure_path(&self) -> Option<&str>
pub fn s3_failure_path(&self) -> Option<&str>
The Amazon S3 location to upload failure inference responses to.
source§impl AsyncInferenceOutputConfig
impl AsyncInferenceOutputConfig
sourcepub fn builder() -> AsyncInferenceOutputConfigBuilder
pub fn builder() -> AsyncInferenceOutputConfigBuilder
Creates a new builder-style object to manufacture AsyncInferenceOutputConfig
.
Trait Implementations§
source§impl Clone for AsyncInferenceOutputConfig
impl Clone for AsyncInferenceOutputConfig
source§fn clone(&self) -> AsyncInferenceOutputConfig
fn clone(&self) -> AsyncInferenceOutputConfig
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for AsyncInferenceOutputConfig
impl Debug for AsyncInferenceOutputConfig
source§impl PartialEq<AsyncInferenceOutputConfig> for AsyncInferenceOutputConfig
impl PartialEq<AsyncInferenceOutputConfig> for AsyncInferenceOutputConfig
source§fn eq(&self, other: &AsyncInferenceOutputConfig) -> bool
fn eq(&self, other: &AsyncInferenceOutputConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AsyncInferenceOutputConfig
Auto Trait Implementations§
impl RefUnwindSafe for AsyncInferenceOutputConfig
impl Send for AsyncInferenceOutputConfig
impl Sync for AsyncInferenceOutputConfig
impl Unpin for AsyncInferenceOutputConfig
impl UnwindSafe for AsyncInferenceOutputConfig
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more