Class: Aws::BackupGateway::Types::Tag

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-backupgateway/lib/aws-sdk-backupgateway/types.rb

Overview

A key-value pair you can use to manage, filter, and search for your resources. Allowed characters include UTF-8 letters, numbers, and the following characters: + - = . _ : /. Spaces are not allowed in tag values.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The key part of a tag's key-value pair. The key can't start with aws:.

Returns:

  • (String)


1056
1057
1058
1059
1060
1061
# File 'gems/aws-sdk-backupgateway/lib/aws-sdk-backupgateway/types.rb', line 1056

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

#valueString

The value part of a tag's key-value pair.

Returns:

  • (String)


1056
1057
1058
1059
1060
1061
# File 'gems/aws-sdk-backupgateway/lib/aws-sdk-backupgateway/types.rb', line 1056

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