AWSKMSListResourceTagsResponse

Objective-C

@interface AWSKMSListResourceTagsResponse

Swift

class AWSKMSListResourceTagsResponse
  • When Truncated is true, this element is present and contains the value to use for the Marker parameter in a subsequent request.

    Do not assume or infer any information from this value.

    Declaration

    Objective-C

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

    Swift

    var nextMarker: String? { get set }
  • A list of tags. Each tag consists of a tag key and a tag value.

    Tagging or untagging a KMS key can allow or deny permission to the KMS key. For details, see ABAC for KMS in the Key Management Service Developer Guide.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSKMSTag *> *_Nullable tags;

    Swift

    var tags: [AWSKMSTag]? { 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 }