Class: Aws::EFS::Types::Tag

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

Overview

A tag is a key-value pair. 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:.

Returns:

  • (String)


2526
2527
2528
2529
2530
2531
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 2526

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

#valueString

The value of the tag key.

Returns:

  • (String)


2526
2527
2528
2529
2530
2531
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 2526

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