AWSKMSTag

Objective-C

@interface AWSKMSTag

Swift

class AWSKMSTag

A key-value pair. A tag consists of a tag key and a tag value. Tag keys and tag values are both required, but tag values can be empty (null) strings.

Do not include confidential or sensitive information in this field. This field may be displayed in plaintext in CloudTrail logs and other output.

For information about the rules that apply to tag keys and tag values, see User-Defined Tag Restrictions in the Amazon Web Services Billing and Cost Management User Guide.

Required parameters: [TagKey, TagValue]

  • The key of the tag.

    Declaration

    Objective-C

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

    Swift

    var tagKey: String? { get set }
  • The value of the tag.

    Declaration

    Objective-C

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

    Swift

    var tagValue: String? { get set }