Class: Aws::Support::Types::Category

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-support/types.rb

Overview

A JSON-formatted name/value pair that represents the category name and category code of the problem, selected from the DescribeServices response for each Amazon Web Services service.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#codeString

The category code for the support case.

Returns:

  • (String)


434
435
436
437
438
439
# File 'lib/aws-sdk-support/types.rb', line 434

class Category < Struct.new(
  :code,
  :name)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The category name for the support case.

Returns:

  • (String)


434
435
436
437
438
439
# File 'lib/aws-sdk-support/types.rb', line 434

class Category < Struct.new(
  :code,
  :name)
  SENSITIVE = []
  include Aws::Structure
end