Struct aws_sdk_securityhub::types::builders::AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetailsBuilder
source · #[non_exhaustive]pub struct AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetailsBuilder { /* private fields */ }
Expand description
Implementations§
source§impl AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetailsBuilder
impl AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetailsBuilder
sourcepub fn cloud_watch_encryption_enabled(self, input: bool) -> Self
pub fn cloud_watch_encryption_enabled(self, input: bool) -> Self
Whether to enable encryption on the CloudWatch logs.
sourcepub fn set_cloud_watch_encryption_enabled(self, input: Option<bool>) -> Self
pub fn set_cloud_watch_encryption_enabled(self, input: Option<bool>) -> Self
Whether to enable encryption on the CloudWatch logs.
sourcepub fn get_cloud_watch_encryption_enabled(&self) -> &Option<bool>
pub fn get_cloud_watch_encryption_enabled(&self) -> &Option<bool>
Whether to enable encryption on the CloudWatch logs.
sourcepub fn cloud_watch_log_group_name(self, input: impl Into<String>) -> Self
pub fn cloud_watch_log_group_name(self, input: impl Into<String>) -> Self
The name of the CloudWatch log group to send the logs to.
sourcepub fn set_cloud_watch_log_group_name(self, input: Option<String>) -> Self
pub fn set_cloud_watch_log_group_name(self, input: Option<String>) -> Self
The name of the CloudWatch log group to send the logs to.
sourcepub fn get_cloud_watch_log_group_name(&self) -> &Option<String>
pub fn get_cloud_watch_log_group_name(&self) -> &Option<String>
The name of the CloudWatch log group to send the logs to.
sourcepub fn s3_bucket_name(self, input: impl Into<String>) -> Self
pub fn s3_bucket_name(self, input: impl Into<String>) -> Self
The name of the S3 bucket to send logs to.
sourcepub fn set_s3_bucket_name(self, input: Option<String>) -> Self
pub fn set_s3_bucket_name(self, input: Option<String>) -> Self
The name of the S3 bucket to send logs to.
sourcepub fn get_s3_bucket_name(&self) -> &Option<String>
pub fn get_s3_bucket_name(&self) -> &Option<String>
The name of the S3 bucket to send logs to.
sourcepub fn s3_encryption_enabled(self, input: bool) -> Self
pub fn s3_encryption_enabled(self, input: bool) -> Self
Whether to encrypt the logs that are sent to the S3 bucket.
sourcepub fn set_s3_encryption_enabled(self, input: Option<bool>) -> Self
pub fn set_s3_encryption_enabled(self, input: Option<bool>) -> Self
Whether to encrypt the logs that are sent to the S3 bucket.
sourcepub fn get_s3_encryption_enabled(&self) -> &Option<bool>
pub fn get_s3_encryption_enabled(&self) -> &Option<bool>
Whether to encrypt the logs that are sent to the S3 bucket.
sourcepub fn s3_key_prefix(self, input: impl Into<String>) -> Self
pub fn s3_key_prefix(self, input: impl Into<String>) -> Self
Identifies the folder in the S3 bucket to send the logs to.
sourcepub fn set_s3_key_prefix(self, input: Option<String>) -> Self
pub fn set_s3_key_prefix(self, input: Option<String>) -> Self
Identifies the folder in the S3 bucket to send the logs to.
sourcepub fn get_s3_key_prefix(&self) -> &Option<String>
pub fn get_s3_key_prefix(&self) -> &Option<String>
Identifies the folder in the S3 bucket to send the logs to.
sourcepub fn build(
self
) -> AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetails
pub fn build( self ) -> AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetails
Consumes the builder and constructs a AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetails
.
Trait Implementations§
source§impl Clone for AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetailsBuilder
impl Clone for AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetailsBuilder
source§fn clone(
&self
) -> AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetailsBuilder
fn clone( &self ) -> AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetailsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetailsBuilder
impl Debug for AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetailsBuilder
source§impl Default for AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetailsBuilder
impl Default for AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetailsBuilder
source§fn default(
) -> AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetailsBuilder
fn default( ) -> AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetailsBuilder
source§impl PartialEq for AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetailsBuilder
impl PartialEq for AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetailsBuilder
source§fn eq(
&self,
other: &AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetailsBuilder
) -> bool
fn eq( &self, other: &AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetailsBuilder ) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetailsBuilder
Auto Trait Implementations§
impl Freeze for AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetailsBuilder
impl RefUnwindSafe for AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetailsBuilder
impl Send for AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetailsBuilder
impl Sync for AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetailsBuilder
impl Unpin for AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetailsBuilder
impl UnwindSafe for AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetailsBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more