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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-acmpca/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.

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 'gems/aws-sdk-acmpca/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 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 2441

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