Class: Aws::Lambda::Types::ListTagsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::ListTagsRequest
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Note:
When making an API call, you may pass ListTagsRequest data as a hash:
{
resource: "FunctionArn", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource ⇒ String
The function's Amazon Resource Name (ARN).
Instance Attribute Details
#resource ⇒ String
The function's Amazon Resource Name (ARN). Note: Lambda does not support adding tags to aliases or versions.
4612 4613 4614 4615 4616 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4612 class ListTagsRequest < Struct.new( :resource) SENSITIVE = [] include Aws::Structure end |