#[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
source§impl PartialEq<AsyncInferenceOutputConfig> for AsyncInferenceOutputConfig
impl PartialEq<AsyncInferenceOutputConfig> for AsyncInferenceOutputConfig
source§fn eq(&self, other: &AsyncInferenceOutputConfig) -> bool
fn eq(&self, other: &AsyncInferenceOutputConfig) -> bool
self
and other
values to be equal, and is used
by ==
.