AWSS3ListBucketAnalyticsConfigurationsOutput
Objective-C
@interface AWSS3ListBucketAnalyticsConfigurationsOutput
Swift
class AWSS3ListBucketAnalyticsConfigurationsOutput
-
The list of analytics configurations for a bucket.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSS3AnalyticsConfiguration *> *_Nullable analyticsConfigurationList;
Swift
var analyticsConfigurationList: [AWSS3AnalyticsConfiguration]? { get set }
-
The marker that is used as a starting point for this analytics configuration list response. This value is present if it was sent in the request.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable continuationToken;
Swift
var continuationToken: String? { get set }
-
Indicates whether the returned list of analytics configurations is complete. A value of true indicates that the list is not complete and the NextContinuationToken will be provided for a subsequent request.
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable isTruncated;
Swift
var isTruncated: NSNumber? { get set }
-
NextContinuationToken
is sent whenisTruncated
is true, which indicates that there are more analytics configurations to list. The next request must include thisNextContinuationToken
. The token is obfuscated and is not a usable value.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable nextContinuationToken;
Swift
var nextContinuationToken: String? { get set }