pub struct GetParametersByPathInput {
pub path: String,
pub recursive: Option<bool>,
pub with_decryption: Option<bool>,
pub parameter_filters: Vec<ParameterStringFilter>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}Expand description
Input for the GetParametersByPath operation.
Fields§
§path: StringThe hierarchy path prefix.
recursive: Option<bool>Whether to retrieve all parameters under the path recursively.
with_decryption: Option<bool>Whether to decrypt SecureString values.
parameter_filters: Vec<ParameterStringFilter>Filters for the results.
max_results: Option<i32>The maximum number of results per page (default 10, max 10).
next_token: Option<String>The token for the next set of results.
Trait Implementations§
Source§impl Clone for GetParametersByPathInput
impl Clone for GetParametersByPathInput
Source§fn clone(&self) -> GetParametersByPathInput
fn clone(&self) -> GetParametersByPathInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GetParametersByPathInput
impl Debug for GetParametersByPathInput
Source§impl Default for GetParametersByPathInput
impl Default for GetParametersByPathInput
Source§fn default() -> GetParametersByPathInput
fn default() -> GetParametersByPathInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetParametersByPathInput
impl<'de> Deserialize<'de> for GetParametersByPathInput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GetParametersByPathInput
impl RefUnwindSafe for GetParametersByPathInput
impl Send for GetParametersByPathInput
impl Sync for GetParametersByPathInput
impl Unpin for GetParametersByPathInput
impl UnsafeUnpin for GetParametersByPathInput
impl UnwindSafe for GetParametersByPathInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more