Struct rusoto_dms::AddTagsToResourceMessage[][src]

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

Fields

The Amazon Resource Name (ARN) of the AWS DMS resource the tag is to be added to. AWS DMS resources include a replication instance, endpoint, and a replication task.

The tag to be assigned to the DMS 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