AWSKinesisListStreamsOutput
Objective-C
@interface AWSKinesisListStreamsOutput
Swift
class AWSKinesisListStreamsOutput
Represents the output for ListStreams
.
Required parameters: [StreamNames, HasMoreStreams]
-
If set to
true
, there are more streams available to list.Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable hasMoreStreams;
Swift
var hasMoreStreams: NSNumber? { get set }
-
The names of the streams that are associated with the AWS account making the
ListStreams
request.Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSString *> *_Nullable streamNames;
Swift
var streamNames: [String]? { get set }