[−][src]Struct rusoto_ssm::DocumentKeyValuesFilter
One or more filters. Use a filter to return a more specific list of documents.
For keys, you can specify one or more tags that have been applied to a document.
Other valid values include Owner, Name, PlatformTypes, and DocumentType.
Note that only one Owner can be specified in a request. For example: Key=Owner,Values=Self
.
If you use Name as a key, you can use a name prefix to return a list of documents. For example, in the AWS CLI, to return a list of all documents that begin with Te
, run the following command:
aws ssm list-documents --filters Key=Name,Values=Te
If you specify more than two keys, only documents that are identified by all the tags are returned in the results. If you specify more than two values for a key, documents that are identified by any of the values are returned in the results.
To specify a custom key and value pair, use the format Key=tag:[tagName],Values=[valueName]
.
For example, if you created a Key called region and are using the AWS CLI to call the list-documents
command:
aws ssm list-documents --filters Key=tag:region,Values=east,west Key=Owner,Values=Self
Fields
key: Option<String>
The name of the filter key.
values: Option<Vec<String>>
The value for the filter key.
Trait Implementations
impl PartialEq<DocumentKeyValuesFilter> for DocumentKeyValuesFilter
[src]
fn eq(&self, other: &DocumentKeyValuesFilter) -> bool
[src]
fn ne(&self, other: &DocumentKeyValuesFilter) -> bool
[src]
impl Default for DocumentKeyValuesFilter
[src]
fn default() -> DocumentKeyValuesFilter
[src]
impl Clone for DocumentKeyValuesFilter
[src]
fn clone(&self) -> DocumentKeyValuesFilter
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for DocumentKeyValuesFilter
[src]
impl Serialize for DocumentKeyValuesFilter
[src]
Auto Trait Implementations
impl Send for DocumentKeyValuesFilter
impl Sync for DocumentKeyValuesFilter
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self