Class: Aws::ElasticBeanstalk::Types::ListTagsForResourceMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticBeanstalk::Types::ListTagsForResourceMessage
- Defined in:
- gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb
Overview
Note:
When making an API call, you may pass ListTagsForResourceMessage data as a hash:
{
resource_arn: "ResourceArn", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the resouce for which a tag list is requested.
Instance Attribute Details
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the resouce for which a tag list is requested.
Must be the ARN of an Elastic Beanstalk resource.
3421 3422 3423 3424 3425 |
# File 'gems/aws-sdk-elasticbeanstalk/lib/aws-sdk-elasticbeanstalk/types.rb', line 3421 class ListTagsForResourceMessage < Struct.new( :resource_arn) SENSITIVE = [] include Aws::Structure end |