#[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>,
}
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.)
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.)
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 ==
.