Class: Aws::Firehose::Types::ListTagsForDeliveryStreamInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Firehose::Types::ListTagsForDeliveryStreamInput
- Defined in:
- gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#delivery_stream_name ⇒ String
The name of the delivery stream whose tags you want to list.
-
#exclusive_start_tag_key ⇒ String
The key to use as the starting point for the list of tags.
-
#limit ⇒ Integer
The number of tags to return.
Instance Attribute Details
#delivery_stream_name ⇒ String
The name of the delivery stream whose tags you want to list.
3066 3067 3068 3069 3070 3071 3072 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 3066 class ListTagsForDeliveryStreamInput < Struct.new( :delivery_stream_name, :exclusive_start_tag_key, :limit) SENSITIVE = [] include Aws::Structure end |
#exclusive_start_tag_key ⇒ String
The key to use as the starting point for the list of tags. If you
set this parameter, ListTagsForDeliveryStream
gets all tags that
occur after ExclusiveStartTagKey
.
3066 3067 3068 3069 3070 3071 3072 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 3066 class ListTagsForDeliveryStreamInput < Struct.new( :delivery_stream_name, :exclusive_start_tag_key, :limit) SENSITIVE = [] include Aws::Structure end |
#limit ⇒ Integer
The number of tags to return. If this number is less than the total
number of tags associated with the delivery stream, HasMoreTags
is
set to true
in the response. To list additional tags, set
ExclusiveStartTagKey
to the last key in the response.
3066 3067 3068 3069 3070 3071 3072 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 3066 class ListTagsForDeliveryStreamInput < Struct.new( :delivery_stream_name, :exclusive_start_tag_key, :limit) SENSITIVE = [] include Aws::Structure end |