pub struct GetTagValuesOutput {
pub pagination_token: Option<String>,
pub tag_values: Option<Vec<String>>,
}
Fields§
§pagination_token: Option<String>
A string that indicates that the response contains more data than can be returned in a single response. To receive additional data, specify this string for the PaginationToken
value in a subsequent request.
tag_values: Option<Vec<String>>
A list of all tag values for the specified key in the AWS account.
Trait Implementations§
Source§impl Clone for GetTagValuesOutput
impl Clone for GetTagValuesOutput
Source§fn clone(&self) -> GetTagValuesOutput
fn clone(&self) -> GetTagValuesOutput
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 GetTagValuesOutput
impl Debug for GetTagValuesOutput
Source§impl Default for GetTagValuesOutput
impl Default for GetTagValuesOutput
Source§fn default() -> GetTagValuesOutput
fn default() -> GetTagValuesOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetTagValuesOutput
impl<'de> Deserialize<'de> for GetTagValuesOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GetTagValuesOutput
impl PartialEq for GetTagValuesOutput
impl StructuralPartialEq for GetTagValuesOutput
Auto Trait Implementations§
impl Freeze for GetTagValuesOutput
impl RefUnwindSafe for GetTagValuesOutput
impl Send for GetTagValuesOutput
impl Sync for GetTagValuesOutput
impl Unpin for GetTagValuesOutput
impl UnwindSafe for GetTagValuesOutput
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