libZSservicesZSamazonka-supportZSamazonka-support
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.Support.Types.SupportService

Description

 
Synopsis

Documentation

data SupportService Source #

Information about an AWS service returned by the DescribeServices operation.

See: newSupportService smart constructor.

Constructors

SupportService' 

Fields

  • categories :: Maybe [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 AWS Support when you call CreateCase.

  • name :: Maybe Text

    The friendly name for an AWS service. The code element contains the corresponding code.

  • code :: Maybe Text

    The code for an AWS service returned by the DescribeServices response. The name element contains the corresponding friendly name.

Instances

Instances details
Eq SupportService Source # 
Instance details

Defined in Amazonka.Support.Types.SupportService

Read SupportService Source # 
Instance details

Defined in Amazonka.Support.Types.SupportService

Show SupportService Source # 
Instance details

Defined in Amazonka.Support.Types.SupportService

Generic SupportService Source # 
Instance details

Defined in Amazonka.Support.Types.SupportService

Associated Types

type Rep SupportService :: Type -> Type #

NFData SupportService Source # 
Instance details

Defined in Amazonka.Support.Types.SupportService

Methods

rnf :: SupportService -> () #

Hashable SupportService Source # 
Instance details

Defined in Amazonka.Support.Types.SupportService

FromJSON SupportService Source # 
Instance details

Defined in Amazonka.Support.Types.SupportService

type Rep SupportService Source # 
Instance details

Defined in Amazonka.Support.Types.SupportService

type Rep SupportService = D1 ('MetaData "SupportService" "Amazonka.Support.Types.SupportService" "libZSservicesZSamazonka-supportZSamazonka-support" 'False) (C1 ('MetaCons "SupportService'" 'PrefixI 'True) (S1 ('MetaSel ('Just "categories") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Category])) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "code") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newSupportService :: SupportService Source #

Create a value of SupportService with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:categories:SupportService', supportService_categories - 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 AWS Support when you call CreateCase.

$sel:name:SupportService', supportService_name - The friendly name for an AWS service. The code element contains the corresponding code.

$sel:code:SupportService', supportService_code - The code for an AWS service returned by the DescribeServices response. The name element contains the corresponding friendly name.

supportService_categories :: Lens' SupportService (Maybe [Category]) Source #

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 AWS Support when you call CreateCase.

supportService_name :: Lens' SupportService (Maybe Text) Source #

The friendly name for an AWS service. The code element contains the corresponding code.

supportService_code :: Lens' SupportService (Maybe Text) Source #

The code for an AWS service returned by the DescribeServices response. The name element contains the corresponding friendly name.