Class: Aws::CloudWatchLogs::Types::UntagResourceRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cloudwatchlogs/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_arnString

The ARN of the CloudWatch Logs resource that you’re removing tags from.

The ARN format of a log group is ‘arn:aws:logs:Region:account-id:log-group:log-group-name `

The ARN format of a destination is ‘arn:aws:logs:Region:account-id:destination:destination-name `

For more information about ARN format, see [CloudWatch Logs resources and operations].

[1]: docs.aws.amazon.com/AmazonCloudWatch/latest/logs/iam-access-control-overview-cwl.html

Returns:

  • (String)


4973
4974
4975
4976
4977
4978
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 4973

class UntagResourceRequest < Struct.new(
  :resource_arn,
  :tag_keys)
  SENSITIVE = []
  include Aws::Structure
end

#tag_keysArray<String>

The list of tag keys to remove from the resource.

Returns:

  • (Array<String>)


4973
4974
4975
4976
4977
4978
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 4973

class UntagResourceRequest < Struct.new(
  :resource_arn,
  :tag_keys)
  SENSITIVE = []
  include Aws::Structure
end