AWSSQSListQueuesResult
Objective-C
@interface AWSSQSListQueuesResult
Swift
class AWSSQSListQueuesResult
A list of your queues.
-
Pagination token to include in the next request. Token value is
null
if there are no additional results to request, or if you did not setMaxResults
in the request.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable nextToken;
Swift
var nextToken: String? { get set }
-
A list of queue URLs, up to 1,000 entries, or the value of
MaxResults
that you sent in the request.Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSString *> *_Nullable queueUrls;
Swift
var queueUrls: [String]? { get set }