[−][src]Struct rusoto_resourcegroupstaggingapi::GetResourcesInput
Fields
pagination_token: Option<String>
A string that indicates that additional data is available. Leave this value empty for your initial request. If the response includes a PaginationToken
, use that string for this value to request an additional page of data.
resource_type_filters: Option<Vec<String>>
The constraints on the resources that you want returned. The format of each resource type is service[:resourceType]
. For example, specifying a resource type of ec2
returns all tagged Amazon EC2 resources (which includes tagged EC2 instances). Specifying a resource type of ec2:instance
returns only EC2 instances.
The string for each service name and resource type is the same as that embedded in a resource's Amazon Resource Name (ARN). Consult the AWS General Reference for the following:
-
For a list of service name strings, see AWS Service Namespaces.
-
For resource type strings, see Example ARNs.
-
For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces.
resources_per_page: Option<i64>
A limit that restricts the number of resources returned by GetResources in paginated output. You can set ResourcesPerPage to a minimum of 1 item and the maximum of 50 items.
tag_filters: Option<Vec<TagFilter>>
A list of tags (keys and values). A request can include up to 50 keys, and each key can include up to 20 values.
If you specify multiple filters connected by an AND operator in a single request, the response returns only those resources that are associated with every specified filter.
If you specify multiple filters connected by an OR operator in a single request, the response returns all resources that are associated with at least one or possibly more of the specified filters.
A limit that restricts the number of tags (key and value pairs) returned by GetResources in paginated output. A resource with no tags is counted as having one tag (one key and value pair).
GetResources
does not split a resource and its associated tags across pages. If the specified TagsPerPage
would cause such a break, a PaginationToken
is returned in place of the affected resource and its tags. Use that token in another request to get the remaining data. For example, if you specify a TagsPerPage
of 100
and the account has 22 resources with 10 tags each (meaning that each resource has 10 key and value pairs), the output will consist of 3 pages, with the first page displaying the first 10 resources, each with its 10 tags, the second page displaying the next 10 resources each with its 10 tags, and the third page displaying the remaining 2 resources, each with its 10 tags.
You can set TagsPerPage
to a minimum of 100 items and the maximum of 500 items.
Trait Implementations
impl PartialEq<GetResourcesInput> for GetResourcesInput
[src]
fn eq(&self, other: &GetResourcesInput) -> bool
[src]
fn ne(&self, other: &GetResourcesInput) -> bool
[src]
impl Default for GetResourcesInput
[src]
fn default() -> GetResourcesInput
[src]
impl Clone for GetResourcesInput
[src]
fn clone(&self) -> GetResourcesInput
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for GetResourcesInput
[src]
impl Serialize for GetResourcesInput
[src]
Auto Trait Implementations
impl Send for GetResourcesInput
impl Sync for GetResourcesInput
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