pub struct GetTagKeysOutput {
pub pagination_token: Option<String>,
pub tag_keys: 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_keys: Option<Vec<String>>
A list of all tag keys in the AWS account.
Trait Implementations§
Source§impl Clone for GetTagKeysOutput
impl Clone for GetTagKeysOutput
Source§fn clone(&self) -> GetTagKeysOutput
fn clone(&self) -> GetTagKeysOutput
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 GetTagKeysOutput
impl Debug for GetTagKeysOutput
Source§impl Default for GetTagKeysOutput
impl Default for GetTagKeysOutput
Source§fn default() -> GetTagKeysOutput
fn default() -> GetTagKeysOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetTagKeysOutput
impl<'de> Deserialize<'de> for GetTagKeysOutput
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 GetTagKeysOutput
impl PartialEq for GetTagKeysOutput
impl StructuralPartialEq for GetTagKeysOutput
Auto Trait Implementations§
impl Freeze for GetTagKeysOutput
impl RefUnwindSafe for GetTagKeysOutput
impl Send for GetTagKeysOutput
impl Sync for GetTagKeysOutput
impl Unpin for GetTagKeysOutput
impl UnwindSafe for GetTagKeysOutput
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