Struct rusoto_ssm::GetParametersByPathRequest [] [src]

pub struct GetParametersByPathRequest {
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub parameter_filters: Option<Vec<ParameterStringFilter>>,
    pub path: String,
    pub recursive: Option<bool>,
    pub with_decryption: Option<bool>,
}

Fields

The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.

A token to start the list. Use this token to get the next set of results.

Filters to limit the request results.

The hierarchy for the parameter. Hierarchies start with a forward slash (/) and end with the parameter name. A hierarchy can have a maximum of five levels. Examples: /Environment/Test/DBString003

/Finance/Prod/IAD/OS/WinServ2016/license15

Retrieve all parameters within a hierarchy.

Retrieve all parameters in a hierarchy with their value decrypted.

Trait Implementations

impl Default for GetParametersByPathRequest
[src]

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

impl Debug for GetParametersByPathRequest
[src]

Formats the value using the given formatter.

impl Clone for GetParametersByPathRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more