Struct aws_sdk_ssm::client::fluent_builders::GetParametersByPath [−][src]
pub struct GetParametersByPath<C = DynConnector, M = AwsMiddleware, R = Standard> { /* fields omitted */ }
Expand description
Fluent builder constructing a request to GetParametersByPath
.
Retrieve information about one or more parameters in a specific hierarchy.
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.
Implementations
impl<C, M, R> GetParametersByPath<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
impl<C, M, R> GetParametersByPath<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
pub async fn send(
self
) -> Result<GetParametersByPathOutput, SdkError<GetParametersByPathError>> where
R::Policy: SmithyRetryPolicy<GetParametersByPathInputOperationOutputAlias, GetParametersByPathOutput, GetParametersByPathError, GetParametersByPathInputOperationRetryAlias>,
pub async fn send(
self
) -> Result<GetParametersByPathOutput, SdkError<GetParametersByPathError>> where
R::Policy: SmithyRetryPolicy<GetParametersByPathInputOperationOutputAlias, GetParametersByPathOutput, GetParametersByPathError, GetParametersByPathInputOperationRetryAlias>,
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.
The hierarchy for the parameter. Hierarchies start with a forward slash (/). The hierachy is
the parameter name except the last part of the parameter. For the API call to succeeed, the last
part of the parameter name can't be in the path. A parameter name hierarchy can have a maximum of
15 levels. Here is an example of a hierarchy: /Finance/Prod/IAD/WinServ2016/license33
The hierarchy for the parameter. Hierarchies start with a forward slash (/). The hierachy is
the parameter name except the last part of the parameter. For the API call to succeeed, the last
part of the parameter name can't be in the path. A parameter name hierarchy can have a maximum of
15 levels. Here is an example of a hierarchy: /Finance/Prod/IAD/WinServ2016/license33
Retrieve all parameters within a hierarchy.
If a user has access to a path, then the user can access all levels of that path. For
example, if a user has permission to access path /a
, then the user can also access
/a/b
. Even if a user has explicitly been denied access in IAM for
parameter /a/b
, they can still call the GetParametersByPath API operation
recursively for /a
and view /a/b
.
Retrieve all parameters within a hierarchy.
If a user has access to a path, then the user can access all levels of that path. For
example, if a user has permission to access path /a
, then the user can also access
/a/b
. Even if a user has explicitly been denied access in IAM for
parameter /a/b
, they can still call the GetParametersByPath API operation
recursively for /a
and view /a/b
.
Appends an item to ParameterFilters
.
To override the contents of this collection use set_parameter_filters
.
Filters to limit the request results.
The following Key
values are supported for GetParametersByPath
:
Type
, KeyId
, and Label
.
The following Key
values aren't supported for
GetParametersByPath
: tag
, DataType
, Name
,
Path
, and Tier
.
Filters to limit the request results.
The following Key
values are supported for GetParametersByPath
:
Type
, KeyId
, and Label
.
The following Key
values aren't supported for
GetParametersByPath
: tag
, DataType
, Name
,
Path
, and Tier
.
Retrieve all parameters in a hierarchy with their value decrypted.
Retrieve all parameters in a hierarchy with their value decrypted.
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.
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.
A token to start the list. Use this token to get the next set of results.
Trait Implementations
Auto Trait Implementations
impl<C = DynConnector, M = AwsMiddleware, R = Standard> !RefUnwindSafe for GetParametersByPath<C, M, R>
impl<C, M, R> Send for GetParametersByPath<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Sync for GetParametersByPath<C, M, R> where
C: Send + Sync,
M: Send + Sync,
R: Send + Sync,
impl<C, M, R> Unpin for GetParametersByPath<C, M, R>
impl<C = DynConnector, M = AwsMiddleware, R = Standard> !UnwindSafe for GetParametersByPath<C, M, R>
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more