Struct aws_sdk_sagemaker::model::BatchDataCaptureConfig
source · #[non_exhaustive]pub struct BatchDataCaptureConfig { /* private fields */ }
Expand description
Configuration to control how SageMaker captures inference data for batch transform jobs.
Implementations§
source§impl BatchDataCaptureConfig
impl BatchDataCaptureConfig
sourcepub fn destination_s3_uri(&self) -> Option<&str>
pub fn destination_s3_uri(&self) -> Option<&str>
The Amazon S3 location being used to capture the data.
sourcepub fn kms_key_id(&self) -> Option<&str>
pub fn kms_key_id(&self) -> Option<&str>
The Amazon Resource Name (ARN) of a Amazon Web Services Key Management Service key that SageMaker uses to encrypt data on the storage volume attached to the ML compute instance that hosts the batch transform job.
The KmsKeyId can be any of the following formats:
-
Key ID:
1234abcd-12ab-34cd-56ef-1234567890ab
-
Key ARN:
arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
-
Alias name:
alias/ExampleAlias
-
Alias name ARN:
arn:aws:kms:us-west-2:111122223333:alias/ExampleAlias
sourcepub fn generate_inference_id(&self) -> bool
pub fn generate_inference_id(&self) -> bool
Flag that indicates whether to append inference id to the output.
source§impl BatchDataCaptureConfig
impl BatchDataCaptureConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture BatchDataCaptureConfig
.
Trait Implementations§
source§impl Clone for BatchDataCaptureConfig
impl Clone for BatchDataCaptureConfig
source§fn clone(&self) -> BatchDataCaptureConfig
fn clone(&self) -> BatchDataCaptureConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for BatchDataCaptureConfig
impl Debug for BatchDataCaptureConfig
source§impl PartialEq<BatchDataCaptureConfig> for BatchDataCaptureConfig
impl PartialEq<BatchDataCaptureConfig> for BatchDataCaptureConfig
source§fn eq(&self, other: &BatchDataCaptureConfig) -> bool
fn eq(&self, other: &BatchDataCaptureConfig) -> bool
self
and other
values to be equal, and is used
by ==
.