Class: Aws::Backup::Types::KeyValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::Backup::Types::KeyValue
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-backup/types.rb
Overview
Pair of two related strings. Allowed characters are letters, white space, and numbers that can be represented in UTF-8 and the following characters: ‘ + - = . _ : /`
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The tag key (String).
-
#value ⇒ String
The value of the key.
Instance Attribute Details
#key ⇒ String
The tag key (String). The key can’t start with ‘aws:`.
Length Constraints: Minimum length of 1. Maximum length of 128.
Pattern: ‘^(?![aA]1}[wW]1</a>{1:)([pLpZpN_.:/=+-@]+)$`
4278 4279 4280 4281 4282 4283 |
# File 'lib/aws-sdk-backup/types.rb', line 4278 class KeyValue < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |