#[non_exhaustive]pub struct ListConfigurationsOutput {
pub configurations: Option<Vec<HashMap<String, String>>>,
pub next_token: Option<String>,
}Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.configurations: Option<Vec<HashMap<String, String>>>Returns configuration details, including the configuration ID, attribute names, and attribute values.
next_token: Option<String>Token to retrieve the next set of results. For example, if your call to ListConfigurations returned 100 items, but you set ListConfigurationsRequest$maxResults to 10, you received a set of 10 results along with this token. Use this token in the next query to retrieve the next set of 10.
Implementations
Returns configuration details, including the configuration ID, attribute names, and attribute values.
Token to retrieve the next set of results. For example, if your call to ListConfigurations returned 100 items, but you set ListConfigurationsRequest$maxResults to 10, you received a set of 10 results along with this token. Use this token in the next query to retrieve the next set of 10.
Creates a new builder-style object to manufacture ListConfigurationsOutput
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for ListConfigurationsOutput
impl Send for ListConfigurationsOutput
impl Sync for ListConfigurationsOutput
impl Unpin for ListConfigurationsOutput
impl UnwindSafe for ListConfigurationsOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more