#[non_exhaustive]pub struct BatchDataCaptureConfigBuilder { /* private fields */ }
Expand description
A builder for BatchDataCaptureConfig
.
Implementations§
source§impl BatchDataCaptureConfigBuilder
impl BatchDataCaptureConfigBuilder
sourcepub fn destination_s3_uri(self, input: impl Into<String>) -> Self
pub fn destination_s3_uri(self, input: impl Into<String>) -> Self
The Amazon S3 location being used to capture the data.
sourcepub fn set_destination_s3_uri(self, input: Option<String>) -> Self
pub fn set_destination_s3_uri(self, input: Option<String>) -> Self
The Amazon S3 location being used to capture the data.
sourcepub fn kms_key_id(self, input: impl Into<String>) -> Self
pub fn kms_key_id(self, input: impl Into<String>) -> Self
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 set_kms_key_id(self, input: Option<String>) -> Self
pub fn set_kms_key_id(self, input: Option<String>) -> Self
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, input: bool) -> Self
pub fn generate_inference_id(self, input: bool) -> Self
Flag that indicates whether to append inference id to the output.
sourcepub fn set_generate_inference_id(self, input: Option<bool>) -> Self
pub fn set_generate_inference_id(self, input: Option<bool>) -> Self
Flag that indicates whether to append inference id to the output.
sourcepub fn build(self) -> BatchDataCaptureConfig
pub fn build(self) -> BatchDataCaptureConfig
Consumes the builder and constructs a BatchDataCaptureConfig
.
Trait Implementations§
source§impl Clone for BatchDataCaptureConfigBuilder
impl Clone for BatchDataCaptureConfigBuilder
source§fn clone(&self) -> BatchDataCaptureConfigBuilder
fn clone(&self) -> BatchDataCaptureConfigBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for BatchDataCaptureConfigBuilder
impl Default for BatchDataCaptureConfigBuilder
source§fn default() -> BatchDataCaptureConfigBuilder
fn default() -> BatchDataCaptureConfigBuilder
source§impl PartialEq<BatchDataCaptureConfigBuilder> for BatchDataCaptureConfigBuilder
impl PartialEq<BatchDataCaptureConfigBuilder> for BatchDataCaptureConfigBuilder
source§fn eq(&self, other: &BatchDataCaptureConfigBuilder) -> bool
fn eq(&self, other: &BatchDataCaptureConfigBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.