[][src]Struct rusoto_ecs::UpdateClusterSettingsRequest

pub struct UpdateClusterSettingsRequest {
    pub cluster: String,
    pub settings: Vec<ClusterSetting>,
}

Fields

cluster: String

The name of the cluster to modify the settings for.

settings: Vec<ClusterSetting>

The setting to use by default for a cluster. This parameter is used to enable CloudWatch Container Insights for a cluster. If this value is specified, it will override the containerInsights value set with PutAccountSetting or PutAccountSettingDefault.

Trait Implementations

impl Clone for UpdateClusterSettingsRequest[src]

impl Debug for UpdateClusterSettingsRequest[src]

impl Default for UpdateClusterSettingsRequest[src]

impl PartialEq<UpdateClusterSettingsRequest> for UpdateClusterSettingsRequest[src]

impl Serialize for UpdateClusterSettingsRequest[src]

impl StructuralPartialEq for UpdateClusterSettingsRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.