[][src]Struct rusoto_resourcegroupstaggingapi::Summary

pub struct Summary {
    pub last_updated: Option<String>,
    pub non_compliant_resources: Option<i64>,
    pub region: Option<String>,
    pub resource_type: Option<String>,
    pub target_id: Option<String>,
    pub target_id_type: Option<String>,
}

A count of noncompliant resources.

Fields

last_updated: Option<String>

The timestamp that shows when this summary was generated in this Region.

non_compliant_resources: Option<i64>

The count of noncompliant resources.

region: Option<String>

The AWS Region that the summary applies to.

resource_type: Option<String>

The AWS resource type.

target_id: Option<String>

The account identifier or the root identifier of the organization. If you don't know the root ID, you can call the AWS Organizations ListRoots API.

target_id_type: Option<String>

Whether the target is an account, an OU, or the organization root.

Trait Implementations

impl Clone for Summary[src]

impl Debug for Summary[src]

impl Default for Summary[src]

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

impl PartialEq<Summary> for Summary[src]

impl StructuralPartialEq for Summary[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.