pub struct ListTagsForResourceInput {
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub resource_arn: String,
}
Fields§
§max_results: Option<i64>
The maximum number of results to return in a single call.
next_token: Option<String>
The token that was returned from the previous API call, which would be used to return the next page of the list. The ListTagsforResource call lists all available tags in one call and does not use pagination.
resource_arn: String
The Amazon Resource Name (ARN) of the resource to get tags for.
Trait Implementations§
Source§impl Clone for ListTagsForResourceInput
impl Clone for ListTagsForResourceInput
Source§fn clone(&self) -> ListTagsForResourceInput
fn clone(&self) -> ListTagsForResourceInput
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ListTagsForResourceInput
impl Debug for ListTagsForResourceInput
Source§impl Default for ListTagsForResourceInput
impl Default for ListTagsForResourceInput
Source§fn default() -> ListTagsForResourceInput
fn default() -> ListTagsForResourceInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListTagsForResourceInput
impl PartialEq for ListTagsForResourceInput
Source§impl Serialize for ListTagsForResourceInput
impl Serialize for ListTagsForResourceInput
impl StructuralPartialEq for ListTagsForResourceInput
Auto Trait Implementations§
impl Freeze for ListTagsForResourceInput
impl RefUnwindSafe for ListTagsForResourceInput
impl Send for ListTagsForResourceInput
impl Sync for ListTagsForResourceInput
impl Unpin for ListTagsForResourceInput
impl UnwindSafe for ListTagsForResourceInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more