Class: Aws::Firehose::Types::ListTagsForDeliveryStreamOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Firehose::Types::ListTagsForDeliveryStreamOutput
- Defined in:
- gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#has_more_tags ⇒ Boolean
If this is
true
in the response, more tags are available. -
#tags ⇒ Array<Types::Tag>
A list of tags associated with
DeliveryStreamName
, starting with the first tag afterExclusiveStartTagKey
and up to the specifiedLimit
.
Instance Attribute Details
#has_more_tags ⇒ Boolean
If this is true
in the response, more tags are available. To list
the remaining tags, set ExclusiveStartTagKey
to the key of the
last tag returned and call ListTagsForDeliveryStream
again.
2706 2707 2708 2709 2710 2711 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 2706 class ListTagsForDeliveryStreamOutput < Struct.new( :tags, :has_more_tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A list of tags associated with DeliveryStreamName
, starting with
the first tag after ExclusiveStartTagKey
and up to the specified
Limit
.
2706 2707 2708 2709 2710 2711 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 2706 class ListTagsForDeliveryStreamOutput < Struct.new( :tags, :has_more_tags) SENSITIVE = [] include Aws::Structure end |