#[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() -> Builder
pub fn builder() -> Builder
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 ==
.