Struct aws_sdk_ecs::types::ClusterSetting
source · #[non_exhaustive]pub struct ClusterSetting {
pub name: Option<ClusterSettingName>,
pub value: Option<String>,
}
Expand description
The settings to use when creating a cluster. This parameter is used to turn on CloudWatch Container Insights for a cluster.
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.name: Option<ClusterSettingName>
The name of the cluster setting. The value is containerInsights
.
value: Option<String>
The value to set for the cluster setting. The supported values are enabled
and disabled
.
If you set name
to containerInsights
and value
to enabled
, CloudWatch Container Insights will be on for the cluster, otherwise it will be off unless the containerInsights
account setting is turned on. If a cluster value is specified, it will override the containerInsights
value set with PutAccountSetting or PutAccountSettingDefault.
Implementations§
source§impl ClusterSetting
impl ClusterSetting
sourcepub fn name(&self) -> Option<&ClusterSettingName>
pub fn name(&self) -> Option<&ClusterSettingName>
The name of the cluster setting. The value is containerInsights
.
sourcepub fn value(&self) -> Option<&str>
pub fn value(&self) -> Option<&str>
The value to set for the cluster setting. The supported values are enabled
and disabled
.
If you set name
to containerInsights
and value
to enabled
, CloudWatch Container Insights will be on for the cluster, otherwise it will be off unless the containerInsights
account setting is turned on. If a cluster value is specified, it will override the containerInsights
value set with PutAccountSetting or PutAccountSettingDefault.
source§impl ClusterSetting
impl ClusterSetting
sourcepub fn builder() -> ClusterSettingBuilder
pub fn builder() -> ClusterSettingBuilder
Creates a new builder-style object to manufacture ClusterSetting
.
Trait Implementations§
source§impl Clone for ClusterSetting
impl Clone for ClusterSetting
source§fn clone(&self) -> ClusterSetting
fn clone(&self) -> ClusterSetting
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ClusterSetting
impl Debug for ClusterSetting
source§impl PartialEq<ClusterSetting> for ClusterSetting
impl PartialEq<ClusterSetting> for ClusterSetting
source§fn eq(&self, other: &ClusterSetting) -> bool
fn eq(&self, other: &ClusterSetting) -> bool
self
and other
values to be equal, and is used
by ==
.