libZSservicesZSamazonka-apigatewayZSamazonka-apigateway
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.APIGateway.GetSdkType

Description

  • - | Undocumented operation.
Synopsis

Creating a Request

data GetSdkType Source #

Get an SdkType instance.

See: newGetSdkType smart constructor.

Constructors

GetSdkType' 

Fields

  • id :: Text
    Required
    The identifier of the queried SdkType instance.

Instances

Instances details
Eq GetSdkType Source # 
Instance details

Defined in Amazonka.APIGateway.GetSdkType

Read GetSdkType Source # 
Instance details

Defined in Amazonka.APIGateway.GetSdkType

Show GetSdkType Source # 
Instance details

Defined in Amazonka.APIGateway.GetSdkType

Generic GetSdkType Source # 
Instance details

Defined in Amazonka.APIGateway.GetSdkType

Associated Types

type Rep GetSdkType :: Type -> Type #

NFData GetSdkType Source # 
Instance details

Defined in Amazonka.APIGateway.GetSdkType

Methods

rnf :: GetSdkType -> () #

Hashable GetSdkType Source # 
Instance details

Defined in Amazonka.APIGateway.GetSdkType

AWSRequest GetSdkType Source # 
Instance details

Defined in Amazonka.APIGateway.GetSdkType

Associated Types

type AWSResponse GetSdkType #

ToHeaders GetSdkType Source # 
Instance details

Defined in Amazonka.APIGateway.GetSdkType

Methods

toHeaders :: GetSdkType -> [Header] #

ToPath GetSdkType Source # 
Instance details

Defined in Amazonka.APIGateway.GetSdkType

ToQuery GetSdkType Source # 
Instance details

Defined in Amazonka.APIGateway.GetSdkType

type Rep GetSdkType Source # 
Instance details

Defined in Amazonka.APIGateway.GetSdkType

type Rep GetSdkType = D1 ('MetaData "GetSdkType" "Amazonka.APIGateway.GetSdkType" "libZSservicesZSamazonka-apigatewayZSamazonka-apigateway" 'False) (C1 ('MetaCons "GetSdkType'" 'PrefixI 'True) (S1 ('MetaSel ('Just "id") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse GetSdkType Source # 
Instance details

Defined in Amazonka.APIGateway.GetSdkType

newGetSdkType Source #

Create a value of GetSdkType 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:id:GetSdkType', getSdkType_id - [Required] The identifier of the queried SdkType instance.

Request Lenses

getSdkType_id :: Lens' GetSdkType Text Source #

Required
The identifier of the queried SdkType instance.

Destructuring the Response

data SdkType Source #

A type of SDK that API Gateway can generate.

See: newSdkType smart constructor.

Constructors

SdkType' 

Fields

Instances

Instances details
Eq SdkType Source # 
Instance details

Defined in Amazonka.APIGateway.Types.SdkType

Methods

(==) :: SdkType -> SdkType -> Bool #

(/=) :: SdkType -> SdkType -> Bool #

Read SdkType Source # 
Instance details

Defined in Amazonka.APIGateway.Types.SdkType

Show SdkType Source # 
Instance details

Defined in Amazonka.APIGateway.Types.SdkType

Generic SdkType Source # 
Instance details

Defined in Amazonka.APIGateway.Types.SdkType

Associated Types

type Rep SdkType :: Type -> Type #

Methods

from :: SdkType -> Rep SdkType x #

to :: Rep SdkType x -> SdkType #

NFData SdkType Source # 
Instance details

Defined in Amazonka.APIGateway.Types.SdkType

Methods

rnf :: SdkType -> () #

Hashable SdkType Source # 
Instance details

Defined in Amazonka.APIGateway.Types.SdkType

Methods

hashWithSalt :: Int -> SdkType -> Int #

hash :: SdkType -> Int #

FromJSON SdkType Source # 
Instance details

Defined in Amazonka.APIGateway.Types.SdkType

type Rep SdkType Source # 
Instance details

Defined in Amazonka.APIGateway.Types.SdkType

type Rep SdkType = D1 ('MetaData "SdkType" "Amazonka.APIGateway.Types.SdkType" "libZSservicesZSamazonka-apigatewayZSamazonka-apigateway" 'False) (C1 ('MetaCons "SdkType'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "friendlyName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "configurationProperties") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [SdkConfigurationProperty]))) :*: (S1 ('MetaSel ('Just "id") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newSdkType :: SdkType Source #

Create a value of SdkType 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:friendlyName:SdkType', sdkType_friendlyName - The user-friendly name of an SdkType instance.

$sel:configurationProperties:SdkType', sdkType_configurationProperties - A list of configuration properties of an SdkType.

$sel:id:SdkType', sdkType_id - The identifier of an SdkType instance.

$sel:description:SdkType', sdkType_description - The description of an SdkType.

Response Lenses

sdkType_friendlyName :: Lens' SdkType (Maybe Text) Source #

The user-friendly name of an SdkType instance.

sdkType_configurationProperties :: Lens' SdkType (Maybe [SdkConfigurationProperty]) Source #

A list of configuration properties of an SdkType.

sdkType_id :: Lens' SdkType (Maybe Text) Source #

The identifier of an SdkType instance.

sdkType_description :: Lens' SdkType (Maybe Text) Source #

The description of an SdkType.