Class: Aws::DataSync::Types::TagListEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataSync::Types::TagListEntry
- Defined in:
- gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb
Overview
Note:
When making an API call, you may pass TagListEntry data as a hash:
{
key: "TagKey", # required
value: "TagValue",
}
Represents a single entry in a list of Amazon Web Services resource
tags. TagListEntry
returns an array that contains a list of tasks
when the ListTagsForResource operation is called.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The key for an Amazon Web Services resource tag.
-
#value ⇒ String
The value for an Amazon Web Services resource tag.
Instance Attribute Details
#key ⇒ String
The key for an Amazon Web Services resource tag.
3795 3796 3797 3798 3799 3800 |
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 3795 class TagListEntry < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value for an Amazon Web Services resource tag.
3795 3796 3797 3798 3799 3800 |
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 3795 class TagListEntry < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |