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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-support/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)


424
425
426
427
428
429
# File 'gems/aws-sdk-support/lib/aws-sdk-support/types.rb', line 424

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

#nameString

The category name for the support case.

Returns:

  • (String)


424
425
426
427
428
429
# File 'gems/aws-sdk-support/lib/aws-sdk-support/types.rb', line 424

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