#[non_exhaustive]pub struct DescribeParametersInput {
pub filters: Option<Vec<ParametersFilter>>,
pub parameter_filters: Option<Vec<ParameterStringFilter>>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub shared: Option<bool>,
}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.filters: Option<Vec<ParametersFilter>>This data type is deprecated. Instead, use ParameterFilters.
parameter_filters: Option<Vec<ParameterStringFilter>>Filters to limit the request results.
max_results: Option<i32>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.
next_token: Option<String>The token for the next set of items to return. (You received this token from a previous call.)
Lists parameters that are shared with you.
By default when using this option, the command returns parameters that have been shared using a standard Resource Access Manager Resource Share. In order for a parameter that was shared using the PutResourcePolicy command to be returned, the associated RAM Resource Share Created From Policy must have been promoted to a standard Resource Share using the RAM PromoteResourceShareCreatedFromPolicy API operation.
For more information about sharing parameters, see Working with shared parameters in the Amazon Web Services Systems Manager User Guide.
Implementations§
source§impl DescribeParametersInput
impl DescribeParametersInput
sourcepub fn filters(&self) -> &[ParametersFilter]
pub fn filters(&self) -> &[ParametersFilter]
This data type is deprecated. Instead, use ParameterFilters.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .filters.is_none().
sourcepub fn parameter_filters(&self) -> &[ParameterStringFilter]
pub fn parameter_filters(&self) -> &[ParameterStringFilter]
Filters to limit the request results.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .parameter_filters.is_none().
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
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.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token for the next set of items to return. (You received this token from a previous call.)
Lists parameters that are shared with you.
By default when using this option, the command returns parameters that have been shared using a standard Resource Access Manager Resource Share. In order for a parameter that was shared using the PutResourcePolicy command to be returned, the associated RAM Resource Share Created From Policy must have been promoted to a standard Resource Share using the RAM PromoteResourceShareCreatedFromPolicy API operation.
For more information about sharing parameters, see Working with shared parameters in the Amazon Web Services Systems Manager User Guide.
source§impl DescribeParametersInput
impl DescribeParametersInput
sourcepub fn builder() -> DescribeParametersInputBuilder
pub fn builder() -> DescribeParametersInputBuilder
Creates a new builder-style object to manufacture DescribeParametersInput.
Trait Implementations§
source§impl Clone for DescribeParametersInput
impl Clone for DescribeParametersInput
source§fn clone(&self) -> DescribeParametersInput
fn clone(&self) -> DescribeParametersInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DescribeParametersInput
impl Debug for DescribeParametersInput
source§impl PartialEq for DescribeParametersInput
impl PartialEq for DescribeParametersInput
source§fn eq(&self, other: &DescribeParametersInput) -> bool
fn eq(&self, other: &DescribeParametersInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeParametersInput
Auto Trait Implementations§
impl Freeze for DescribeParametersInput
impl RefUnwindSafe for DescribeParametersInput
impl Send for DescribeParametersInput
impl Sync for DescribeParametersInput
impl Unpin for DescribeParametersInput
impl UnwindSafe for DescribeParametersInput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more