public static interface ParameterStringFilter.Builder extends SdkPojo, CopyableBuilder<ParameterStringFilter.Builder,ParameterStringFilter>
Modifier and Type | Method and Description |
---|---|
ParameterStringFilter.Builder |
key(String key)
The name of the filter.
|
ParameterStringFilter.Builder |
option(String option)
|
ParameterStringFilter.Builder |
values(Collection<String> values)
The value you want to search for.
|
ParameterStringFilter.Builder |
values(String... values)
The value you want to search for.
|
equalsBySdkFields, sdkFields
copy
applyMutation, build
ParameterStringFilter.Builder key(String key)
The name of the filter.
The ParameterStringFilter
object is used by the DescribeParameters and
GetParametersByPath API actions. However, not all of the pattern values listed for Key
can be used with both actions.
For DescribeActions
, all of the listed patterns are valid, with the exception of
Label
.
For GetParametersByPath
, the following patterns listed for Key
are not valid:
tag
, Name
, Path
, and Tier
.
For examples of CLI commands demonstrating valid parameter filter constructions, see Searching for Systems Manager parameters in the AWS Systems Manager User Guide.
key
- The name of the filter.
The ParameterStringFilter
object is used by the DescribeParameters and
GetParametersByPath API actions. However, not all of the pattern values listed for
Key
can be used with both actions.
For DescribeActions
, all of the listed patterns are valid, with the exception of
Label
.
For GetParametersByPath
, the following patterns listed for Key
are not
valid: tag
, Name
, Path
, and Tier
.
For examples of CLI commands demonstrating valid parameter filter constructions, see Searching for Systems Manager parameters in the AWS Systems Manager User Guide.
ParameterStringFilter.Builder option(String option)
For all filters used with DescribeParameters, valid options include Equals
and
BeginsWith
. The Name
filter additionally supports the Contains
option.
(Exception: For filters using the key Path
, valid options include Recursive
and
OneLevel
.)
For filters used with GetParametersByPath, valid options include Equals
and
BeginsWith
. (Exception: For filters using Label
as the Key name, the only valid
option is Equals
.)
option
- For all filters used with DescribeParameters, valid options include Equals
and
BeginsWith
. The Name
filter additionally supports the Contains
option. (Exception: For filters using the key Path
, valid options include
Recursive
and OneLevel
.)
For filters used with GetParametersByPath, valid options include Equals
and
BeginsWith
. (Exception: For filters using Label
as the Key name, the only
valid option is Equals
.)
ParameterStringFilter.Builder values(Collection<String> values)
The value you want to search for.
values
- The value you want to search for.ParameterStringFilter.Builder values(String... values)
The value you want to search for.
values
- The value you want to search for.Copyright © 2021 Amazon Web Services, Inc. All Rights Reserved.