AWSIoTCreateKeysAndCertificateResponse

Objective-C

@interface AWSIoTCreateKeysAndCertificateResponse

Swift

class AWSIoTCreateKeysAndCertificateResponse

The output of the CreateKeysAndCertificate operation.

  • The ARN of the certificate.

    Declaration

    Objective-C

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

    Swift

    var certificateArn: String? { get set }
  • The ID of the certificate. IoT issues a default subject name for the certificate (for example, IoT Certificate).

    Declaration

    Objective-C

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

    Swift

    var certificateId: String? { get set }
  • The certificate data, in PEM format.

    Declaration

    Objective-C

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

    Swift

    var certificatePem: String? { get set }
  • The generated key pair.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSIoTKeyPair *_Nullable keyPair;

    Swift

    var keyPair: AWSIoTKeyPair? { get set }