Class: Aws::Support::Types::Service
- Inherits:
-
Struct
- Object
- Struct
- Aws::Support::Types::Service
- 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
-
#categories ⇒ Array<Types::Category>
A list of categories that describe the type of support issue a case describes.
-
#code ⇒ String
The code for an Amazon Web Services service returned by the DescribeServices response.
-
#name ⇒ String
The friendly name for an Amazon Web Services service.
Instance Attribute Details
#categories ⇒ Array<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.
1325 1326 1327 1328 1329 1330 1331 |
# File 'gems/aws-sdk-support/lib/aws-sdk-support/types.rb', line 1325 class Service < Struct.new( :code, :name, :categories) SENSITIVE = [] include Aws::Structure end |
#code ⇒ String
The code for an Amazon Web Services service returned by the
DescribeServices response. The name
element contains the
corresponding friendly name.
1325 1326 1327 1328 1329 1330 1331 |
# File 'gems/aws-sdk-support/lib/aws-sdk-support/types.rb', line 1325 class Service < Struct.new( :code, :name, :categories) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The friendly name for an Amazon Web Services service. The code
element contains the corresponding code.
1325 1326 1327 1328 1329 1330 1331 |
# File 'gems/aws-sdk-support/lib/aws-sdk-support/types.rb', line 1325 class Service < Struct.new( :code, :name, :categories) SENSITIVE = [] include Aws::Structure end |