AWSKinesisListTagsForStreamInput
Objective-C
@interface AWSKinesisListTagsForStreamInput
Swift
class AWSKinesisListTagsForStreamInput
Represents the input for ListTagsForStream
.
Required parameters: [StreamName]
-
The key to use as the starting point for the list of tags. If this parameter is set,
ListTagsForStream
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 stream,
HasMoreTags
is set totrue
. 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 }
-
The name of the stream.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable streamName;
Swift
var streamName: String? { get set }