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 after ExclusiveStartTagKey.

    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 to true. To list additional tags, set ExclusiveStartTagKey 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 }