[][src]Struct rusoto_resource_groups::GroupConfiguration

pub struct GroupConfiguration {
    pub configuration: Option<Vec<GroupConfigurationItem>>,
    pub failure_reason: Option<String>,
    pub proposed_configuration: Option<Vec<GroupConfigurationItem>>,
    pub status: Option<String>,
}

A service configuration associated with a resource group. The configuration options are determined by the AWS service that defines the Type, and specifies which resources can be included in the group. You can add a service configuration when you create the group.

Fields

configuration: Option<Vec<GroupConfigurationItem>>

The configuration currently associated with the group and in effect.

failure_reason: Option<String>

If present, the reason why a request to update the group configuration failed.

proposed_configuration: Option<Vec<GroupConfigurationItem>>

If present, the new configuration that is in the process of being applied to the group.

status: Option<String>

The current status of an attempt to update the group configuration.

Trait Implementations

impl Clone for GroupConfiguration[src]

impl Debug for GroupConfiguration[src]

impl Default for GroupConfiguration[src]

impl<'de> Deserialize<'de> for GroupConfiguration[src]

impl PartialEq<GroupConfiguration> for GroupConfiguration[src]

impl StructuralPartialEq for GroupConfiguration[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> 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.