#[non_exhaustive]pub struct InferenceExperimentDataStorageConfig { /* private fields */ }
Expand description
The Amazon S3 location and configuration for storing inference request and response data.
Implementations§
source§impl InferenceExperimentDataStorageConfig
impl InferenceExperimentDataStorageConfig
sourcepub fn destination(&self) -> Option<&str>
pub fn destination(&self) -> Option<&str>
The Amazon S3 bucket where the inference request and response data is stored.
sourcepub fn kms_key(&self) -> Option<&str>
pub fn kms_key(&self) -> Option<&str>
The Amazon Web Services Key Management Service key that Amazon SageMaker uses to encrypt captured data at rest using Amazon S3 server-side encryption.
sourcepub fn content_type(&self) -> Option<&CaptureContentTypeHeader>
pub fn content_type(&self) -> Option<&CaptureContentTypeHeader>
Configuration specifying how to treat different headers. If no headers are specified SageMaker will by default base64 encode when capturing the data.
source§impl InferenceExperimentDataStorageConfig
impl InferenceExperimentDataStorageConfig
sourcepub fn builder() -> InferenceExperimentDataStorageConfigBuilder
pub fn builder() -> InferenceExperimentDataStorageConfigBuilder
Creates a new builder-style object to manufacture InferenceExperimentDataStorageConfig
.
Trait Implementations§
source§impl Clone for InferenceExperimentDataStorageConfig
impl Clone for InferenceExperimentDataStorageConfig
source§fn clone(&self) -> InferenceExperimentDataStorageConfig
fn clone(&self) -> InferenceExperimentDataStorageConfig
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 PartialEq<InferenceExperimentDataStorageConfig> for InferenceExperimentDataStorageConfig
impl PartialEq<InferenceExperimentDataStorageConfig> for InferenceExperimentDataStorageConfig
source§fn eq(&self, other: &InferenceExperimentDataStorageConfig) -> bool
fn eq(&self, other: &InferenceExperimentDataStorageConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for InferenceExperimentDataStorageConfig
Auto Trait Implementations§
impl RefUnwindSafe for InferenceExperimentDataStorageConfig
impl Send for InferenceExperimentDataStorageConfig
impl Sync for InferenceExperimentDataStorageConfig
impl Unpin for InferenceExperimentDataStorageConfig
impl UnwindSafe for InferenceExperimentDataStorageConfig
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