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, spaces, and the following characters: + - = . _ : /.

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)


1048
1049
1050
1051
1052
1053
# File 'gems/aws-sdk-backupgateway/lib/aws-sdk-backupgateway/types.rb', line 1048

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

#valueString

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

Returns:

  • (String)


1048
1049
1050
1051
1052
1053
# File 'gems/aws-sdk-backupgateway/lib/aws-sdk-backupgateway/types.rb', line 1048

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