#[non_exhaustive]pub struct AsyncInferenceOutputConfig {
pub kms_key_id: Option<String>,
pub s3_output_path: Option<String>,
pub notification_config: Option<AsyncInferenceNotificationConfig>,
pub s3_failure_path: Option<String>,
}
Expand description
Specifies the configuration for asynchronous inference invocation outputs.
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.kms_key_id: Option<String>
The Amazon Web Services Key Management Service (Amazon Web Services KMS) key that SageMaker uses to encrypt the asynchronous inference output in Amazon S3.
s3_output_path: Option<String>
The Amazon S3 location to upload inference responses to.
notification_config: Option<AsyncInferenceNotificationConfig>
Specifies the configuration for notifications of inference results for asynchronous inference.
s3_failure_path: Option<String>
The Amazon S3 location to upload failure inference responses to.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AsyncInferenceOutputConfig
impl Debug for AsyncInferenceOutputConfig
impl StructuralPartialEq for AsyncInferenceOutputConfig
Auto Trait Implementations§
impl Freeze for AsyncInferenceOutputConfig
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more