AWSIoTRegisterCertificateRequest
Objective-C
@interface AWSIoTRegisterCertificateRequest
Swift
class AWSIoTRegisterCertificateRequest
The input to the RegisterCertificate operation.
Required parameters: [certificatePem]
-
The CA certificate used to sign the device certificate being registered.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable caCertificatePem;
Swift
var caCertificatePem: String? { get set }
-
The certificate data, in PEM format.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable certificatePem;
Swift
var certificatePem: String? { get set }
-
A boolean value that specifies if the certificate is set to active.
Valid values:
ACTIVE | INACTIVE
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable setAsActive;
Swift
var setAsActive: NSNumber? { get set }
-
The status of the register certificate request. Valid values that you can use include
ACTIVE
,INACTIVE
, andREVOKED
.Declaration
Objective-C
@property (nonatomic) AWSIoTCertificateStatus status;
Swift
var status: AWSIoTCertificateStatus { get set }