Class: Aws::Support::Types::Service

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

Overview

Information about an Amazon Web Services service returned by the DescribeServices operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#categoriesArray<Types::Category>

A list of categories that describe the type of support issue a case describes. Categories consist of a category name and a category code. Category names and codes are passed to Amazon Web Services Support when you call CreateCase.

Returns:



1325
1326
1327
1328
1329
1330
1331
# File 'lib/aws-sdk-support/types.rb', line 1325

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

#codeString

The code for an Amazon Web Services service returned by the DescribeServices response. The ‘name` element contains the corresponding friendly name.

Returns:

  • (String)


1325
1326
1327
1328
1329
1330
1331
# File 'lib/aws-sdk-support/types.rb', line 1325

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

#nameString

The friendly name for an Amazon Web Services service. The ‘code` element contains the corresponding code.

Returns:

  • (String)


1325
1326
1327
1328
1329
1330
1331
# File 'lib/aws-sdk-support/types.rb', line 1325

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