pub struct UntagResourceRequest {
pub resource_arn: String,
pub tag_keys: Vec<String>,
}Fields§
§resource_arn: String <p>The Amazon Resource Name (ARN) that uniquely identifies the resource that's associated with the tags.</p>
tag_keys: Vec<String> <p>Tag keys must be unique for a given cluster. In addition, the following restrictions apply:</p>
<ul>
<li>
<p>Each tag key must be unique. If you add a tag with a key that's already in
use, your new tag overwrites the existing key-value pair. </p>
</li>
<li>
<p>You can't start a tag key with aws: because this prefix is reserved for use
by AWS. AWS creates tags that begin with this prefix on your behalf, but
you can't edit or delete them.</p>
</li>
<li>
<p>Tag keys must be between 1 and 128 Unicode characters in length.</p>
</li>
<li>
<p>Tag keys must consist of the following characters: Unicode letters, digits,
white space, and the following special characters: _ . / = + -
@.</p>
</li>
</ul>
Trait Implementations§
Source§impl Clone for UntagResourceRequest
impl Clone for UntagResourceRequest
Source§fn clone(&self) -> UntagResourceRequest
fn clone(&self) -> UntagResourceRequest
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 UntagResourceRequest
impl Debug for UntagResourceRequest
Source§impl Default for UntagResourceRequest
impl Default for UntagResourceRequest
Source§fn default() -> UntagResourceRequest
fn default() -> UntagResourceRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UntagResourceRequest
impl PartialEq for UntagResourceRequest
Source§impl Serialize for UntagResourceRequest
impl Serialize for UntagResourceRequest
impl StructuralPartialEq for UntagResourceRequest
Auto Trait Implementations§
impl Freeze for UntagResourceRequest
impl RefUnwindSafe for UntagResourceRequest
impl Send for UntagResourceRequest
impl Sync for UntagResourceRequest
impl Unpin for UntagResourceRequest
impl UnwindSafe for UntagResourceRequest
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