AWSKinesisVideoArchivedMediaListFragmentsInput
Objective-C
@interface AWSKinesisVideoArchivedMediaListFragmentsInput
Swift
class AWSKinesisVideoArchivedMediaListFragmentsInput
-
Describes the timestamp range and timestamp origin for the range of fragments to return.
This is only required when the
NextToken
isn’t passed in the API.Declaration
Objective-C
@property (nonatomic, strong) AWSKinesisVideoArchivedMediaFragmentSelector *_Nullable fragmentSelector;
Swift
var fragmentSelector: AWSKinesisVideoArchivedMediaFragmentSelector? { get set }
-
The total number of fragments to return. If the total number of fragments available is more than the value specified in
max-results
, then a ListFragmentsOutput$NextToken is provided in the output that you can use to resume pagination.Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable maxResults;
Swift
var maxResults: NSNumber? { get set }
-
A token to specify where to start paginating. This is the ListFragmentsOutput$NextToken from a previously truncated response.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable nextToken;
Swift
var nextToken: String? { get set }
-
The Amazon Resource Name (ARN) of the stream from which to retrieve a fragment list. Specify either this parameter or the
StreamName
parameter.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable streamARN;
Swift
var streamARN: String? { get set }
-
The name of the stream from which to retrieve a fragment list. Specify either this parameter or the
StreamARN
parameter.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable streamName;
Swift
var streamName: String? { get set }