Struct aws_sdk_apprunner::operation::tag_resource::TagResourceInput   
source · #[non_exhaustive]pub struct TagResourceInput {
    pub resource_arn: Option<String>,
    pub tags: Option<Vec<Tag>>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.resource_arn: Option<String>The Amazon Resource Name (ARN) of the resource that you want to update tags for.
It must be the ARN of an App Runner resource.
A list of tag key-value pairs to add or update. If a key is new to the resource, the tag is added with the provided value. If a key is already associated with the resource, the value of the tag is updated.
Implementations§
source§impl TagResourceInput
 
impl TagResourceInput
sourcepub fn resource_arn(&self) -> Option<&str>
 
pub fn resource_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the resource that you want to update tags for.
It must be the ARN of an App Runner resource.
A list of tag key-value pairs to add or update. If a key is new to the resource, the tag is added with the provided value. If a key is already associated with the resource, the value of the tag is updated.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none().
source§impl TagResourceInput
 
impl TagResourceInput
sourcepub fn builder() -> TagResourceInputBuilder
 
pub fn builder() -> TagResourceInputBuilder
Creates a new builder-style object to manufacture TagResourceInput.
Trait Implementations§
source§impl Clone for TagResourceInput
 
impl Clone for TagResourceInput
source§fn clone(&self) -> TagResourceInput
 
fn clone(&self) -> TagResourceInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for TagResourceInput
 
impl Debug for TagResourceInput
source§impl PartialEq for TagResourceInput
 
impl PartialEq for TagResourceInput
source§fn eq(&self, other: &TagResourceInput) -> bool
 
fn eq(&self, other: &TagResourceInput) -> bool
self and other values to be equal, and is used
by ==.