AWSS3InventoryS3BucketDestination
Objective-C
@interface AWSS3InventoryS3BucketDestination
Swift
class AWSS3InventoryS3BucketDestination
Contains the bucket name, file format, bucket owner (optional), and prefix (optional) where inventory results are published.
Required parameters: [Bucket, Format]
-
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 accountId;
Swift
var accountId: String? { get set }
-
The Amazon Resource Name (ARN) of the bucket where inventory results will be published.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable bucket;
Swift
var bucket: String? { get set }
-
Contains the type of server-side encryption used to encrypt the inventory results.
Declaration
Objective-C
@property (nonatomic, strong) AWSS3InventoryEncryption *_Nullable encryption;
Swift
var encryption: AWSS3InventoryEncryption? { get set }
-
Specifies the output format of the inventory results.
Declaration
Objective-C
@property (nonatomic) AWSS3InventoryFormat format;
Swift
var format: AWSS3InventoryFormat { get set }
-
The prefix that is prepended to all inventory results.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable prefix;
Swift
var prefix: String? { get set }