Class: Aws::Lambda::Types::TagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::TagResourceRequest
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Note:
When making an API call, you may pass TagResourceRequest data as a hash:
{
resource: "FunctionArn", # required
tags: { # required
"TagKey" => "TagValue",
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource ⇒ String
The function's Amazon Resource Name (ARN).
-
#tags ⇒ Hash<String,String>
A list of tags to apply to the function.
Instance Attribute Details
#resource ⇒ String
The function's Amazon Resource Name (ARN).
4857 4858 4859 4860 4861 4862 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4857 class TagResourceRequest < Struct.new( :resource, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
A list of tags to apply to the function.
4857 4858 4859 4860 4861 4862 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4857 class TagResourceRequest < Struct.new( :resource, :tags) SENSITIVE = [] include Aws::Structure end |