Class: Aws::ACMPCA::Types::Tag

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-acmpca/types.rb

Overview

Tags are labels that you can use to identify and organize your private CAs. Each tag consists of a key and an optional value. You can associate up to 50 tags with a private CA. To add one or more tags to a private CA, call the [TagCertificateAuthority] action. To remove a tag, call the [UntagCertificateAuthority] action.

[1]: docs.aws.amazon.com/privateca/latest/APIReference/API_TagCertificateAuthority.html [2]: docs.aws.amazon.com/privateca/latest/APIReference/API_UntagCertificateAuthority.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

Key (name) of the tag.

Returns:

  • (String)


2441
2442
2443
2444
2445
2446
# File 'lib/aws-sdk-acmpca/types.rb', line 2441

class Tag < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

Value of the tag.

Returns:

  • (String)


2441
2442
2443
2444
2445
2446
# File 'lib/aws-sdk-acmpca/types.rb', line 2441

class Tag < Struct.new(
  :key,
  :value)
  SENSITIVE = []
  include Aws::Structure
end