Struct aws_sdk_ssm::operation::describe_parameters::builders::DescribeParametersFluentBuilder
source · pub struct DescribeParametersFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to DescribeParameters
.
Get information about a parameter.
Request results are returned on a best-effort basis. If you specify MaxResults
in the request, the response includes information up to the limit specified. The number of items returned, however, can be between zero and the value of MaxResults
. If the service reaches an internal limit while processing the results, it stops the operation and returns the matching values up to that point and a NextToken
. You can specify the NextToken
in a subsequent call to get the next set of results.
If you change the KMS key alias for the KMS key used to encrypt a parameter, then you must also update the key alias the parameter uses to reference KMS. Otherwise, DescribeParameters
retrieves whatever the original key alias was referencing.
Implementations§
source§impl DescribeParametersFluentBuilder
impl DescribeParametersFluentBuilder
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<DescribeParameters, AwsResponseRetryClassifier>, SdkError<DescribeParametersError>>
pub async fn customize( self ) -> Result<CustomizableOperation<DescribeParameters, AwsResponseRetryClassifier>, SdkError<DescribeParametersError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<DescribeParametersOutput, SdkError<DescribeParametersError>>
pub async fn send( self ) -> Result<DescribeParametersOutput, SdkError<DescribeParametersError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn into_paginator(self) -> DescribeParametersPaginator
pub fn into_paginator(self) -> DescribeParametersPaginator
Create a paginator for this request
Paginators are used by calling send().await
which returns a Stream
.
sourcepub fn filters(self, input: ParametersFilter) -> Self
pub fn filters(self, input: ParametersFilter) -> Self
Appends an item to Filters
.
To override the contents of this collection use set_filters
.
This data type is deprecated. Instead, use ParameterFilters
.
sourcepub fn set_filters(self, input: Option<Vec<ParametersFilter>>) -> Self
pub fn set_filters(self, input: Option<Vec<ParametersFilter>>) -> Self
This data type is deprecated. Instead, use ParameterFilters
.
sourcepub fn parameter_filters(self, input: ParameterStringFilter) -> Self
pub fn parameter_filters(self, input: ParameterStringFilter) -> Self
Appends an item to ParameterFilters
.
To override the contents of this collection use set_parameter_filters
.
Filters to limit the request results.
sourcepub fn set_parameter_filters(
self,
input: Option<Vec<ParameterStringFilter>>
) -> Self
pub fn set_parameter_filters( self, input: Option<Vec<ParameterStringFilter>> ) -> Self
Filters to limit the request results.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
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 set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
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, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token for the next set of items to return. (You received this token from a previous call.)
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token for the next set of items to return. (You received this token from a previous call.)
Trait Implementations§
source§impl Clone for DescribeParametersFluentBuilder
impl Clone for DescribeParametersFluentBuilder
source§fn clone(&self) -> DescribeParametersFluentBuilder
fn clone(&self) -> DescribeParametersFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more