Class: Aws::Lambda::Types::UntagResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::UntagResourceRequest
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Note:
When making an API call, you may pass UntagResourceRequest data as a hash:
{
resource: "FunctionArn", # required
tag_keys: ["TagKey"], # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource ⇒ String
The function's Amazon Resource Name (ARN).
-
#tag_keys ⇒ Array<String>
A list of tag keys to remove from the function.
Instance Attribute Details
#resource ⇒ String
The function's Amazon Resource Name (ARN).
5754 5755 5756 5757 5758 5759 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 5754 class UntagResourceRequest < Struct.new( :resource, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
A list of tag keys to remove from the function.
5754 5755 5756 5757 5758 5759 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 5754 class UntagResourceRequest < Struct.new( :resource, :tag_keys) SENSITIVE = [] include Aws::Structure end |