You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::CloudTrail::Types::RemoveTagsRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing RemoveTagsRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  resource_id: "String", # required
  tags_list: [
    {
      key: "String", # required
      value: "String",
    },
  ],
}

Specifies the tags to remove from a trail.

Instance Attribute Summary collapse

Instance Attribute Details

#resource_idString

Specifies the ARN of the trail from which tags should be removed. The format of a trail ARN is:

arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail

Returns:

  • (String)

    Specifies the ARN of the trail from which tags should be removed.

#tags_listArray<Types::Tag>

Specifies a list of tags to be removed.

Returns:

  • (Array<Types::Tag>)

    Specifies a list of tags to be removed.