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]11:)([pLpZpN_.:/=+-@]+)$`
5335 5336 5337 5338 5339 5340 |
# File 'lib/aws-sdk-backup/types.rb', line 5335 class KeyValue < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the key.
Length Constraints: Maximum length of 256.
Pattern: ‘^([pLpZpN_.:/=+-@]*)$`
5335 5336 5337 5338 5339 5340 |
# File 'lib/aws-sdk-backup/types.rb', line 5335 class KeyValue < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |