AWSFirehoseListTagsForDeliveryStreamInput
Objective-C
@interface AWSFirehoseListTagsForDeliveryStreamInput
Swift
class AWSFirehoseListTagsForDeliveryStreamInput
-
The name of the delivery stream whose tags you want to list.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable deliveryStreamName;
Swift
var deliveryStreamName: String? { get set }
-
The key to use as the starting point for the list of tags. If you set this parameter,
ListTagsForDeliveryStream
gets all tags that occur afterExclusiveStartTagKey
.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable exclusiveStartTagKey;
Swift
var exclusiveStartTagKey: String? { get set }
-
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 totrue
in the response. To list additional tags, setExclusiveStartTagKey
to the last key in the response.Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable limit;
Swift
var limit: NSNumber? { get set }