Struct aws_sdk_ecs::types::ExecuteCommandLogConfiguration
source · #[non_exhaustive]pub struct ExecuteCommandLogConfiguration {
pub cloud_watch_log_group_name: Option<String>,
pub cloud_watch_encryption_enabled: bool,
pub s3_bucket_name: Option<String>,
pub s3_encryption_enabled: bool,
pub s3_key_prefix: Option<String>,
}
Expand description
The log configuration for the results of the execute command actions. The logs can be sent to CloudWatch Logs or an Amazon S3 bucket.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.cloud_watch_log_group_name: Option<String>
The name of the CloudWatch log group to send logs to.
The CloudWatch log group must already be created.
cloud_watch_encryption_enabled: bool
Determines whether to use encryption on the CloudWatch logs. If not specified, encryption will be off.
s3_bucket_name: Option<String>
The name of the S3 bucket to send logs to.
The S3 bucket must already be created.
s3_encryption_enabled: bool
Determines whether to use encryption on the S3 logs. If not specified, encryption is not used.
s3_key_prefix: Option<String>
An optional folder in the S3 bucket to place logs in.
Implementations§
source§impl ExecuteCommandLogConfiguration
impl ExecuteCommandLogConfiguration
sourcepub fn cloud_watch_log_group_name(&self) -> Option<&str>
pub fn cloud_watch_log_group_name(&self) -> Option<&str>
The name of the CloudWatch log group to send logs to.
The CloudWatch log group must already be created.
sourcepub fn cloud_watch_encryption_enabled(&self) -> bool
pub fn cloud_watch_encryption_enabled(&self) -> bool
Determines whether to use encryption on the CloudWatch logs. If not specified, encryption will be off.
sourcepub fn s3_bucket_name(&self) -> Option<&str>
pub fn s3_bucket_name(&self) -> Option<&str>
The name of the S3 bucket to send logs to.
The S3 bucket must already be created.
sourcepub fn s3_encryption_enabled(&self) -> bool
pub fn s3_encryption_enabled(&self) -> bool
Determines whether to use encryption on the S3 logs. If not specified, encryption is not used.
sourcepub fn s3_key_prefix(&self) -> Option<&str>
pub fn s3_key_prefix(&self) -> Option<&str>
An optional folder in the S3 bucket to place logs in.
source§impl ExecuteCommandLogConfiguration
impl ExecuteCommandLogConfiguration
sourcepub fn builder() -> ExecuteCommandLogConfigurationBuilder
pub fn builder() -> ExecuteCommandLogConfigurationBuilder
Creates a new builder-style object to manufacture ExecuteCommandLogConfiguration
.
Trait Implementations§
source§impl Clone for ExecuteCommandLogConfiguration
impl Clone for ExecuteCommandLogConfiguration
source§fn clone(&self) -> ExecuteCommandLogConfiguration
fn clone(&self) -> ExecuteCommandLogConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for ExecuteCommandLogConfiguration
impl PartialEq for ExecuteCommandLogConfiguration
source§fn eq(&self, other: &ExecuteCommandLogConfiguration) -> bool
fn eq(&self, other: &ExecuteCommandLogConfiguration) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ExecuteCommandLogConfiguration
Auto Trait Implementations§
impl Freeze for ExecuteCommandLogConfiguration
impl RefUnwindSafe for ExecuteCommandLogConfiguration
impl Send for ExecuteCommandLogConfiguration
impl Sync for ExecuteCommandLogConfiguration
impl Unpin for ExecuteCommandLogConfiguration
impl UnwindSafe for ExecuteCommandLogConfiguration
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