AWSKinesisListTagsForStreamOutput
Objective-C
@interface AWSKinesisListTagsForStreamOutput
Swift
class AWSKinesisListTagsForStreamOutput
Represents the output for ListTagsForStream
.
Required parameters: [Tags, HasMoreTags]
-
If set to
true
, more tags are available. To request additional tags, setExclusiveStartTagKey
to the key of the last tag returned.Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable hasMoreTags;
Swift
var hasMoreTags: NSNumber? { get set }
-
A list of tags associated with
StreamName
, starting with the first tag afterExclusiveStartTagKey
and up to the specifiedLimit
.Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSKinesisTag *> *_Nullable tags;
Swift
var tags: [AWSKinesisTag]? { get set }