amazonka-apigateway-1.4.1: Amazon API Gateway SDK.

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

Network.AWS.APIGateway.UpdateModel

Contents

Description

Changes information about a model.

Synopsis

Creating a Request

updateModel Source #

Creates a value of UpdateModel with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

data UpdateModel Source #

Request to update an existing model in an existing RestApi resource.

See: updateModel smart constructor.

Instances

Eq UpdateModel Source # 
Data UpdateModel Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> UpdateModel -> c UpdateModel #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c UpdateModel #

toConstr :: UpdateModel -> Constr #

dataTypeOf :: UpdateModel -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c UpdateModel) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c UpdateModel) #

gmapT :: (forall b. Data b => b -> b) -> UpdateModel -> UpdateModel #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> UpdateModel -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> UpdateModel -> r #

gmapQ :: (forall d. Data d => d -> u) -> UpdateModel -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> UpdateModel -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> UpdateModel -> m UpdateModel #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> UpdateModel -> m UpdateModel #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> UpdateModel -> m UpdateModel #

Read UpdateModel Source # 
Show UpdateModel Source # 
Generic UpdateModel Source # 

Associated Types

type Rep UpdateModel :: * -> * #

Hashable UpdateModel Source # 
ToJSON UpdateModel Source # 
NFData UpdateModel Source # 

Methods

rnf :: UpdateModel -> () #

AWSRequest UpdateModel Source # 
ToQuery UpdateModel Source # 
ToPath UpdateModel Source # 
ToHeaders UpdateModel Source # 

Methods

toHeaders :: UpdateModel -> [Header] #

type Rep UpdateModel Source # 
type Rep UpdateModel = D1 (MetaData "UpdateModel" "Network.AWS.APIGateway.UpdateModel" "amazonka-apigateway-1.4.1-9LwN6bvDRGjBL5d3wQjvoh" False) (C1 (MetaCons "UpdateModel'" PrefixI True) ((:*:) (S1 (MetaSel (Just Symbol "_uPatchOperations") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [PatchOperation]))) ((:*:) (S1 (MetaSel (Just Symbol "_uRestAPIId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)) (S1 (MetaSel (Just Symbol "_uModelName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)))))
type Rs UpdateModel Source # 

Request Lenses

uPatchOperations :: Lens' UpdateModel [PatchOperation] Source #

A list of operations describing the updates to apply to the specified resource. The patches are applied in the order specified in the list.

uRestAPIId :: Lens' UpdateModel Text Source #

The RestApi identifier under which the model exists.

uModelName :: Lens' UpdateModel Text Source #

The name of the model to update.

Destructuring the Response

model :: Model Source #

Creates a value of Model with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

data Model Source #

Represents the structure of a request or response payload for a method.

See: model smart constructor.

Instances

Eq Model Source # 

Methods

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

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

Data Model Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Model -> c Model #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Model #

toConstr :: Model -> Constr #

dataTypeOf :: Model -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c Model) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Model) #

gmapT :: (forall b. Data b => b -> b) -> Model -> Model #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Model -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Model -> r #

gmapQ :: (forall d. Data d => d -> u) -> Model -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Model -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Model -> m Model #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Model -> m Model #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Model -> m Model #

Read Model Source # 
Show Model Source # 

Methods

showsPrec :: Int -> Model -> ShowS #

show :: Model -> String #

showList :: [Model] -> ShowS #

Generic Model Source # 

Associated Types

type Rep Model :: * -> * #

Methods

from :: Model -> Rep Model x #

to :: Rep Model x -> Model #

Hashable Model Source # 

Methods

hashWithSalt :: Int -> Model -> Int #

hash :: Model -> Int #

FromJSON Model Source # 
NFData Model Source # 

Methods

rnf :: Model -> () #

type Rep Model Source # 

Response Lenses

mSchema :: Lens' Model (Maybe Text) Source #

The schema for the model. For 'application\/json' models, this should be JSON-schema draft v4 model.

mName :: Lens' Model (Maybe Text) Source #

The name of the model.

mId :: Lens' Model (Maybe Text) Source #

The identifier for the model resource.

mDescription :: Lens' Model (Maybe Text) Source #

The description of the model.

mContentType :: Lens' Model (Maybe Text) Source #

The content-type for the model.