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<ExecuteCommandLogConfiguration> for ExecuteCommandLogConfiguration
impl PartialEq<ExecuteCommandLogConfiguration> 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 ==
.