pub struct GetTagValuesInput {
pub key: String,
pub pagination_token: Option<String>,
}
Fields§
§key: String
The key for which you want to list all existing values in the specified Region for the AWS account.
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.
Trait Implementations§
Source§impl Clone for GetTagValuesInput
impl Clone for GetTagValuesInput
Source§fn clone(&self) -> GetTagValuesInput
fn clone(&self) -> GetTagValuesInput
Returns a duplicate 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 GetTagValuesInput
impl Debug for GetTagValuesInput
Source§impl Default for GetTagValuesInput
impl Default for GetTagValuesInput
Source§fn default() -> GetTagValuesInput
fn default() -> GetTagValuesInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetTagValuesInput
impl PartialEq for GetTagValuesInput
Source§impl Serialize for GetTagValuesInput
impl Serialize for GetTagValuesInput
impl StructuralPartialEq for GetTagValuesInput
Auto Trait Implementations§
impl Freeze for GetTagValuesInput
impl RefUnwindSafe for GetTagValuesInput
impl Send for GetTagValuesInput
impl Sync for GetTagValuesInput
impl Unpin for GetTagValuesInput
impl UnwindSafe for GetTagValuesInput
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