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

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



1315
1316
1317
1318
1319
1320
1321
# File 'gems/aws-sdk-support/lib/aws-sdk-support/types.rb', line 1315

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)


1315
1316
1317
1318
1319
1320
1321
# File 'gems/aws-sdk-support/lib/aws-sdk-support/types.rb', line 1315

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)


1315
1316
1317
1318
1319
1320
1321
# File 'gems/aws-sdk-support/lib/aws-sdk-support/types.rb', line 1315

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