[][src]Struct rusoto_config::BatchGetResourceConfigResponse

pub struct BatchGetResourceConfigResponse {
    pub base_configuration_items: Option<Vec<BaseConfigurationItem>>,
    pub unprocessed_resource_keys: Option<Vec<ResourceKey>>,
}

Fields

base_configuration_items: Option<Vec<BaseConfigurationItem>>

A list that contains the current configuration of one or more resources.

unprocessed_resource_keys: Option<Vec<ResourceKey>>

A list of resource keys that were not processed with the current response. The unprocessesResourceKeys value is in the same form as ResourceKeys, so the value can be directly provided to a subsequent BatchGetResourceConfig operation. If there are no unprocessed resource keys, the response contains an empty unprocessedResourceKeys list.

Trait Implementations

impl Clone for BatchGetResourceConfigResponse[src]

impl Debug for BatchGetResourceConfigResponse[src]

impl Default for BatchGetResourceConfigResponse[src]

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

impl PartialEq<BatchGetResourceConfigResponse> for BatchGetResourceConfigResponse[src]

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