Struct rusoto_rds::AddTagsToResourceMessage[][src]

pub struct AddTagsToResourceMessage {
    pub resource_name: String,
    pub tags: Vec<Tag>,
}

Fields

The Amazon RDS resource that the tags are added to. This value is an Amazon Resource Name (ARN). For information about creating an ARN, see Constructing an RDS Amazon Resource Name (ARN).

The tags to be assigned to the Amazon RDS resource.

Trait Implementations

impl Default for AddTagsToResourceMessage
[src]

Returns the "default value" for a type. Read more

impl Debug for AddTagsToResourceMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for AddTagsToResourceMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AddTagsToResourceMessage
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations