AWSS3AnalyticsS3BucketDestination

Objective-C

@interface AWSS3AnalyticsS3BucketDestination

Swift

class AWSS3AnalyticsS3BucketDestination

Contains information about where to publish the analytics results.

Required parameters: [Format, Bucket]

  • The Amazon Resource Name (ARN) of the bucket to which data is exported.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable bucket;

    Swift

    var bucket: String? { get set }
  • The account ID that owns the destination S3 bucket. If no account ID is provided, the owner is not validated before exporting data.

    Although this value is optional, we strongly recommend that you set it to help prevent problems if the destination bucket ownership changes.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable bucketAccountId;

    Swift

    var bucketAccountId: String? { get set }
  • Specifies the file format used when exporting data to Amazon S3.

    Declaration

    Objective-C

    @property (nonatomic) AWSS3AnalyticsS3ExportFileFormat format;

    Swift

    var format: AWSS3AnalyticsS3ExportFileFormat { get set }
  • The prefix to use when exporting data. The prefix is prepended to all results.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable prefix;

    Swift

    var prefix: String? { get set }