AWSIoTCreatePackageVersionRequest
Objective-C
@interface AWSIoTCreatePackageVersionRequest
Swift
class AWSIoTCreatePackageVersionRequest
-
Metadata that can be used to define a package version’s configuration. For example, the S3 file location, configuration options that are being sent to the device or fleet.
The combined size of all the attributes on a package version is limited to 3KB.
Declaration
Objective-C
@property (nonatomic, strong) NSDictionary<NSString *, NSString *> *_Nullable attributes;
Swift
var attributes: [String : String]? { get set }
-
A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don’t reuse this client token if a new idempotent request is required.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable clientToken;
Swift
var clientToken: String? { get set }
-
A summary of the package version being created. This can be used to outline the package’s contents or purpose.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable detail;
Swift
var detail: String? { get set }
-
The name of the associated software package.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable packageName;
Swift
var packageName: String? { get set }
-
Metadata that can be used to manage the package version.
Declaration
Objective-C
@property (nonatomic, strong) NSDictionary<NSString *, NSString *> *_Nullable tags;
Swift
var tags: [String : String]? { get set }
-
The name of the new package version.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable versionName;
Swift
var versionName: String? { get set }