Struct rusoto_config::BatchGetResourceConfigResponse[][src]

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

Fields

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

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 Default for BatchGetResourceConfigResponse
[src]

Returns the "default value" for a type. Read more

impl Debug for BatchGetResourceConfigResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for BatchGetResourceConfigResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for BatchGetResourceConfigResponse
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations