#[non_exhaustive]pub struct S3BucketLogDestinationBuilder { /* private fields */ }Expand description
A builder for S3BucketLogDestination.
Implementations§
source§impl S3BucketLogDestinationBuilder
impl S3BucketLogDestinationBuilder
sourcepub fn kms_key_arn(self, input: impl Into<String>) -> Self
pub fn kms_key_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of an AWS Key Management Service (KMS) key for encrypting audio log files stored in an S3 bucket.
sourcepub fn set_kms_key_arn(self, input: Option<String>) -> Self
pub fn set_kms_key_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of an AWS Key Management Service (KMS) key for encrypting audio log files stored in an S3 bucket.
sourcepub fn s3_bucket_arn(self, input: impl Into<String>) -> Self
pub fn s3_bucket_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of an Amazon S3 bucket where audio log files are stored.
sourcepub fn set_s3_bucket_arn(self, input: Option<String>) -> Self
pub fn set_s3_bucket_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of an Amazon S3 bucket where audio log files are stored.
sourcepub fn log_prefix(self, input: impl Into<String>) -> Self
pub fn log_prefix(self, input: impl Into<String>) -> Self
The S3 prefix to assign to audio log files.
sourcepub fn set_log_prefix(self, input: Option<String>) -> Self
pub fn set_log_prefix(self, input: Option<String>) -> Self
The S3 prefix to assign to audio log files.
sourcepub fn build(self) -> S3BucketLogDestination
pub fn build(self) -> S3BucketLogDestination
Consumes the builder and constructs a S3BucketLogDestination.
Trait Implementations§
source§impl Clone for S3BucketLogDestinationBuilder
impl Clone for S3BucketLogDestinationBuilder
source§fn clone(&self) -> S3BucketLogDestinationBuilder
fn clone(&self) -> S3BucketLogDestinationBuilder
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 Default for S3BucketLogDestinationBuilder
impl Default for S3BucketLogDestinationBuilder
source§fn default() -> S3BucketLogDestinationBuilder
fn default() -> S3BucketLogDestinationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<S3BucketLogDestinationBuilder> for S3BucketLogDestinationBuilder
impl PartialEq<S3BucketLogDestinationBuilder> for S3BucketLogDestinationBuilder
source§fn eq(&self, other: &S3BucketLogDestinationBuilder) -> bool
fn eq(&self, other: &S3BucketLogDestinationBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.