Class: Aws::Backup::Types::KeyValue

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#keyString

The tag key (String). The key can’t start with ‘aws:`.

Length Constraints: Minimum length of 1. Maximum length of 128.

Pattern: ‘^(?![aA]111:)([pLpZpN_.:/=+-@]+)$`

Returns:

  • (String)


4279
4280
4281
4282
4283
4284
# File 'lib/aws-sdk-backup/types.rb', line 4279

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

#valueString

The value of the key.

Length Constraints: Maximum length of 256.

Pattern: ‘^([pLpZpN_.:/=+-@]*)$`

Returns:

  • (String)


4279
4280
4281
4282
4283
4284
# File 'lib/aws-sdk-backup/types.rb', line 4279

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