AWSKMSGenerateMacResponse

Objective-C

@interface AWSKMSGenerateMacResponse

Swift

class AWSKMSGenerateMacResponse
  • The HMAC KMS key used in the operation.

    Declaration

    Objective-C

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

    Swift

    var keyId: String? { get set }
  • mac

    The hash-based message authentication code (HMAC) that was generated for the specified message, HMAC KMS key, and MAC algorithm.

    This is the standard, raw HMAC defined in RFC 2104.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSData *_Nullable mac;

    Swift

    var mac: Data? { get set }
  • The MAC algorithm that was used to generate the HMAC.

    Declaration

    Objective-C

    @property (nonatomic) AWSKMSMacAlgorithmSpec macAlgorithm;

    Swift

    var macAlgorithm: AWSKMSMacAlgorithmSpec { get set }