AWSKMSGenerateDataKeyPairWithoutPlaintextResponse
Objective-C
@interface AWSKMSGenerateDataKeyPairWithoutPlaintextResponse
Swift
class AWSKMSGenerateDataKeyPairWithoutPlaintextResponse
-
The Amazon Resource Name (key ARN) of the KMS key that encrypted the private key.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable keyId;
Swift
var keyId: String? { get set }
-
The type of data key pair that was generated.
Declaration
Objective-C
@property (nonatomic) AWSKMSDataKeyPairSpec keyPairSpec;
Swift
var keyPairSpec: AWSKMSDataKeyPairSpec { get set }
-
The encrypted copy of the private key. When you use the HTTP API or the Amazon Web Services CLI, the value is Base64-encoded. Otherwise, it is not Base64-encoded.
Declaration
Objective-C
@property (nonatomic, strong) NSData *_Nullable privateKeyCiphertextBlob;
Swift
var privateKeyCiphertextBlob: Data? { get set }
-
The public key (in plaintext). When you use the HTTP API or the Amazon Web Services CLI, the value is Base64-encoded. Otherwise, it is not Base64-encoded.
Declaration
Objective-C
@property (nonatomic, strong) NSData *_Nullable publicKey;
Swift
var publicKey: Data? { get set }