AWSKMSListKeysResponse

Objective-C

@interface AWSKMSListKeysResponse

Swift

class AWSKMSListKeysResponse
  • A list of KMS keys.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSKMSKeyListEntry *> *_Nullable keys;

    Swift

    var keys: [AWSKMSKeyListEntry]? { get set }
  • When Truncated is true, this element is present and contains the value to use for the Marker parameter in a subsequent request.

    Declaration

    Objective-C

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

    Swift

    var nextMarker: String? { get set }
  • A flag that indicates whether there are more items in the list. When this value is true, the list in this response is truncated. To get more items, pass the value of the NextMarker element in thisresponse to the Marker parameter in a subsequent request.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable truncated;

    Swift

    var truncated: NSNumber? { get set }