Class: Aws::CloudWatchLogs::Types::ListTagsForResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchLogs::Types::ListTagsForResourceRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatchlogs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The ARN of the resource that you want to view tags for.
Instance Attribute Details
#resource_arn ⇒ String
The ARN of the resource that you want to view tags for.
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
3869 3870 3871 3872 3873 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 3869 class ListTagsForResourceRequest < Struct.new( :resource_arn) SENSITIVE = [] include Aws::Structure end |