| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381 |
- // THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
- // Package lambda provides a client for AWS Lambda.
- package lambda
- import (
- "io"
- "time"
- "github.com/aws/aws-sdk-go/aws/awsutil"
- "github.com/aws/aws-sdk-go/aws/request"
- "github.com/aws/aws-sdk-go/private/protocol"
- "github.com/aws/aws-sdk-go/private/protocol/restjson"
- )
- const opAddPermission = "AddPermission"
- // AddPermissionRequest generates a "aws/request.Request" representing the
- // client's request for the AddPermission operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the AddPermission method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the AddPermissionRequest method.
- // req, resp := client.AddPermissionRequest(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *Lambda) AddPermissionRequest(input *AddPermissionInput) (req *request.Request, output *AddPermissionOutput) {
- op := &request.Operation{
- Name: opAddPermission,
- HTTPMethod: "POST",
- HTTPPath: "/2015-03-31/functions/{FunctionName}/policy",
- }
- if input == nil {
- input = &AddPermissionInput{}
- }
- req = c.newRequest(op, input, output)
- output = &AddPermissionOutput{}
- req.Data = output
- return
- }
- // Adds a permission to the resource policy associated with the specified AWS
- // Lambda function. You use resource policies to grant permissions to event
- // sources that use push model. In a push model, event sources (such as Amazon
- // S3 and custom applications) invoke your Lambda function. Each permission
- // you add to the resource policy allows an event source, permission to invoke
- // the Lambda function.
- //
- // For information about the push model, see AWS Lambda: How it Works (http://docs.aws.amazon.com/lambda/latest/dg/lambda-introduction.html).
- //
- // If you are using versioning, the permissions you add are specific to the
- // Lambda function version or alias you specify in the AddPermission request
- // via the Qualifier parameter. For more information about versioning, see AWS
- // Lambda Function Versioning and Aliases (http://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html).
- //
- // This operation requires permission for the lambda:AddPermission action.
- func (c *Lambda) AddPermission(input *AddPermissionInput) (*AddPermissionOutput, error) {
- req, out := c.AddPermissionRequest(input)
- err := req.Send()
- return out, err
- }
- const opCreateAlias = "CreateAlias"
- // CreateAliasRequest generates a "aws/request.Request" representing the
- // client's request for the CreateAlias operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the CreateAlias method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the CreateAliasRequest method.
- // req, resp := client.CreateAliasRequest(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *Lambda) CreateAliasRequest(input *CreateAliasInput) (req *request.Request, output *AliasConfiguration) {
- op := &request.Operation{
- Name: opCreateAlias,
- HTTPMethod: "POST",
- HTTPPath: "/2015-03-31/functions/{FunctionName}/aliases",
- }
- if input == nil {
- input = &CreateAliasInput{}
- }
- req = c.newRequest(op, input, output)
- output = &AliasConfiguration{}
- req.Data = output
- return
- }
- // Creates an alias that points to the specified Lambda function version. For
- // more information, see Introduction to AWS Lambda Aliases (http://docs.aws.amazon.com/lambda/latest/dg/aliases-intro.html).
- //
- // Alias names are unique for a given function. This requires permission for
- // the lambda:CreateAlias action.
- func (c *Lambda) CreateAlias(input *CreateAliasInput) (*AliasConfiguration, error) {
- req, out := c.CreateAliasRequest(input)
- err := req.Send()
- return out, err
- }
- const opCreateEventSourceMapping = "CreateEventSourceMapping"
- // CreateEventSourceMappingRequest generates a "aws/request.Request" representing the
- // client's request for the CreateEventSourceMapping operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the CreateEventSourceMapping method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the CreateEventSourceMappingRequest method.
- // req, resp := client.CreateEventSourceMappingRequest(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *Lambda) CreateEventSourceMappingRequest(input *CreateEventSourceMappingInput) (req *request.Request, output *EventSourceMappingConfiguration) {
- op := &request.Operation{
- Name: opCreateEventSourceMapping,
- HTTPMethod: "POST",
- HTTPPath: "/2015-03-31/event-source-mappings/",
- }
- if input == nil {
- input = &CreateEventSourceMappingInput{}
- }
- req = c.newRequest(op, input, output)
- output = &EventSourceMappingConfiguration{}
- req.Data = output
- return
- }
- // Identifies a stream as an event source for a Lambda function. It can be either
- // an Amazon Kinesis stream or an Amazon DynamoDB stream. AWS Lambda invokes
- // the specified function when records are posted to the stream.
- //
- // This association between a stream source and a Lambda function is called
- // the event source mapping.
- //
- // This event source mapping is relevant only in the AWS Lambda pull model,
- // where AWS Lambda invokes the function. For more information, go to AWS Lambda:
- // How it Works (http://docs.aws.amazon.com/lambda/latest/dg/lambda-introduction.html)
- // in the AWS Lambda Developer Guide.
- //
- // You provide mapping information (for example, which stream to read from
- // and which Lambda function to invoke) in the request body.
- //
- // Each event source, such as an Amazon Kinesis or a DynamoDB stream, can be
- // associated with multiple AWS Lambda function. A given Lambda function can
- // be associated with multiple AWS event sources.
- //
- // If you are using versioning, you can specify a specific function version
- // or an alias via the function name parameter. For more information about versioning,
- // see AWS Lambda Function Versioning and Aliases (http://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html).
- //
- // This operation requires permission for the lambda:CreateEventSourceMapping
- // action.
- func (c *Lambda) CreateEventSourceMapping(input *CreateEventSourceMappingInput) (*EventSourceMappingConfiguration, error) {
- req, out := c.CreateEventSourceMappingRequest(input)
- err := req.Send()
- return out, err
- }
- const opCreateFunction = "CreateFunction"
- // CreateFunctionRequest generates a "aws/request.Request" representing the
- // client's request for the CreateFunction operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the CreateFunction method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the CreateFunctionRequest method.
- // req, resp := client.CreateFunctionRequest(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *Lambda) CreateFunctionRequest(input *CreateFunctionInput) (req *request.Request, output *FunctionConfiguration) {
- op := &request.Operation{
- Name: opCreateFunction,
- HTTPMethod: "POST",
- HTTPPath: "/2015-03-31/functions",
- }
- if input == nil {
- input = &CreateFunctionInput{}
- }
- req = c.newRequest(op, input, output)
- output = &FunctionConfiguration{}
- req.Data = output
- return
- }
- // Creates a new Lambda function. The function metadata is created from the
- // request parameters, and the code for the function is provided by a .zip file
- // in the request body. If the function name already exists, the operation will
- // fail. Note that the function name is case-sensitive.
- //
- // If you are using versioning, you can also publish a version of the Lambda
- // function you are creating using the Publish parameter. For more information
- // about versioning, see AWS Lambda Function Versioning and Aliases (http://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html).
- //
- // This operation requires permission for the lambda:CreateFunction action.
- func (c *Lambda) CreateFunction(input *CreateFunctionInput) (*FunctionConfiguration, error) {
- req, out := c.CreateFunctionRequest(input)
- err := req.Send()
- return out, err
- }
- const opDeleteAlias = "DeleteAlias"
- // DeleteAliasRequest generates a "aws/request.Request" representing the
- // client's request for the DeleteAlias operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the DeleteAlias method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the DeleteAliasRequest method.
- // req, resp := client.DeleteAliasRequest(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *Lambda) DeleteAliasRequest(input *DeleteAliasInput) (req *request.Request, output *DeleteAliasOutput) {
- op := &request.Operation{
- Name: opDeleteAlias,
- HTTPMethod: "DELETE",
- HTTPPath: "/2015-03-31/functions/{FunctionName}/aliases/{Name}",
- }
- if input == nil {
- input = &DeleteAliasInput{}
- }
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- output = &DeleteAliasOutput{}
- req.Data = output
- return
- }
- // Deletes the specified Lambda function alias. For more information, see Introduction
- // to AWS Lambda Aliases (http://docs.aws.amazon.com/lambda/latest/dg/aliases-intro.html).
- //
- // This requires permission for the lambda:DeleteAlias action.
- func (c *Lambda) DeleteAlias(input *DeleteAliasInput) (*DeleteAliasOutput, error) {
- req, out := c.DeleteAliasRequest(input)
- err := req.Send()
- return out, err
- }
- const opDeleteEventSourceMapping = "DeleteEventSourceMapping"
- // DeleteEventSourceMappingRequest generates a "aws/request.Request" representing the
- // client's request for the DeleteEventSourceMapping operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the DeleteEventSourceMapping method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the DeleteEventSourceMappingRequest method.
- // req, resp := client.DeleteEventSourceMappingRequest(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *Lambda) DeleteEventSourceMappingRequest(input *DeleteEventSourceMappingInput) (req *request.Request, output *EventSourceMappingConfiguration) {
- op := &request.Operation{
- Name: opDeleteEventSourceMapping,
- HTTPMethod: "DELETE",
- HTTPPath: "/2015-03-31/event-source-mappings/{UUID}",
- }
- if input == nil {
- input = &DeleteEventSourceMappingInput{}
- }
- req = c.newRequest(op, input, output)
- output = &EventSourceMappingConfiguration{}
- req.Data = output
- return
- }
- // Removes an event source mapping. This means AWS Lambda will no longer invoke
- // the function for events in the associated source.
- //
- // This operation requires permission for the lambda:DeleteEventSourceMapping
- // action.
- func (c *Lambda) DeleteEventSourceMapping(input *DeleteEventSourceMappingInput) (*EventSourceMappingConfiguration, error) {
- req, out := c.DeleteEventSourceMappingRequest(input)
- err := req.Send()
- return out, err
- }
- const opDeleteFunction = "DeleteFunction"
- // DeleteFunctionRequest generates a "aws/request.Request" representing the
- // client's request for the DeleteFunction operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the DeleteFunction method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the DeleteFunctionRequest method.
- // req, resp := client.DeleteFunctionRequest(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *Lambda) DeleteFunctionRequest(input *DeleteFunctionInput) (req *request.Request, output *DeleteFunctionOutput) {
- op := &request.Operation{
- Name: opDeleteFunction,
- HTTPMethod: "DELETE",
- HTTPPath: "/2015-03-31/functions/{FunctionName}",
- }
- if input == nil {
- input = &DeleteFunctionInput{}
- }
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- output = &DeleteFunctionOutput{}
- req.Data = output
- return
- }
- // Deletes the specified Lambda function code and configuration.
- //
- // If you are using the versioning feature and you don't specify a function
- // version in your DeleteFunction request, AWS Lambda will delete the function,
- // including all its versions, and any aliases pointing to the function versions.
- // To delete a specific function version, you must provide the function version
- // via the Qualifier parameter. For information about function versioning, see
- // AWS Lambda Function Versioning and Aliases (http://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html).
- //
- // When you delete a function the associated resource policy is also deleted.
- // You will need to delete the event source mappings explicitly.
- //
- // This operation requires permission for the lambda:DeleteFunction action.
- func (c *Lambda) DeleteFunction(input *DeleteFunctionInput) (*DeleteFunctionOutput, error) {
- req, out := c.DeleteFunctionRequest(input)
- err := req.Send()
- return out, err
- }
- const opGetAlias = "GetAlias"
- // GetAliasRequest generates a "aws/request.Request" representing the
- // client's request for the GetAlias operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the GetAlias method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the GetAliasRequest method.
- // req, resp := client.GetAliasRequest(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *Lambda) GetAliasRequest(input *GetAliasInput) (req *request.Request, output *AliasConfiguration) {
- op := &request.Operation{
- Name: opGetAlias,
- HTTPMethod: "GET",
- HTTPPath: "/2015-03-31/functions/{FunctionName}/aliases/{Name}",
- }
- if input == nil {
- input = &GetAliasInput{}
- }
- req = c.newRequest(op, input, output)
- output = &AliasConfiguration{}
- req.Data = output
- return
- }
- // Returns the specified alias information such as the alias ARN, description,
- // and function version it is pointing to. For more information, see Introduction
- // to AWS Lambda Aliases (http://docs.aws.amazon.com/lambda/latest/dg/aliases-intro.html).
- //
- // This requires permission for the lambda:GetAlias action.
- func (c *Lambda) GetAlias(input *GetAliasInput) (*AliasConfiguration, error) {
- req, out := c.GetAliasRequest(input)
- err := req.Send()
- return out, err
- }
- const opGetEventSourceMapping = "GetEventSourceMapping"
- // GetEventSourceMappingRequest generates a "aws/request.Request" representing the
- // client's request for the GetEventSourceMapping operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the GetEventSourceMapping method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the GetEventSourceMappingRequest method.
- // req, resp := client.GetEventSourceMappingRequest(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *Lambda) GetEventSourceMappingRequest(input *GetEventSourceMappingInput) (req *request.Request, output *EventSourceMappingConfiguration) {
- op := &request.Operation{
- Name: opGetEventSourceMapping,
- HTTPMethod: "GET",
- HTTPPath: "/2015-03-31/event-source-mappings/{UUID}",
- }
- if input == nil {
- input = &GetEventSourceMappingInput{}
- }
- req = c.newRequest(op, input, output)
- output = &EventSourceMappingConfiguration{}
- req.Data = output
- return
- }
- // Returns configuration information for the specified event source mapping
- // (see CreateEventSourceMapping).
- //
- // This operation requires permission for the lambda:GetEventSourceMapping
- // action.
- func (c *Lambda) GetEventSourceMapping(input *GetEventSourceMappingInput) (*EventSourceMappingConfiguration, error) {
- req, out := c.GetEventSourceMappingRequest(input)
- err := req.Send()
- return out, err
- }
- const opGetFunction = "GetFunction"
- // GetFunctionRequest generates a "aws/request.Request" representing the
- // client's request for the GetFunction operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the GetFunction method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the GetFunctionRequest method.
- // req, resp := client.GetFunctionRequest(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *Lambda) GetFunctionRequest(input *GetFunctionInput) (req *request.Request, output *GetFunctionOutput) {
- op := &request.Operation{
- Name: opGetFunction,
- HTTPMethod: "GET",
- HTTPPath: "/2015-03-31/functions/{FunctionName}",
- }
- if input == nil {
- input = &GetFunctionInput{}
- }
- req = c.newRequest(op, input, output)
- output = &GetFunctionOutput{}
- req.Data = output
- return
- }
- // Returns the configuration information of the Lambda function and a presigned
- // URL link to the .zip file you uploaded with CreateFunction so you can download
- // the .zip file. Note that the URL is valid for up to 10 minutes. The configuration
- // information is the same information you provided as parameters when uploading
- // the function.
- //
- // Using the optional Qualifier parameter, you can specify a specific function
- // version for which you want this information. If you don't specify this parameter,
- // the API uses unqualified function ARN which return information about the
- // $LATEST version of the Lambda function. For more information, see AWS Lambda
- // Function Versioning and Aliases (http://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html).
- //
- // This operation requires permission for the lambda:GetFunction action.
- func (c *Lambda) GetFunction(input *GetFunctionInput) (*GetFunctionOutput, error) {
- req, out := c.GetFunctionRequest(input)
- err := req.Send()
- return out, err
- }
- const opGetFunctionConfiguration = "GetFunctionConfiguration"
- // GetFunctionConfigurationRequest generates a "aws/request.Request" representing the
- // client's request for the GetFunctionConfiguration operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the GetFunctionConfiguration method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the GetFunctionConfigurationRequest method.
- // req, resp := client.GetFunctionConfigurationRequest(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *Lambda) GetFunctionConfigurationRequest(input *GetFunctionConfigurationInput) (req *request.Request, output *FunctionConfiguration) {
- op := &request.Operation{
- Name: opGetFunctionConfiguration,
- HTTPMethod: "GET",
- HTTPPath: "/2015-03-31/functions/{FunctionName}/configuration",
- }
- if input == nil {
- input = &GetFunctionConfigurationInput{}
- }
- req = c.newRequest(op, input, output)
- output = &FunctionConfiguration{}
- req.Data = output
- return
- }
- // Returns the configuration information of the Lambda function. This the same
- // information you provided as parameters when uploading the function by using
- // CreateFunction.
- //
- // If you are using the versioning feature, you can retrieve this information
- // for a specific function version by using the optional Qualifier parameter
- // and specifying the function version or alias that points to it. If you don't
- // provide it, the API returns information about the $LATEST version of the
- // function. For more information about versioning, see AWS Lambda Function
- // Versioning and Aliases (http://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html).
- //
- // This operation requires permission for the lambda:GetFunctionConfiguration
- // operation.
- func (c *Lambda) GetFunctionConfiguration(input *GetFunctionConfigurationInput) (*FunctionConfiguration, error) {
- req, out := c.GetFunctionConfigurationRequest(input)
- err := req.Send()
- return out, err
- }
- const opGetPolicy = "GetPolicy"
- // GetPolicyRequest generates a "aws/request.Request" representing the
- // client's request for the GetPolicy operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the GetPolicy method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the GetPolicyRequest method.
- // req, resp := client.GetPolicyRequest(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *Lambda) GetPolicyRequest(input *GetPolicyInput) (req *request.Request, output *GetPolicyOutput) {
- op := &request.Operation{
- Name: opGetPolicy,
- HTTPMethod: "GET",
- HTTPPath: "/2015-03-31/functions/{FunctionName}/policy",
- }
- if input == nil {
- input = &GetPolicyInput{}
- }
- req = c.newRequest(op, input, output)
- output = &GetPolicyOutput{}
- req.Data = output
- return
- }
- // Returns the resource policy associated with the specified Lambda function.
- //
- // If you are using the versioning feature, you can get the resource policy
- // associated with the specific Lambda function version or alias by specifying
- // the version or alias name using the Qualifier parameter. For more information
- // about versioning, see AWS Lambda Function Versioning and Aliases (http://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html).
- //
- // For information about adding permissions, see AddPermission.
- //
- // You need permission for the lambda:GetPolicy action.
- func (c *Lambda) GetPolicy(input *GetPolicyInput) (*GetPolicyOutput, error) {
- req, out := c.GetPolicyRequest(input)
- err := req.Send()
- return out, err
- }
- const opInvoke = "Invoke"
- // InvokeRequest generates a "aws/request.Request" representing the
- // client's request for the Invoke operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the Invoke method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the InvokeRequest method.
- // req, resp := client.InvokeRequest(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *Lambda) InvokeRequest(input *InvokeInput) (req *request.Request, output *InvokeOutput) {
- op := &request.Operation{
- Name: opInvoke,
- HTTPMethod: "POST",
- HTTPPath: "/2015-03-31/functions/{FunctionName}/invocations",
- }
- if input == nil {
- input = &InvokeInput{}
- }
- req = c.newRequest(op, input, output)
- output = &InvokeOutput{}
- req.Data = output
- return
- }
- // Invokes a specific Lambda function.
- //
- // If you are using the versioning feature, you can invoke the specific function
- // version by providing function version or alias name that is pointing to the
- // function version using the Qualifier parameter in the request. If you don't
- // provide the Qualifier parameter, the $LATEST version of the Lambda function
- // is invoked. Invocations occur at least once in response to an event and functions
- // must be idempotent to handle this. For information about the versioning feature,
- // see AWS Lambda Function Versioning and Aliases (http://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html).
- //
- // This operation requires permission for the lambda:InvokeFunction action.
- func (c *Lambda) Invoke(input *InvokeInput) (*InvokeOutput, error) {
- req, out := c.InvokeRequest(input)
- err := req.Send()
- return out, err
- }
- const opInvokeAsync = "InvokeAsync"
- // InvokeAsyncRequest generates a "aws/request.Request" representing the
- // client's request for the InvokeAsync operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the InvokeAsync method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the InvokeAsyncRequest method.
- // req, resp := client.InvokeAsyncRequest(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *Lambda) InvokeAsyncRequest(input *InvokeAsyncInput) (req *request.Request, output *InvokeAsyncOutput) {
- if c.Client.Config.Logger != nil {
- c.Client.Config.Logger.Log("This operation, InvokeAsync, has been deprecated")
- }
- op := &request.Operation{
- Name: opInvokeAsync,
- HTTPMethod: "POST",
- HTTPPath: "/2014-11-13/functions/{FunctionName}/invoke-async/",
- }
- if input == nil {
- input = &InvokeAsyncInput{}
- }
- req = c.newRequest(op, input, output)
- output = &InvokeAsyncOutput{}
- req.Data = output
- return
- }
- // This API is deprecated. We recommend you use Invoke API (see Invoke).
- //
- // Submits an invocation request to AWS Lambda. Upon receiving the request,
- // Lambda executes the specified function asynchronously. To see the logs generated
- // by the Lambda function execution, see the CloudWatch Logs console.
- //
- // This operation requires permission for the lambda:InvokeFunction action.
- func (c *Lambda) InvokeAsync(input *InvokeAsyncInput) (*InvokeAsyncOutput, error) {
- req, out := c.InvokeAsyncRequest(input)
- err := req.Send()
- return out, err
- }
- const opListAliases = "ListAliases"
- // ListAliasesRequest generates a "aws/request.Request" representing the
- // client's request for the ListAliases operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the ListAliases method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the ListAliasesRequest method.
- // req, resp := client.ListAliasesRequest(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *Lambda) ListAliasesRequest(input *ListAliasesInput) (req *request.Request, output *ListAliasesOutput) {
- op := &request.Operation{
- Name: opListAliases,
- HTTPMethod: "GET",
- HTTPPath: "/2015-03-31/functions/{FunctionName}/aliases",
- }
- if input == nil {
- input = &ListAliasesInput{}
- }
- req = c.newRequest(op, input, output)
- output = &ListAliasesOutput{}
- req.Data = output
- return
- }
- // Returns list of aliases created for a Lambda function. For each alias, the
- // response includes information such as the alias ARN, description, alias name,
- // and the function version to which it points. For more information, see Introduction
- // to AWS Lambda Aliases (http://docs.aws.amazon.com/lambda/latest/dg/aliases-intro.html).
- //
- // This requires permission for the lambda:ListAliases action.
- func (c *Lambda) ListAliases(input *ListAliasesInput) (*ListAliasesOutput, error) {
- req, out := c.ListAliasesRequest(input)
- err := req.Send()
- return out, err
- }
- const opListEventSourceMappings = "ListEventSourceMappings"
- // ListEventSourceMappingsRequest generates a "aws/request.Request" representing the
- // client's request for the ListEventSourceMappings operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the ListEventSourceMappings method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the ListEventSourceMappingsRequest method.
- // req, resp := client.ListEventSourceMappingsRequest(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *Lambda) ListEventSourceMappingsRequest(input *ListEventSourceMappingsInput) (req *request.Request, output *ListEventSourceMappingsOutput) {
- op := &request.Operation{
- Name: opListEventSourceMappings,
- HTTPMethod: "GET",
- HTTPPath: "/2015-03-31/event-source-mappings/",
- Paginator: &request.Paginator{
- InputTokens: []string{"Marker"},
- OutputTokens: []string{"NextMarker"},
- LimitToken: "MaxItems",
- TruncationToken: "",
- },
- }
- if input == nil {
- input = &ListEventSourceMappingsInput{}
- }
- req = c.newRequest(op, input, output)
- output = &ListEventSourceMappingsOutput{}
- req.Data = output
- return
- }
- // Returns a list of event source mappings you created using the CreateEventSourceMapping
- // (see CreateEventSourceMapping).
- //
- // For each mapping, the API returns configuration information. You can optionally
- // specify filters to retrieve specific event source mappings.
- //
- // If you are using the versioning feature, you can get list of event source
- // mappings for a specific Lambda function version or an alias as described
- // in the FunctionName parameter. For information about the versioning feature,
- // see AWS Lambda Function Versioning and Aliases (http://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html).
- //
- // This operation requires permission for the lambda:ListEventSourceMappings
- // action.
- func (c *Lambda) ListEventSourceMappings(input *ListEventSourceMappingsInput) (*ListEventSourceMappingsOutput, error) {
- req, out := c.ListEventSourceMappingsRequest(input)
- err := req.Send()
- return out, err
- }
- // ListEventSourceMappingsPages iterates over the pages of a ListEventSourceMappings operation,
- // calling the "fn" function with the response data for each page. To stop
- // iterating, return false from the fn function.
- //
- // See ListEventSourceMappings method for more information on how to use this operation.
- //
- // Note: This operation can generate multiple requests to a service.
- //
- // // Example iterating over at most 3 pages of a ListEventSourceMappings operation.
- // pageNum := 0
- // err := client.ListEventSourceMappingsPages(params,
- // func(page *ListEventSourceMappingsOutput, lastPage bool) bool {
- // pageNum++
- // fmt.Println(page)
- // return pageNum <= 3
- // })
- //
- func (c *Lambda) ListEventSourceMappingsPages(input *ListEventSourceMappingsInput, fn func(p *ListEventSourceMappingsOutput, lastPage bool) (shouldContinue bool)) error {
- page, _ := c.ListEventSourceMappingsRequest(input)
- page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator"))
- return page.EachPage(func(p interface{}, lastPage bool) bool {
- return fn(p.(*ListEventSourceMappingsOutput), lastPage)
- })
- }
- const opListFunctions = "ListFunctions"
- // ListFunctionsRequest generates a "aws/request.Request" representing the
- // client's request for the ListFunctions operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the ListFunctions method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the ListFunctionsRequest method.
- // req, resp := client.ListFunctionsRequest(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *Lambda) ListFunctionsRequest(input *ListFunctionsInput) (req *request.Request, output *ListFunctionsOutput) {
- op := &request.Operation{
- Name: opListFunctions,
- HTTPMethod: "GET",
- HTTPPath: "/2015-03-31/functions/",
- Paginator: &request.Paginator{
- InputTokens: []string{"Marker"},
- OutputTokens: []string{"NextMarker"},
- LimitToken: "MaxItems",
- TruncationToken: "",
- },
- }
- if input == nil {
- input = &ListFunctionsInput{}
- }
- req = c.newRequest(op, input, output)
- output = &ListFunctionsOutput{}
- req.Data = output
- return
- }
- // Returns a list of your Lambda functions. For each function, the response
- // includes the function configuration information. You must use GetFunction
- // to retrieve the code for your function.
- //
- // This operation requires permission for the lambda:ListFunctions action.
- //
- // If you are using versioning feature, the response returns list of $LATEST
- // versions of your functions. For information about the versioning feature,
- // see AWS Lambda Function Versioning and Aliases (http://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html).
- func (c *Lambda) ListFunctions(input *ListFunctionsInput) (*ListFunctionsOutput, error) {
- req, out := c.ListFunctionsRequest(input)
- err := req.Send()
- return out, err
- }
- // ListFunctionsPages iterates over the pages of a ListFunctions operation,
- // calling the "fn" function with the response data for each page. To stop
- // iterating, return false from the fn function.
- //
- // See ListFunctions method for more information on how to use this operation.
- //
- // Note: This operation can generate multiple requests to a service.
- //
- // // Example iterating over at most 3 pages of a ListFunctions operation.
- // pageNum := 0
- // err := client.ListFunctionsPages(params,
- // func(page *ListFunctionsOutput, lastPage bool) bool {
- // pageNum++
- // fmt.Println(page)
- // return pageNum <= 3
- // })
- //
- func (c *Lambda) ListFunctionsPages(input *ListFunctionsInput, fn func(p *ListFunctionsOutput, lastPage bool) (shouldContinue bool)) error {
- page, _ := c.ListFunctionsRequest(input)
- page.Handlers.Build.PushBack(request.MakeAddToUserAgentFreeFormHandler("Paginator"))
- return page.EachPage(func(p interface{}, lastPage bool) bool {
- return fn(p.(*ListFunctionsOutput), lastPage)
- })
- }
- const opListVersionsByFunction = "ListVersionsByFunction"
- // ListVersionsByFunctionRequest generates a "aws/request.Request" representing the
- // client's request for the ListVersionsByFunction operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the ListVersionsByFunction method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the ListVersionsByFunctionRequest method.
- // req, resp := client.ListVersionsByFunctionRequest(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *Lambda) ListVersionsByFunctionRequest(input *ListVersionsByFunctionInput) (req *request.Request, output *ListVersionsByFunctionOutput) {
- op := &request.Operation{
- Name: opListVersionsByFunction,
- HTTPMethod: "GET",
- HTTPPath: "/2015-03-31/functions/{FunctionName}/versions",
- }
- if input == nil {
- input = &ListVersionsByFunctionInput{}
- }
- req = c.newRequest(op, input, output)
- output = &ListVersionsByFunctionOutput{}
- req.Data = output
- return
- }
- // List all versions of a function. For information about the versioning feature,
- // see AWS Lambda Function Versioning and Aliases (http://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html).
- func (c *Lambda) ListVersionsByFunction(input *ListVersionsByFunctionInput) (*ListVersionsByFunctionOutput, error) {
- req, out := c.ListVersionsByFunctionRequest(input)
- err := req.Send()
- return out, err
- }
- const opPublishVersion = "PublishVersion"
- // PublishVersionRequest generates a "aws/request.Request" representing the
- // client's request for the PublishVersion operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the PublishVersion method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the PublishVersionRequest method.
- // req, resp := client.PublishVersionRequest(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *Lambda) PublishVersionRequest(input *PublishVersionInput) (req *request.Request, output *FunctionConfiguration) {
- op := &request.Operation{
- Name: opPublishVersion,
- HTTPMethod: "POST",
- HTTPPath: "/2015-03-31/functions/{FunctionName}/versions",
- }
- if input == nil {
- input = &PublishVersionInput{}
- }
- req = c.newRequest(op, input, output)
- output = &FunctionConfiguration{}
- req.Data = output
- return
- }
- // Publishes a version of your function from the current snapshot of $LATEST.
- // That is, AWS Lambda takes a snapshot of the function code and configuration
- // information from $LATEST and publishes a new version. The code and configuration
- // cannot be modified after publication. For information about the versioning
- // feature, see AWS Lambda Function Versioning and Aliases (http://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html).
- func (c *Lambda) PublishVersion(input *PublishVersionInput) (*FunctionConfiguration, error) {
- req, out := c.PublishVersionRequest(input)
- err := req.Send()
- return out, err
- }
- const opRemovePermission = "RemovePermission"
- // RemovePermissionRequest generates a "aws/request.Request" representing the
- // client's request for the RemovePermission operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the RemovePermission method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the RemovePermissionRequest method.
- // req, resp := client.RemovePermissionRequest(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *Lambda) RemovePermissionRequest(input *RemovePermissionInput) (req *request.Request, output *RemovePermissionOutput) {
- op := &request.Operation{
- Name: opRemovePermission,
- HTTPMethod: "DELETE",
- HTTPPath: "/2015-03-31/functions/{FunctionName}/policy/{StatementId}",
- }
- if input == nil {
- input = &RemovePermissionInput{}
- }
- req = c.newRequest(op, input, output)
- req.Handlers.Unmarshal.Remove(restjson.UnmarshalHandler)
- req.Handlers.Unmarshal.PushBackNamed(protocol.UnmarshalDiscardBodyHandler)
- output = &RemovePermissionOutput{}
- req.Data = output
- return
- }
- // You can remove individual permissions from an resource policy associated
- // with a Lambda function by providing a statement ID that you provided when
- // you added the permission.
- //
- // If you are using versioning, the permissions you remove are specific to
- // the Lambda function version or alias you specify in the AddPermission request
- // via the Qualifier parameter. For more information about versioning, see AWS
- // Lambda Function Versioning and Aliases (http://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html).
- //
- // Note that removal of a permission will cause an active event source to lose
- // permission to the function.
- //
- // You need permission for the lambda:RemovePermission action.
- func (c *Lambda) RemovePermission(input *RemovePermissionInput) (*RemovePermissionOutput, error) {
- req, out := c.RemovePermissionRequest(input)
- err := req.Send()
- return out, err
- }
- const opUpdateAlias = "UpdateAlias"
- // UpdateAliasRequest generates a "aws/request.Request" representing the
- // client's request for the UpdateAlias operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the UpdateAlias method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the UpdateAliasRequest method.
- // req, resp := client.UpdateAliasRequest(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *Lambda) UpdateAliasRequest(input *UpdateAliasInput) (req *request.Request, output *AliasConfiguration) {
- op := &request.Operation{
- Name: opUpdateAlias,
- HTTPMethod: "PUT",
- HTTPPath: "/2015-03-31/functions/{FunctionName}/aliases/{Name}",
- }
- if input == nil {
- input = &UpdateAliasInput{}
- }
- req = c.newRequest(op, input, output)
- output = &AliasConfiguration{}
- req.Data = output
- return
- }
- // Using this API you can update the function version to which the alias points
- // and the alias description. For more information, see Introduction to AWS
- // Lambda Aliases (http://docs.aws.amazon.com/lambda/latest/dg/aliases-intro.html).
- //
- // This requires permission for the lambda:UpdateAlias action.
- func (c *Lambda) UpdateAlias(input *UpdateAliasInput) (*AliasConfiguration, error) {
- req, out := c.UpdateAliasRequest(input)
- err := req.Send()
- return out, err
- }
- const opUpdateEventSourceMapping = "UpdateEventSourceMapping"
- // UpdateEventSourceMappingRequest generates a "aws/request.Request" representing the
- // client's request for the UpdateEventSourceMapping operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the UpdateEventSourceMapping method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the UpdateEventSourceMappingRequest method.
- // req, resp := client.UpdateEventSourceMappingRequest(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *Lambda) UpdateEventSourceMappingRequest(input *UpdateEventSourceMappingInput) (req *request.Request, output *EventSourceMappingConfiguration) {
- op := &request.Operation{
- Name: opUpdateEventSourceMapping,
- HTTPMethod: "PUT",
- HTTPPath: "/2015-03-31/event-source-mappings/{UUID}",
- }
- if input == nil {
- input = &UpdateEventSourceMappingInput{}
- }
- req = c.newRequest(op, input, output)
- output = &EventSourceMappingConfiguration{}
- req.Data = output
- return
- }
- // You can update an event source mapping. This is useful if you want to change
- // the parameters of the existing mapping without losing your position in the
- // stream. You can change which function will receive the stream records, but
- // to change the stream itself, you must create a new mapping.
- //
- // If you are using the versioning feature, you can update the event source
- // mapping to map to a specific Lambda function version or alias as described
- // in the FunctionName parameter. For information about the versioning feature,
- // see AWS Lambda Function Versioning and Aliases (http://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html).
- //
- // If you disable the event source mapping, AWS Lambda stops polling. If you
- // enable again, it will resume polling from the time it had stopped polling,
- // so you don't lose processing of any records. However, if you delete event
- // source mapping and create it again, it will reset.
- //
- // This operation requires permission for the lambda:UpdateEventSourceMapping
- // action.
- func (c *Lambda) UpdateEventSourceMapping(input *UpdateEventSourceMappingInput) (*EventSourceMappingConfiguration, error) {
- req, out := c.UpdateEventSourceMappingRequest(input)
- err := req.Send()
- return out, err
- }
- const opUpdateFunctionCode = "UpdateFunctionCode"
- // UpdateFunctionCodeRequest generates a "aws/request.Request" representing the
- // client's request for the UpdateFunctionCode operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the UpdateFunctionCode method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the UpdateFunctionCodeRequest method.
- // req, resp := client.UpdateFunctionCodeRequest(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *Lambda) UpdateFunctionCodeRequest(input *UpdateFunctionCodeInput) (req *request.Request, output *FunctionConfiguration) {
- op := &request.Operation{
- Name: opUpdateFunctionCode,
- HTTPMethod: "PUT",
- HTTPPath: "/2015-03-31/functions/{FunctionName}/code",
- }
- if input == nil {
- input = &UpdateFunctionCodeInput{}
- }
- req = c.newRequest(op, input, output)
- output = &FunctionConfiguration{}
- req.Data = output
- return
- }
- // Updates the code for the specified Lambda function. This operation must only
- // be used on an existing Lambda function and cannot be used to update the function
- // configuration.
- //
- // If you are using the versioning feature, note this API will always update
- // the $LATEST version of your Lambda function. For information about the versioning
- // feature, see AWS Lambda Function Versioning and Aliases (http://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html).
- //
- // This operation requires permission for the lambda:UpdateFunctionCode action.
- func (c *Lambda) UpdateFunctionCode(input *UpdateFunctionCodeInput) (*FunctionConfiguration, error) {
- req, out := c.UpdateFunctionCodeRequest(input)
- err := req.Send()
- return out, err
- }
- const opUpdateFunctionConfiguration = "UpdateFunctionConfiguration"
- // UpdateFunctionConfigurationRequest generates a "aws/request.Request" representing the
- // client's request for the UpdateFunctionConfiguration operation. The "output" return
- // value can be used to capture response data after the request's "Send" method
- // is called.
- //
- // Creating a request object using this method should be used when you want to inject
- // custom logic into the request's lifecycle using a custom handler, or if you want to
- // access properties on the request object before or after sending the request. If
- // you just want the service response, call the UpdateFunctionConfiguration method directly
- // instead.
- //
- // Note: You must call the "Send" method on the returned request object in order
- // to execute the request.
- //
- // // Example sending a request using the UpdateFunctionConfigurationRequest method.
- // req, resp := client.UpdateFunctionConfigurationRequest(params)
- //
- // err := req.Send()
- // if err == nil { // resp is now filled
- // fmt.Println(resp)
- // }
- //
- func (c *Lambda) UpdateFunctionConfigurationRequest(input *UpdateFunctionConfigurationInput) (req *request.Request, output *FunctionConfiguration) {
- op := &request.Operation{
- Name: opUpdateFunctionConfiguration,
- HTTPMethod: "PUT",
- HTTPPath: "/2015-03-31/functions/{FunctionName}/configuration",
- }
- if input == nil {
- input = &UpdateFunctionConfigurationInput{}
- }
- req = c.newRequest(op, input, output)
- output = &FunctionConfiguration{}
- req.Data = output
- return
- }
- // Updates the configuration parameters for the specified Lambda function by
- // using the values provided in the request. You provide only the parameters
- // you want to change. This operation must only be used on an existing Lambda
- // function and cannot be used to update the function's code.
- //
- // If you are using the versioning feature, note this API will always update
- // the $LATEST version of your Lambda function. For information about the versioning
- // feature, see AWS Lambda Function Versioning and Aliases (http://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html).
- //
- // This operation requires permission for the lambda:UpdateFunctionConfiguration
- // action.
- func (c *Lambda) UpdateFunctionConfiguration(input *UpdateFunctionConfigurationInput) (*FunctionConfiguration, error) {
- req, out := c.UpdateFunctionConfigurationRequest(input)
- err := req.Send()
- return out, err
- }
- type AddPermissionInput struct {
- _ struct{} `type:"structure"`
- // The AWS Lambda action you want to allow in this statement. Each Lambda action
- // is a string starting with lambda: followed by the API name . For example,
- // lambda:CreateFunction. You can use wildcard (lambda:*) to grant permission
- // for all AWS Lambda actions.
- Action *string `type:"string" required:"true"`
- // A unique token that must be supplied by the principal invoking the function.
- // This is currently only used for Alexa Smart Home functions.
- EventSourceToken *string `type:"string"`
- // Name of the Lambda function whose resource policy you are updating by adding
- // a new permission.
- //
- // You can specify a function name (for example, Thumbnail) or you can specify
- // Amazon Resource Name (ARN) of the function (for example, arn:aws:lambda:us-west-2:account-id:function:ThumbNail).
- // AWS Lambda also allows you to specify partial ARN (for example, account-id:Thumbnail).
- // Note that the length constraint applies only to the ARN. If you specify only
- // the function name, it is limited to 64 character in length.
- FunctionName *string `location:"uri" locationName:"FunctionName" min:"1" type:"string" required:"true"`
- // The principal who is getting this permission. It can be Amazon S3 service
- // Principal (s3.amazonaws.com) if you want Amazon S3 to invoke the function,
- // an AWS account ID if you are granting cross-account permission, or any valid
- // AWS service principal such as sns.amazonaws.com. For example, you might want
- // to allow a custom application in another AWS account to push events to AWS
- // Lambda by invoking your function.
- Principal *string `type:"string" required:"true"`
- // You can use this optional query parameter to describe a qualified ARN using
- // a function version or an alias name. The permission will then apply to the
- // specific qualified ARN. For example, if you specify function version 2 as
- // the qualifier, then permission applies only when request is made using qualified
- // function ARN:
- //
- // arn:aws:lambda:aws-region:acct-id:function:function-name:2
- //
- // If you specify an alias name, for example PROD, then the permission is valid
- // only for requests made using the alias ARN:
- //
- // arn:aws:lambda:aws-region:acct-id:function:function-name:PROD
- //
- // If the qualifier is not specified, the permission is valid only when requests
- // is made using unqualified function ARN.
- //
- // arn:aws:lambda:aws-region:acct-id:function:function-name
- Qualifier *string `location:"querystring" locationName:"Qualifier" min:"1" type:"string"`
- // This parameter is used for S3 and SES only. The AWS account ID (without a
- // hyphen) of the source owner. For example, if the SourceArn identifies a bucket,
- // then this is the bucket owner's account ID. You can use this additional condition
- // to ensure the bucket you specify is owned by a specific account (it is possible
- // the bucket owner deleted the bucket and some other AWS account created the
- // bucket). You can also use this condition to specify all sources (that is,
- // you don't specify the SourceArn) owned by a specific account.
- SourceAccount *string `type:"string"`
- // This is optional; however, when granting Amazon S3 permission to invoke your
- // function, you should specify this field with the Amazon Resource Name (ARN)
- // as its value. This ensures that only events generated from the specified
- // source can invoke the function.
- //
- // If you add a permission for the Amazon S3 principal without providing the
- // source ARN, any AWS account that creates a mapping to your function ARN can
- // send events to invoke your Lambda function from Amazon S3.
- SourceArn *string `type:"string"`
- // A unique statement identifier.
- StatementId *string `min:"1" type:"string" required:"true"`
- }
- // String returns the string representation
- func (s AddPermissionInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s AddPermissionInput) GoString() string {
- return s.String()
- }
- // Validate inspects the fields of the type to determine if they are valid.
- func (s *AddPermissionInput) Validate() error {
- invalidParams := request.ErrInvalidParams{Context: "AddPermissionInput"}
- if s.Action == nil {
- invalidParams.Add(request.NewErrParamRequired("Action"))
- }
- if s.FunctionName == nil {
- invalidParams.Add(request.NewErrParamRequired("FunctionName"))
- }
- if s.FunctionName != nil && len(*s.FunctionName) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("FunctionName", 1))
- }
- if s.Principal == nil {
- invalidParams.Add(request.NewErrParamRequired("Principal"))
- }
- if s.Qualifier != nil && len(*s.Qualifier) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("Qualifier", 1))
- }
- if s.StatementId == nil {
- invalidParams.Add(request.NewErrParamRequired("StatementId"))
- }
- if s.StatementId != nil && len(*s.StatementId) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("StatementId", 1))
- }
- if invalidParams.Len() > 0 {
- return invalidParams
- }
- return nil
- }
- type AddPermissionOutput struct {
- _ struct{} `type:"structure"`
- // The permission statement you specified in the request. The response returns
- // the same as a string using a backslash ("\") as an escape character in the
- // JSON.
- Statement *string `type:"string"`
- }
- // String returns the string representation
- func (s AddPermissionOutput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s AddPermissionOutput) GoString() string {
- return s.String()
- }
- // Provides configuration information about a Lambda function version alias.
- type AliasConfiguration struct {
- _ struct{} `type:"structure"`
- // Lambda function ARN that is qualified using the alias name as the suffix.
- // For example, if you create an alias called BETA that points to a helloworld
- // function version, the ARN is arn:aws:lambda:aws-regions:acct-id:function:helloworld:BETA.
- AliasArn *string `type:"string"`
- // Alias description.
- Description *string `type:"string"`
- // Function version to which the alias points.
- FunctionVersion *string `min:"1" type:"string"`
- // Alias name.
- Name *string `min:"1" type:"string"`
- }
- // String returns the string representation
- func (s AliasConfiguration) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s AliasConfiguration) GoString() string {
- return s.String()
- }
- type CreateAliasInput struct {
- _ struct{} `type:"structure"`
- // Description of the alias.
- Description *string `type:"string"`
- // Name of the Lambda function for which you want to create an alias.
- FunctionName *string `location:"uri" locationName:"FunctionName" min:"1" type:"string" required:"true"`
- // Lambda function version for which you are creating the alias.
- FunctionVersion *string `min:"1" type:"string" required:"true"`
- // Name for the alias you are creating.
- Name *string `min:"1" type:"string" required:"true"`
- }
- // String returns the string representation
- func (s CreateAliasInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s CreateAliasInput) GoString() string {
- return s.String()
- }
- // Validate inspects the fields of the type to determine if they are valid.
- func (s *CreateAliasInput) Validate() error {
- invalidParams := request.ErrInvalidParams{Context: "CreateAliasInput"}
- if s.FunctionName == nil {
- invalidParams.Add(request.NewErrParamRequired("FunctionName"))
- }
- if s.FunctionName != nil && len(*s.FunctionName) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("FunctionName", 1))
- }
- if s.FunctionVersion == nil {
- invalidParams.Add(request.NewErrParamRequired("FunctionVersion"))
- }
- if s.FunctionVersion != nil && len(*s.FunctionVersion) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("FunctionVersion", 1))
- }
- if s.Name == nil {
- invalidParams.Add(request.NewErrParamRequired("Name"))
- }
- if s.Name != nil && len(*s.Name) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("Name", 1))
- }
- if invalidParams.Len() > 0 {
- return invalidParams
- }
- return nil
- }
- type CreateEventSourceMappingInput struct {
- _ struct{} `type:"structure"`
- // The largest number of records that AWS Lambda will retrieve from your event
- // source at the time of invoking your function. Your function receives an event
- // with all the retrieved records. The default is 100 records.
- BatchSize *int64 `min:"1" type:"integer"`
- // Indicates whether AWS Lambda should begin polling the event source. By default,
- // Enabled is true.
- Enabled *bool `type:"boolean"`
- // The Amazon Resource Name (ARN) of the Amazon Kinesis or the Amazon DynamoDB
- // stream that is the event source. Any record added to this stream could cause
- // AWS Lambda to invoke your Lambda function, it depends on the BatchSize. AWS
- // Lambda POSTs the Amazon Kinesis event, containing records, to your Lambda
- // function as JSON.
- EventSourceArn *string `type:"string" required:"true"`
- // The Lambda function to invoke when AWS Lambda detects an event on the stream.
- //
- // You can specify the function name (for example, Thumbnail) or you can specify
- // Amazon Resource Name (ARN) of the function (for example, arn:aws:lambda:us-west-2:account-id:function:ThumbNail).
- //
- // If you are using versioning, you can also provide a qualified function
- // ARN (ARN that is qualified with function version or alias name as suffix).
- // For more information about versioning, see AWS Lambda Function Versioning
- // and Aliases (http://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html)
- //
- // AWS Lambda also allows you to specify only the function name with the account
- // ID qualifier (for example, account-id:Thumbnail).
- //
- // Note that the length constraint applies only to the ARN. If you specify
- // only the function name, it is limited to 64 character in length.
- FunctionName *string `min:"1" type:"string" required:"true"`
- // The position in the stream where AWS Lambda should start reading. For more
- // information, go to ShardIteratorType (http://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetShardIterator.html#Kinesis-GetShardIterator-request-ShardIteratorType)
- // in the Amazon Kinesis API Reference.
- StartingPosition *string `type:"string" required:"true" enum:"EventSourcePosition"`
- }
- // String returns the string representation
- func (s CreateEventSourceMappingInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s CreateEventSourceMappingInput) GoString() string {
- return s.String()
- }
- // Validate inspects the fields of the type to determine if they are valid.
- func (s *CreateEventSourceMappingInput) Validate() error {
- invalidParams := request.ErrInvalidParams{Context: "CreateEventSourceMappingInput"}
- if s.BatchSize != nil && *s.BatchSize < 1 {
- invalidParams.Add(request.NewErrParamMinValue("BatchSize", 1))
- }
- if s.EventSourceArn == nil {
- invalidParams.Add(request.NewErrParamRequired("EventSourceArn"))
- }
- if s.FunctionName == nil {
- invalidParams.Add(request.NewErrParamRequired("FunctionName"))
- }
- if s.FunctionName != nil && len(*s.FunctionName) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("FunctionName", 1))
- }
- if s.StartingPosition == nil {
- invalidParams.Add(request.NewErrParamRequired("StartingPosition"))
- }
- if invalidParams.Len() > 0 {
- return invalidParams
- }
- return nil
- }
- type CreateFunctionInput struct {
- _ struct{} `type:"structure"`
- // The code for the Lambda function.
- Code *FunctionCode `type:"structure" required:"true"`
- // A short, user-defined function description. Lambda does not use this value.
- // Assign a meaningful description as you see fit.
- Description *string `type:"string"`
- // The name you want to assign to the function you are uploading. The function
- // names appear in the console and are returned in the ListFunctions API. Function
- // names are used to specify functions to other AWS Lambda APIs, such as Invoke.
- FunctionName *string `min:"1" type:"string" required:"true"`
- // The function within your code that Lambda calls to begin execution. For Node.js,
- // it is the module-name.export value in your function. For Java, it can be
- // package.class-name::handler or package.class-name. For more information,
- // see Lambda Function Handler (Java) (http://docs.aws.amazon.com/lambda/latest/dg/java-programming-model-handler-types.html).
- Handler *string `type:"string" required:"true"`
- // The amount of memory, in MB, your Lambda function is given. Lambda uses this
- // memory size to infer the amount of CPU and memory allocated to your function.
- // Your function use-case determines your CPU and memory requirements. For example,
- // a database operation might need less memory compared to an image processing
- // function. The default value is 128 MB. The value must be a multiple of 64
- // MB.
- MemorySize *int64 `min:"128" type:"integer"`
- // This boolean parameter can be used to request AWS Lambda to create the Lambda
- // function and publish a version as an atomic operation.
- Publish *bool `type:"boolean"`
- // The Amazon Resource Name (ARN) of the IAM role that Lambda assumes when it
- // executes your function to access any other Amazon Web Services (AWS) resources.
- // For more information, see AWS Lambda: How it Works (http://docs.aws.amazon.com/lambda/latest/dg/lambda-introduction.html).
- Role *string `type:"string" required:"true"`
- // The runtime environment for the Lambda function you are uploading.
- //
- // To use the Node.js runtime v4.3, set the value to "nodejs4.3". To use earlier
- // runtime (v0.10.42), set the value to "nodejs".
- Runtime *string `type:"string" required:"true" enum:"Runtime"`
- // The function execution time at which Lambda should terminate the function.
- // Because the execution time has cost implications, we recommend you set this
- // value based on your expected execution time. The default is 3 seconds.
- Timeout *int64 `min:"1" type:"integer"`
- // If your Lambda function accesses resources in a VPC, you provide this parameter
- // identifying the list of security group IDs and subnet IDs. These must belong
- // to the same VPC. You must provide at least one security group and one subnet
- // ID.
- VpcConfig *VpcConfig `type:"structure"`
- }
- // String returns the string representation
- func (s CreateFunctionInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s CreateFunctionInput) GoString() string {
- return s.String()
- }
- // Validate inspects the fields of the type to determine if they are valid.
- func (s *CreateFunctionInput) Validate() error {
- invalidParams := request.ErrInvalidParams{Context: "CreateFunctionInput"}
- if s.Code == nil {
- invalidParams.Add(request.NewErrParamRequired("Code"))
- }
- if s.FunctionName == nil {
- invalidParams.Add(request.NewErrParamRequired("FunctionName"))
- }
- if s.FunctionName != nil && len(*s.FunctionName) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("FunctionName", 1))
- }
- if s.Handler == nil {
- invalidParams.Add(request.NewErrParamRequired("Handler"))
- }
- if s.MemorySize != nil && *s.MemorySize < 128 {
- invalidParams.Add(request.NewErrParamMinValue("MemorySize", 128))
- }
- if s.Role == nil {
- invalidParams.Add(request.NewErrParamRequired("Role"))
- }
- if s.Runtime == nil {
- invalidParams.Add(request.NewErrParamRequired("Runtime"))
- }
- if s.Timeout != nil && *s.Timeout < 1 {
- invalidParams.Add(request.NewErrParamMinValue("Timeout", 1))
- }
- if s.Code != nil {
- if err := s.Code.Validate(); err != nil {
- invalidParams.AddNested("Code", err.(request.ErrInvalidParams))
- }
- }
- if invalidParams.Len() > 0 {
- return invalidParams
- }
- return nil
- }
- type DeleteAliasInput struct {
- _ struct{} `type:"structure"`
- // The Lambda function name for which the alias is created. Deleting an alias
- // does not delete the function version to which it is pointing.
- FunctionName *string `location:"uri" locationName:"FunctionName" min:"1" type:"string" required:"true"`
- // Name of the alias to delete.
- Name *string `location:"uri" locationName:"Name" min:"1" type:"string" required:"true"`
- }
- // String returns the string representation
- func (s DeleteAliasInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s DeleteAliasInput) GoString() string {
- return s.String()
- }
- // Validate inspects the fields of the type to determine if they are valid.
- func (s *DeleteAliasInput) Validate() error {
- invalidParams := request.ErrInvalidParams{Context: "DeleteAliasInput"}
- if s.FunctionName == nil {
- invalidParams.Add(request.NewErrParamRequired("FunctionName"))
- }
- if s.FunctionName != nil && len(*s.FunctionName) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("FunctionName", 1))
- }
- if s.Name == nil {
- invalidParams.Add(request.NewErrParamRequired("Name"))
- }
- if s.Name != nil && len(*s.Name) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("Name", 1))
- }
- if invalidParams.Len() > 0 {
- return invalidParams
- }
- return nil
- }
- type DeleteAliasOutput struct {
- _ struct{} `type:"structure"`
- }
- // String returns the string representation
- func (s DeleteAliasOutput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s DeleteAliasOutput) GoString() string {
- return s.String()
- }
- type DeleteEventSourceMappingInput struct {
- _ struct{} `type:"structure"`
- // The event source mapping ID.
- UUID *string `location:"uri" locationName:"UUID" type:"string" required:"true"`
- }
- // String returns the string representation
- func (s DeleteEventSourceMappingInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s DeleteEventSourceMappingInput) GoString() string {
- return s.String()
- }
- // Validate inspects the fields of the type to determine if they are valid.
- func (s *DeleteEventSourceMappingInput) Validate() error {
- invalidParams := request.ErrInvalidParams{Context: "DeleteEventSourceMappingInput"}
- if s.UUID == nil {
- invalidParams.Add(request.NewErrParamRequired("UUID"))
- }
- if invalidParams.Len() > 0 {
- return invalidParams
- }
- return nil
- }
- type DeleteFunctionInput struct {
- _ struct{} `type:"structure"`
- // The Lambda function to delete.
- //
- // You can specify the function name (for example, Thumbnail) or you can specify
- // Amazon Resource Name (ARN) of the function (for example, arn:aws:lambda:us-west-2:account-id:function:ThumbNail).
- // If you are using versioning, you can also provide a qualified function ARN
- // (ARN that is qualified with function version or alias name as suffix). AWS
- // Lambda also allows you to specify only the function name with the account
- // ID qualifier (for example, account-id:Thumbnail). Note that the length constraint
- // applies only to the ARN. If you specify only the function name, it is limited
- // to 64 character in length.
- FunctionName *string `location:"uri" locationName:"FunctionName" min:"1" type:"string" required:"true"`
- // Using this optional parameter you can specify a function version (but not
- // the $LATEST version) to direct AWS Lambda to delete a specific function version.
- // If the function version has one or more aliases pointing to it, you will
- // get an error because you cannot have aliases pointing to it. You can delete
- // any function version but not the $LATEST, that is, you cannot specify $LATEST
- // as the value of this parameter. The $LATEST version can be deleted only when
- // you want to delete all the function versions and aliases.
- //
- // You can only specify a function version, not an alias name, using this parameter.
- // You cannot delete a function version using its alias.
- //
- // If you don't specify this parameter, AWS Lambda will delete the function,
- // including all of its versions and aliases.
- Qualifier *string `location:"querystring" locationName:"Qualifier" min:"1" type:"string"`
- }
- // String returns the string representation
- func (s DeleteFunctionInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s DeleteFunctionInput) GoString() string {
- return s.String()
- }
- // Validate inspects the fields of the type to determine if they are valid.
- func (s *DeleteFunctionInput) Validate() error {
- invalidParams := request.ErrInvalidParams{Context: "DeleteFunctionInput"}
- if s.FunctionName == nil {
- invalidParams.Add(request.NewErrParamRequired("FunctionName"))
- }
- if s.FunctionName != nil && len(*s.FunctionName) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("FunctionName", 1))
- }
- if s.Qualifier != nil && len(*s.Qualifier) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("Qualifier", 1))
- }
- if invalidParams.Len() > 0 {
- return invalidParams
- }
- return nil
- }
- type DeleteFunctionOutput struct {
- _ struct{} `type:"structure"`
- }
- // String returns the string representation
- func (s DeleteFunctionOutput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s DeleteFunctionOutput) GoString() string {
- return s.String()
- }
- // Describes mapping between an Amazon Kinesis stream and a Lambda function.
- type EventSourceMappingConfiguration struct {
- _ struct{} `type:"structure"`
- // The largest number of records that AWS Lambda will retrieve from your event
- // source at the time of invoking your function. Your function receives an event
- // with all the retrieved records.
- BatchSize *int64 `min:"1" type:"integer"`
- // The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the source
- // of events.
- EventSourceArn *string `type:"string"`
- // The Lambda function to invoke when AWS Lambda detects an event on the stream.
- FunctionArn *string `type:"string"`
- // The UTC time string indicating the last time the event mapping was updated.
- LastModified *time.Time `type:"timestamp" timestampFormat:"unix"`
- // The result of the last AWS Lambda invocation of your Lambda function.
- LastProcessingResult *string `type:"string"`
- // The state of the event source mapping. It can be Creating, Enabled, Disabled,
- // Enabling, Disabling, Updating, or Deleting.
- State *string `type:"string"`
- // The reason the event source mapping is in its current state. It is either
- // user-requested or an AWS Lambda-initiated state transition.
- StateTransitionReason *string `type:"string"`
- // The AWS Lambda assigned opaque identifier for the mapping.
- UUID *string `type:"string"`
- }
- // String returns the string representation
- func (s EventSourceMappingConfiguration) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s EventSourceMappingConfiguration) GoString() string {
- return s.String()
- }
- // The code for the Lambda function.
- type FunctionCode struct {
- _ struct{} `type:"structure"`
- // Amazon S3 bucket name where the .zip file containing your deployment package
- // is stored. This bucket must reside in the same AWS region where you are creating
- // the Lambda function.
- S3Bucket *string `min:"3" type:"string"`
- // The Amazon S3 object (the deployment package) key name you want to upload.
- S3Key *string `min:"1" type:"string"`
- // The Amazon S3 object (the deployment package) version you want to upload.
- S3ObjectVersion *string `min:"1" type:"string"`
- // The contents of your zip file containing your deployment package. If you
- // are using the web API directly, the contents of the zip file must be base64-encoded.
- // If you are using the AWS SDKs or the AWS CLI, the SDKs or CLI will do the
- // encoding for you. For more information about creating a .zip file, go to
- // Execution Permissions (http://docs.aws.amazon.com/lambda/latest/dg/intro-permission-model.html#lambda-intro-execution-role.html)
- // in the AWS Lambda Developer Guide.
- //
- // ZipFile is automatically base64 encoded/decoded by the SDK.
- ZipFile []byte `type:"blob"`
- }
- // String returns the string representation
- func (s FunctionCode) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s FunctionCode) GoString() string {
- return s.String()
- }
- // Validate inspects the fields of the type to determine if they are valid.
- func (s *FunctionCode) Validate() error {
- invalidParams := request.ErrInvalidParams{Context: "FunctionCode"}
- if s.S3Bucket != nil && len(*s.S3Bucket) < 3 {
- invalidParams.Add(request.NewErrParamMinLen("S3Bucket", 3))
- }
- if s.S3Key != nil && len(*s.S3Key) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("S3Key", 1))
- }
- if s.S3ObjectVersion != nil && len(*s.S3ObjectVersion) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("S3ObjectVersion", 1))
- }
- if invalidParams.Len() > 0 {
- return invalidParams
- }
- return nil
- }
- // The object for the Lambda function location.
- type FunctionCodeLocation struct {
- _ struct{} `type:"structure"`
- // The presigned URL you can use to download the function's .zip file that you
- // previously uploaded. The URL is valid for up to 10 minutes.
- Location *string `type:"string"`
- // The repository from which you can download the function.
- RepositoryType *string `type:"string"`
- }
- // String returns the string representation
- func (s FunctionCodeLocation) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s FunctionCodeLocation) GoString() string {
- return s.String()
- }
- // A complex type that describes function metadata.
- type FunctionConfiguration struct {
- _ struct{} `type:"structure"`
- // It is the SHA256 hash of your function deployment package.
- CodeSha256 *string `type:"string"`
- // The size, in bytes, of the function .zip file you uploaded.
- CodeSize *int64 `type:"long"`
- // The user-provided description.
- Description *string `type:"string"`
- // The Amazon Resource Name (ARN) assigned to the function.
- FunctionArn *string `type:"string"`
- // The name of the function.
- FunctionName *string `min:"1" type:"string"`
- // The function Lambda calls to begin executing your function.
- Handler *string `type:"string"`
- // The time stamp of the last time you updated the function.
- LastModified *string `type:"string"`
- // The memory size, in MB, you configured for the function. Must be a multiple
- // of 64 MB.
- MemorySize *int64 `min:"128" type:"integer"`
- // The Amazon Resource Name (ARN) of the IAM role that Lambda assumes when it
- // executes your function to access any other Amazon Web Services (AWS) resources.
- Role *string `type:"string"`
- // The runtime environment for the Lambda function.
- //
- // To use the Node.js runtime v4.3, set the value to "nodejs4.3". To use earlier
- // runtime (v0.10.42), set the value to "nodejs".
- Runtime *string `type:"string" enum:"Runtime"`
- // The function execution time at which Lambda should terminate the function.
- // Because the execution time has cost implications, we recommend you set this
- // value based on your expected execution time. The default is 3 seconds.
- Timeout *int64 `min:"1" type:"integer"`
- // The version of the Lambda function.
- Version *string `min:"1" type:"string"`
- // VPC configuration associated with your Lambda function.
- VpcConfig *VpcConfigResponse `type:"structure"`
- }
- // String returns the string representation
- func (s FunctionConfiguration) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s FunctionConfiguration) GoString() string {
- return s.String()
- }
- type GetAliasInput struct {
- _ struct{} `type:"structure"`
- // Function name for which the alias is created. An alias is a subresource that
- // exists only in the context of an existing Lambda function so you must specify
- // the function name.
- FunctionName *string `location:"uri" locationName:"FunctionName" min:"1" type:"string" required:"true"`
- // Name of the alias for which you want to retrieve information.
- Name *string `location:"uri" locationName:"Name" min:"1" type:"string" required:"true"`
- }
- // String returns the string representation
- func (s GetAliasInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s GetAliasInput) GoString() string {
- return s.String()
- }
- // Validate inspects the fields of the type to determine if they are valid.
- func (s *GetAliasInput) Validate() error {
- invalidParams := request.ErrInvalidParams{Context: "GetAliasInput"}
- if s.FunctionName == nil {
- invalidParams.Add(request.NewErrParamRequired("FunctionName"))
- }
- if s.FunctionName != nil && len(*s.FunctionName) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("FunctionName", 1))
- }
- if s.Name == nil {
- invalidParams.Add(request.NewErrParamRequired("Name"))
- }
- if s.Name != nil && len(*s.Name) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("Name", 1))
- }
- if invalidParams.Len() > 0 {
- return invalidParams
- }
- return nil
- }
- type GetEventSourceMappingInput struct {
- _ struct{} `type:"structure"`
- // The AWS Lambda assigned ID of the event source mapping.
- UUID *string `location:"uri" locationName:"UUID" type:"string" required:"true"`
- }
- // String returns the string representation
- func (s GetEventSourceMappingInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s GetEventSourceMappingInput) GoString() string {
- return s.String()
- }
- // Validate inspects the fields of the type to determine if they are valid.
- func (s *GetEventSourceMappingInput) Validate() error {
- invalidParams := request.ErrInvalidParams{Context: "GetEventSourceMappingInput"}
- if s.UUID == nil {
- invalidParams.Add(request.NewErrParamRequired("UUID"))
- }
- if invalidParams.Len() > 0 {
- return invalidParams
- }
- return nil
- }
- type GetFunctionConfigurationInput struct {
- _ struct{} `type:"structure"`
- // The name of the Lambda function for which you want to retrieve the configuration
- // information.
- //
- // You can specify a function name (for example, Thumbnail) or you can specify
- // Amazon Resource Name (ARN) of the function (for example, arn:aws:lambda:us-west-2:account-id:function:ThumbNail).
- // AWS Lambda also allows you to specify a partial ARN (for example, account-id:Thumbnail).
- // Note that the length constraint applies only to the ARN. If you specify only
- // the function name, it is limited to 64 character in length.
- FunctionName *string `location:"uri" locationName:"FunctionName" min:"1" type:"string" required:"true"`
- // Using this optional parameter you can specify a function version or an alias
- // name. If you specify function version, the API uses qualified function ARN
- // and returns information about the specific function version. If you specify
- // an alias name, the API uses the alias ARN and returns information about the
- // function version to which the alias points.
- //
- // If you don't specify this parameter, the API uses unqualified function ARN,
- // and returns information about the $LATEST function version.
- Qualifier *string `location:"querystring" locationName:"Qualifier" min:"1" type:"string"`
- }
- // String returns the string representation
- func (s GetFunctionConfigurationInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s GetFunctionConfigurationInput) GoString() string {
- return s.String()
- }
- // Validate inspects the fields of the type to determine if they are valid.
- func (s *GetFunctionConfigurationInput) Validate() error {
- invalidParams := request.ErrInvalidParams{Context: "GetFunctionConfigurationInput"}
- if s.FunctionName == nil {
- invalidParams.Add(request.NewErrParamRequired("FunctionName"))
- }
- if s.FunctionName != nil && len(*s.FunctionName) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("FunctionName", 1))
- }
- if s.Qualifier != nil && len(*s.Qualifier) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("Qualifier", 1))
- }
- if invalidParams.Len() > 0 {
- return invalidParams
- }
- return nil
- }
- type GetFunctionInput struct {
- _ struct{} `type:"structure"`
- // The Lambda function name.
- //
- // You can specify a function name (for example, Thumbnail) or you can specify
- // Amazon Resource Name (ARN) of the function (for example, arn:aws:lambda:us-west-2:account-id:function:ThumbNail).
- // AWS Lambda also allows you to specify a partial ARN (for example, account-id:Thumbnail).
- // Note that the length constraint applies only to the ARN. If you specify only
- // the function name, it is limited to 64 character in length.
- FunctionName *string `location:"uri" locationName:"FunctionName" min:"1" type:"string" required:"true"`
- // Using this optional parameter to specify a function version or an alias name.
- // If you specify function version, the API uses qualified function ARN for
- // the request and returns information about the specific Lambda function version.
- // If you specify an alias name, the API uses the alias ARN and returns information
- // about the function version to which the alias points. If you don't provide
- // this parameter, the API uses unqualified function ARN and returns information
- // about the $LATEST version of the Lambda function.
- Qualifier *string `location:"querystring" locationName:"Qualifier" min:"1" type:"string"`
- }
- // String returns the string representation
- func (s GetFunctionInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s GetFunctionInput) GoString() string {
- return s.String()
- }
- // Validate inspects the fields of the type to determine if they are valid.
- func (s *GetFunctionInput) Validate() error {
- invalidParams := request.ErrInvalidParams{Context: "GetFunctionInput"}
- if s.FunctionName == nil {
- invalidParams.Add(request.NewErrParamRequired("FunctionName"))
- }
- if s.FunctionName != nil && len(*s.FunctionName) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("FunctionName", 1))
- }
- if s.Qualifier != nil && len(*s.Qualifier) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("Qualifier", 1))
- }
- if invalidParams.Len() > 0 {
- return invalidParams
- }
- return nil
- }
- // This response contains the object for the Lambda function location (see .
- type GetFunctionOutput struct {
- _ struct{} `type:"structure"`
- // The object for the Lambda function location.
- Code *FunctionCodeLocation `type:"structure"`
- // A complex type that describes function metadata.
- Configuration *FunctionConfiguration `type:"structure"`
- }
- // String returns the string representation
- func (s GetFunctionOutput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s GetFunctionOutput) GoString() string {
- return s.String()
- }
- type GetPolicyInput struct {
- _ struct{} `type:"structure"`
- // Function name whose resource policy you want to retrieve.
- //
- // You can specify the function name (for example, Thumbnail) or you can specify
- // Amazon Resource Name (ARN) of the function (for example, arn:aws:lambda:us-west-2:account-id:function:ThumbNail).
- // If you are using versioning, you can also provide a qualified function ARN
- // (ARN that is qualified with function version or alias name as suffix). AWS
- // Lambda also allows you to specify only the function name with the account
- // ID qualifier (for example, account-id:Thumbnail). Note that the length constraint
- // applies only to the ARN. If you specify only the function name, it is limited
- // to 64 character in length.
- FunctionName *string `location:"uri" locationName:"FunctionName" min:"1" type:"string" required:"true"`
- // You can specify this optional query parameter to specify a function version
- // or an alias name in which case this API will return all permissions associated
- // with the specific qualified ARN. If you don't provide this parameter, the
- // API will return permissions that apply to the unqualified function ARN.
- Qualifier *string `location:"querystring" locationName:"Qualifier" min:"1" type:"string"`
- }
- // String returns the string representation
- func (s GetPolicyInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s GetPolicyInput) GoString() string {
- return s.String()
- }
- // Validate inspects the fields of the type to determine if they are valid.
- func (s *GetPolicyInput) Validate() error {
- invalidParams := request.ErrInvalidParams{Context: "GetPolicyInput"}
- if s.FunctionName == nil {
- invalidParams.Add(request.NewErrParamRequired("FunctionName"))
- }
- if s.FunctionName != nil && len(*s.FunctionName) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("FunctionName", 1))
- }
- if s.Qualifier != nil && len(*s.Qualifier) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("Qualifier", 1))
- }
- if invalidParams.Len() > 0 {
- return invalidParams
- }
- return nil
- }
- type GetPolicyOutput struct {
- _ struct{} `type:"structure"`
- // The resource policy associated with the specified function. The response
- // returns the same as a string using a backslash ("\") as an escape character
- // in the JSON.
- Policy *string `type:"string"`
- }
- // String returns the string representation
- func (s GetPolicyOutput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s GetPolicyOutput) GoString() string {
- return s.String()
- }
- type InvokeAsyncInput struct {
- _ struct{} `deprecated:"true" type:"structure" payload:"InvokeArgs"`
- // The Lambda function name.
- FunctionName *string `location:"uri" locationName:"FunctionName" min:"1" type:"string" required:"true"`
- // JSON that you want to provide to your Lambda function as input.
- InvokeArgs io.ReadSeeker `type:"blob" required:"true"`
- }
- // String returns the string representation
- func (s InvokeAsyncInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s InvokeAsyncInput) GoString() string {
- return s.String()
- }
- // Validate inspects the fields of the type to determine if they are valid.
- func (s *InvokeAsyncInput) Validate() error {
- invalidParams := request.ErrInvalidParams{Context: "InvokeAsyncInput"}
- if s.FunctionName == nil {
- invalidParams.Add(request.NewErrParamRequired("FunctionName"))
- }
- if s.FunctionName != nil && len(*s.FunctionName) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("FunctionName", 1))
- }
- if s.InvokeArgs == nil {
- invalidParams.Add(request.NewErrParamRequired("InvokeArgs"))
- }
- if invalidParams.Len() > 0 {
- return invalidParams
- }
- return nil
- }
- // Upon success, it returns empty response. Otherwise, throws an exception.
- type InvokeAsyncOutput struct {
- _ struct{} `deprecated:"true" type:"structure"`
- // It will be 202 upon success.
- Status *int64 `location:"statusCode" type:"integer"`
- }
- // String returns the string representation
- func (s InvokeAsyncOutput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s InvokeAsyncOutput) GoString() string {
- return s.String()
- }
- type InvokeInput struct {
- _ struct{} `type:"structure" payload:"Payload"`
- // Using the ClientContext you can pass client-specific information to the Lambda
- // function you are invoking. You can then process the client information in
- // your Lambda function as you choose through the context variable. For an example
- // of a ClientContext JSON, see PutEvents (http://docs.aws.amazon.com/mobileanalytics/latest/ug/PutEvents.html)
- // in the Amazon Mobile Analytics API Reference and User Guide.
- //
- // The ClientContext JSON must be base64-encoded.
- ClientContext *string `location:"header" locationName:"X-Amz-Client-Context" type:"string"`
- // The Lambda function name.
- //
- // You can specify a function name (for example, Thumbnail) or you can specify
- // Amazon Resource Name (ARN) of the function (for example, arn:aws:lambda:us-west-2:account-id:function:ThumbNail).
- // AWS Lambda also allows you to specify a partial ARN (for example, account-id:Thumbnail).
- // Note that the length constraint applies only to the ARN. If you specify only
- // the function name, it is limited to 64 character in length.
- FunctionName *string `location:"uri" locationName:"FunctionName" min:"1" type:"string" required:"true"`
- // By default, the Invoke API assumes RequestResponse invocation type. You can
- // optionally request asynchronous execution by specifying Event as the InvocationType.
- // You can also use this parameter to request AWS Lambda to not execute the
- // function but do some verification, such as if the caller is authorized to
- // invoke the function and if the inputs are valid. You request this by specifying
- // DryRun as the InvocationType. This is useful in a cross-account scenario
- // when you want to verify access to a function without running it.
- InvocationType *string `location:"header" locationName:"X-Amz-Invocation-Type" type:"string" enum:"InvocationType"`
- // You can set this optional parameter to Tail in the request only if you specify
- // the InvocationType parameter with value RequestResponse. In this case, AWS
- // Lambda returns the base64-encoded last 4 KB of log data produced by your
- // Lambda function in the x-amz-log-result header.
- LogType *string `location:"header" locationName:"X-Amz-Log-Type" type:"string" enum:"LogType"`
- // JSON that you want to provide to your Lambda function as input.
- Payload []byte `type:"blob"`
- // You can use this optional parameter to specify a Lambda function version
- // or alias name. If you specify a function version, the API uses the qualified
- // function ARN to invoke a specific Lambda function. If you specify an alias
- // name, the API uses the alias ARN to invoke the Lambda function version to
- // which the alias points.
- //
- // If you don't provide this parameter, then the API uses unqualified function
- // ARN which results in invocation of the $LATEST version.
- Qualifier *string `location:"querystring" locationName:"Qualifier" min:"1" type:"string"`
- }
- // String returns the string representation
- func (s InvokeInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s InvokeInput) GoString() string {
- return s.String()
- }
- // Validate inspects the fields of the type to determine if they are valid.
- func (s *InvokeInput) Validate() error {
- invalidParams := request.ErrInvalidParams{Context: "InvokeInput"}
- if s.FunctionName == nil {
- invalidParams.Add(request.NewErrParamRequired("FunctionName"))
- }
- if s.FunctionName != nil && len(*s.FunctionName) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("FunctionName", 1))
- }
- if s.Qualifier != nil && len(*s.Qualifier) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("Qualifier", 1))
- }
- if invalidParams.Len() > 0 {
- return invalidParams
- }
- return nil
- }
- // Upon success, returns an empty response. Otherwise, throws an exception.
- type InvokeOutput struct {
- _ struct{} `type:"structure" payload:"Payload"`
- // Indicates whether an error occurred while executing the Lambda function.
- // If an error occurred this field will have one of two values; Handled or Unhandled.
- // Handled errors are errors that are reported by the function while the Unhandled
- // errors are those detected and reported by AWS Lambda. Unhandled errors include
- // out of memory errors and function timeouts. For information about how to
- // report an Handled error, see Programming Model (http://docs.aws.amazon.com/lambda/latest/dg/programming-model.html).
- FunctionError *string `location:"header" locationName:"X-Amz-Function-Error" type:"string"`
- // It is the base64-encoded logs for the Lambda function invocation. This is
- // present only if the invocation type is RequestResponse and the logs were
- // requested.
- LogResult *string `location:"header" locationName:"X-Amz-Log-Result" type:"string"`
- // It is the JSON representation of the object returned by the Lambda function.
- // In This is present only if the invocation type is RequestResponse.
- //
- // In the event of a function error this field contains a message describing
- // the error. For the Handled errors the Lambda function will report this message.
- // For Unhandled errors AWS Lambda reports the message.
- Payload []byte `type:"blob"`
- // The HTTP status code will be in the 200 range for successful request. For
- // the RequestResonse invocation type this status code will be 200. For the
- // Event invocation type this status code will be 202. For the DryRun invocation
- // type the status code will be 204.
- StatusCode *int64 `location:"statusCode" type:"integer"`
- }
- // String returns the string representation
- func (s InvokeOutput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s InvokeOutput) GoString() string {
- return s.String()
- }
- type ListAliasesInput struct {
- _ struct{} `type:"structure"`
- // Lambda function name for which the alias is created.
- FunctionName *string `location:"uri" locationName:"FunctionName" min:"1" type:"string" required:"true"`
- // If you specify this optional parameter, the API returns only the aliases
- // that are pointing to the specific Lambda function version, otherwise the
- // API returns all of the aliases created for the Lambda function.
- FunctionVersion *string `location:"querystring" locationName:"FunctionVersion" min:"1" type:"string"`
- // Optional string. An opaque pagination token returned from a previous ListAliases
- // operation. If present, indicates where to continue the listing.
- Marker *string `location:"querystring" locationName:"Marker" type:"string"`
- // Optional integer. Specifies the maximum number of aliases to return in response.
- // This parameter value must be greater than 0.
- MaxItems *int64 `location:"querystring" locationName:"MaxItems" min:"1" type:"integer"`
- }
- // String returns the string representation
- func (s ListAliasesInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s ListAliasesInput) GoString() string {
- return s.String()
- }
- // Validate inspects the fields of the type to determine if they are valid.
- func (s *ListAliasesInput) Validate() error {
- invalidParams := request.ErrInvalidParams{Context: "ListAliasesInput"}
- if s.FunctionName == nil {
- invalidParams.Add(request.NewErrParamRequired("FunctionName"))
- }
- if s.FunctionName != nil && len(*s.FunctionName) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("FunctionName", 1))
- }
- if s.FunctionVersion != nil && len(*s.FunctionVersion) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("FunctionVersion", 1))
- }
- if s.MaxItems != nil && *s.MaxItems < 1 {
- invalidParams.Add(request.NewErrParamMinValue("MaxItems", 1))
- }
- if invalidParams.Len() > 0 {
- return invalidParams
- }
- return nil
- }
- type ListAliasesOutput struct {
- _ struct{} `type:"structure"`
- // A list of aliases.
- Aliases []*AliasConfiguration `type:"list"`
- // A string, present if there are more aliases.
- NextMarker *string `type:"string"`
- }
- // String returns the string representation
- func (s ListAliasesOutput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s ListAliasesOutput) GoString() string {
- return s.String()
- }
- type ListEventSourceMappingsInput struct {
- _ struct{} `type:"structure"`
- // The Amazon Resource Name (ARN) of the Amazon Kinesis stream. (This parameter
- // is optional.)
- EventSourceArn *string `location:"querystring" locationName:"EventSourceArn" type:"string"`
- // The name of the Lambda function.
- //
- // You can specify the function name (for example, Thumbnail) or you can specify
- // Amazon Resource Name (ARN) of the function (for example, arn:aws:lambda:us-west-2:account-id:function:ThumbNail).
- // If you are using versioning, you can also provide a qualified function ARN
- // (ARN that is qualified with function version or alias name as suffix). AWS
- // Lambda also allows you to specify only the function name with the account
- // ID qualifier (for example, account-id:Thumbnail). Note that the length constraint
- // applies only to the ARN. If you specify only the function name, it is limited
- // to 64 character in length.
- FunctionName *string `location:"querystring" locationName:"FunctionName" min:"1" type:"string"`
- // Optional string. An opaque pagination token returned from a previous ListEventSourceMappings
- // operation. If present, specifies to continue the list from where the returning
- // call left off.
- Marker *string `location:"querystring" locationName:"Marker" type:"string"`
- // Optional integer. Specifies the maximum number of event sources to return
- // in response. This value must be greater than 0.
- MaxItems *int64 `location:"querystring" locationName:"MaxItems" min:"1" type:"integer"`
- }
- // String returns the string representation
- func (s ListEventSourceMappingsInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s ListEventSourceMappingsInput) GoString() string {
- return s.String()
- }
- // Validate inspects the fields of the type to determine if they are valid.
- func (s *ListEventSourceMappingsInput) Validate() error {
- invalidParams := request.ErrInvalidParams{Context: "ListEventSourceMappingsInput"}
- if s.FunctionName != nil && len(*s.FunctionName) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("FunctionName", 1))
- }
- if s.MaxItems != nil && *s.MaxItems < 1 {
- invalidParams.Add(request.NewErrParamMinValue("MaxItems", 1))
- }
- if invalidParams.Len() > 0 {
- return invalidParams
- }
- return nil
- }
- // Contains a list of event sources (see )
- type ListEventSourceMappingsOutput struct {
- _ struct{} `type:"structure"`
- // An array of EventSourceMappingConfiguration objects.
- EventSourceMappings []*EventSourceMappingConfiguration `type:"list"`
- // A string, present if there are more event source mappings.
- NextMarker *string `type:"string"`
- }
- // String returns the string representation
- func (s ListEventSourceMappingsOutput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s ListEventSourceMappingsOutput) GoString() string {
- return s.String()
- }
- type ListFunctionsInput struct {
- _ struct{} `type:"structure"`
- // Optional string. An opaque pagination token returned from a previous ListFunctions
- // operation. If present, indicates where to continue the listing.
- Marker *string `location:"querystring" locationName:"Marker" type:"string"`
- // Optional integer. Specifies the maximum number of AWS Lambda functions to
- // return in response. This parameter value must be greater than 0.
- MaxItems *int64 `location:"querystring" locationName:"MaxItems" min:"1" type:"integer"`
- }
- // String returns the string representation
- func (s ListFunctionsInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s ListFunctionsInput) GoString() string {
- return s.String()
- }
- // Validate inspects the fields of the type to determine if they are valid.
- func (s *ListFunctionsInput) Validate() error {
- invalidParams := request.ErrInvalidParams{Context: "ListFunctionsInput"}
- if s.MaxItems != nil && *s.MaxItems < 1 {
- invalidParams.Add(request.NewErrParamMinValue("MaxItems", 1))
- }
- if invalidParams.Len() > 0 {
- return invalidParams
- }
- return nil
- }
- // Contains a list of AWS Lambda function configurations (see FunctionConfiguration.
- type ListFunctionsOutput struct {
- _ struct{} `type:"structure"`
- // A list of Lambda functions.
- Functions []*FunctionConfiguration `type:"list"`
- // A string, present if there are more functions.
- NextMarker *string `type:"string"`
- }
- // String returns the string representation
- func (s ListFunctionsOutput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s ListFunctionsOutput) GoString() string {
- return s.String()
- }
- type ListVersionsByFunctionInput struct {
- _ struct{} `type:"structure"`
- // Function name whose versions to list. You can specify a function name (for
- // example, Thumbnail) or you can specify Amazon Resource Name (ARN) of the
- // function (for example, arn:aws:lambda:us-west-2:account-id:function:ThumbNail).
- // AWS Lambda also allows you to specify a partial ARN (for example, account-id:Thumbnail).
- // Note that the length constraint applies only to the ARN. If you specify only
- // the function name, it is limited to 64 character in length.
- FunctionName *string `location:"uri" locationName:"FunctionName" min:"1" type:"string" required:"true"`
- // Optional string. An opaque pagination token returned from a previous ListVersionsByFunction
- // operation. If present, indicates where to continue the listing.
- Marker *string `location:"querystring" locationName:"Marker" type:"string"`
- // Optional integer. Specifies the maximum number of AWS Lambda function versions
- // to return in response. This parameter value must be greater than 0.
- MaxItems *int64 `location:"querystring" locationName:"MaxItems" min:"1" type:"integer"`
- }
- // String returns the string representation
- func (s ListVersionsByFunctionInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s ListVersionsByFunctionInput) GoString() string {
- return s.String()
- }
- // Validate inspects the fields of the type to determine if they are valid.
- func (s *ListVersionsByFunctionInput) Validate() error {
- invalidParams := request.ErrInvalidParams{Context: "ListVersionsByFunctionInput"}
- if s.FunctionName == nil {
- invalidParams.Add(request.NewErrParamRequired("FunctionName"))
- }
- if s.FunctionName != nil && len(*s.FunctionName) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("FunctionName", 1))
- }
- if s.MaxItems != nil && *s.MaxItems < 1 {
- invalidParams.Add(request.NewErrParamMinValue("MaxItems", 1))
- }
- if invalidParams.Len() > 0 {
- return invalidParams
- }
- return nil
- }
- type ListVersionsByFunctionOutput struct {
- _ struct{} `type:"structure"`
- // A string, present if there are more function versions.
- NextMarker *string `type:"string"`
- // A list of Lambda function versions.
- Versions []*FunctionConfiguration `type:"list"`
- }
- // String returns the string representation
- func (s ListVersionsByFunctionOutput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s ListVersionsByFunctionOutput) GoString() string {
- return s.String()
- }
- type PublishVersionInput struct {
- _ struct{} `type:"structure"`
- // The SHA256 hash of the deployment package you want to publish. This provides
- // validation on the code you are publishing. If you provide this parameter
- // value must match the SHA256 of the $LATEST version for the publication to
- // succeed.
- CodeSha256 *string `type:"string"`
- // The description for the version you are publishing. If not provided, AWS
- // Lambda copies the description from the $LATEST version.
- Description *string `type:"string"`
- // The Lambda function name. You can specify a function name (for example, Thumbnail)
- // or you can specify Amazon Resource Name (ARN) of the function (for example,
- // arn:aws:lambda:us-west-2:account-id:function:ThumbNail). AWS Lambda also
- // allows you to specify a partial ARN (for example, account-id:Thumbnail).
- // Note that the length constraint applies only to the ARN. If you specify only
- // the function name, it is limited to 64 character in length.
- FunctionName *string `location:"uri" locationName:"FunctionName" min:"1" type:"string" required:"true"`
- }
- // String returns the string representation
- func (s PublishVersionInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s PublishVersionInput) GoString() string {
- return s.String()
- }
- // Validate inspects the fields of the type to determine if they are valid.
- func (s *PublishVersionInput) Validate() error {
- invalidParams := request.ErrInvalidParams{Context: "PublishVersionInput"}
- if s.FunctionName == nil {
- invalidParams.Add(request.NewErrParamRequired("FunctionName"))
- }
- if s.FunctionName != nil && len(*s.FunctionName) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("FunctionName", 1))
- }
- if invalidParams.Len() > 0 {
- return invalidParams
- }
- return nil
- }
- type RemovePermissionInput struct {
- _ struct{} `type:"structure"`
- // Lambda function whose resource policy you want to remove a permission from.
- //
- // You can specify a function name (for example, Thumbnail) or you can specify
- // Amazon Resource Name (ARN) of the function (for example, arn:aws:lambda:us-west-2:account-id:function:ThumbNail).
- // AWS Lambda also allows you to specify a partial ARN (for example, account-id:Thumbnail).
- // Note that the length constraint applies only to the ARN. If you specify only
- // the function name, it is limited to 64 character in length.
- FunctionName *string `location:"uri" locationName:"FunctionName" min:"1" type:"string" required:"true"`
- // You can specify this optional parameter to remove permission associated with
- // a specific function version or function alias. If you don't specify this
- // parameter, the API removes permission associated with the unqualified function
- // ARN.
- Qualifier *string `location:"querystring" locationName:"Qualifier" min:"1" type:"string"`
- // Statement ID of the permission to remove.
- StatementId *string `location:"uri" locationName:"StatementId" min:"1" type:"string" required:"true"`
- }
- // String returns the string representation
- func (s RemovePermissionInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s RemovePermissionInput) GoString() string {
- return s.String()
- }
- // Validate inspects the fields of the type to determine if they are valid.
- func (s *RemovePermissionInput) Validate() error {
- invalidParams := request.ErrInvalidParams{Context: "RemovePermissionInput"}
- if s.FunctionName == nil {
- invalidParams.Add(request.NewErrParamRequired("FunctionName"))
- }
- if s.FunctionName != nil && len(*s.FunctionName) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("FunctionName", 1))
- }
- if s.Qualifier != nil && len(*s.Qualifier) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("Qualifier", 1))
- }
- if s.StatementId == nil {
- invalidParams.Add(request.NewErrParamRequired("StatementId"))
- }
- if s.StatementId != nil && len(*s.StatementId) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("StatementId", 1))
- }
- if invalidParams.Len() > 0 {
- return invalidParams
- }
- return nil
- }
- type RemovePermissionOutput struct {
- _ struct{} `type:"structure"`
- }
- // String returns the string representation
- func (s RemovePermissionOutput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s RemovePermissionOutput) GoString() string {
- return s.String()
- }
- type UpdateAliasInput struct {
- _ struct{} `type:"structure"`
- // You can change the description of the alias using this parameter.
- Description *string `type:"string"`
- // The function name for which the alias is created.
- FunctionName *string `location:"uri" locationName:"FunctionName" min:"1" type:"string" required:"true"`
- // Using this parameter you can change the Lambda function version to which
- // the alias points.
- FunctionVersion *string `min:"1" type:"string"`
- // The alias name.
- Name *string `location:"uri" locationName:"Name" min:"1" type:"string" required:"true"`
- }
- // String returns the string representation
- func (s UpdateAliasInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s UpdateAliasInput) GoString() string {
- return s.String()
- }
- // Validate inspects the fields of the type to determine if they are valid.
- func (s *UpdateAliasInput) Validate() error {
- invalidParams := request.ErrInvalidParams{Context: "UpdateAliasInput"}
- if s.FunctionName == nil {
- invalidParams.Add(request.NewErrParamRequired("FunctionName"))
- }
- if s.FunctionName != nil && len(*s.FunctionName) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("FunctionName", 1))
- }
- if s.FunctionVersion != nil && len(*s.FunctionVersion) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("FunctionVersion", 1))
- }
- if s.Name == nil {
- invalidParams.Add(request.NewErrParamRequired("Name"))
- }
- if s.Name != nil && len(*s.Name) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("Name", 1))
- }
- if invalidParams.Len() > 0 {
- return invalidParams
- }
- return nil
- }
- type UpdateEventSourceMappingInput struct {
- _ struct{} `type:"structure"`
- // The maximum number of stream records that can be sent to your Lambda function
- // for a single invocation.
- BatchSize *int64 `min:"1" type:"integer"`
- // Specifies whether AWS Lambda should actively poll the stream or not. If disabled,
- // AWS Lambda will not poll the stream.
- Enabled *bool `type:"boolean"`
- // The Lambda function to which you want the stream records sent.
- //
- // You can specify a function name (for example, Thumbnail) or you can specify
- // Amazon Resource Name (ARN) of the function (for example, arn:aws:lambda:us-west-2:account-id:function:ThumbNail).
- // AWS Lambda also allows you to specify a partial ARN (for example, account-id:Thumbnail).
- //
- // If you are using versioning, you can also provide a qualified function ARN
- // (ARN that is qualified with function version or alias name as suffix). For
- // more information about versioning, see AWS Lambda Function Versioning and
- // Aliases (http://docs.aws.amazon.com/lambda/latest/dg/versioning-aliases.html)
- //
- // Note that the length constraint applies only to the ARN. If you specify
- // only the function name, it is limited to 64 character in length.
- FunctionName *string `min:"1" type:"string"`
- // The event source mapping identifier.
- UUID *string `location:"uri" locationName:"UUID" type:"string" required:"true"`
- }
- // String returns the string representation
- func (s UpdateEventSourceMappingInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s UpdateEventSourceMappingInput) GoString() string {
- return s.String()
- }
- // Validate inspects the fields of the type to determine if they are valid.
- func (s *UpdateEventSourceMappingInput) Validate() error {
- invalidParams := request.ErrInvalidParams{Context: "UpdateEventSourceMappingInput"}
- if s.BatchSize != nil && *s.BatchSize < 1 {
- invalidParams.Add(request.NewErrParamMinValue("BatchSize", 1))
- }
- if s.FunctionName != nil && len(*s.FunctionName) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("FunctionName", 1))
- }
- if s.UUID == nil {
- invalidParams.Add(request.NewErrParamRequired("UUID"))
- }
- if invalidParams.Len() > 0 {
- return invalidParams
- }
- return nil
- }
- type UpdateFunctionCodeInput struct {
- _ struct{} `type:"structure"`
- // The existing Lambda function name whose code you want to replace.
- //
- // You can specify a function name (for example, Thumbnail) or you can specify
- // Amazon Resource Name (ARN) of the function (for example, arn:aws:lambda:us-west-2:account-id:function:ThumbNail).
- // AWS Lambda also allows you to specify a partial ARN (for example, account-id:Thumbnail).
- // Note that the length constraint applies only to the ARN. If you specify only
- // the function name, it is limited to 64 character in length.
- FunctionName *string `location:"uri" locationName:"FunctionName" min:"1" type:"string" required:"true"`
- // This boolean parameter can be used to request AWS Lambda to update the Lambda
- // function and publish a version as an atomic operation.
- Publish *bool `type:"boolean"`
- // Amazon S3 bucket name where the .zip file containing your deployment package
- // is stored. This bucket must reside in the same AWS region where you are creating
- // the Lambda function.
- S3Bucket *string `min:"3" type:"string"`
- // The Amazon S3 object (the deployment package) key name you want to upload.
- S3Key *string `min:"1" type:"string"`
- // The Amazon S3 object (the deployment package) version you want to upload.
- S3ObjectVersion *string `min:"1" type:"string"`
- // The contents of your zip file containing your deployment package. If you
- // are using the web API directly, the contents of the zip file must be base64-encoded.
- // If you are using the AWS SDKs or the AWS CLI, the SDKs or CLI will do the
- // encoding for you. For more information about creating a .zip file, go to
- // Execution Permissions (http://docs.aws.amazon.com/lambda/latest/dg/intro-permission-model.html#lambda-intro-execution-role.html)
- // in the AWS Lambda Developer Guide.
- //
- // ZipFile is automatically base64 encoded/decoded by the SDK.
- ZipFile []byte `type:"blob"`
- }
- // String returns the string representation
- func (s UpdateFunctionCodeInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s UpdateFunctionCodeInput) GoString() string {
- return s.String()
- }
- // Validate inspects the fields of the type to determine if they are valid.
- func (s *UpdateFunctionCodeInput) Validate() error {
- invalidParams := request.ErrInvalidParams{Context: "UpdateFunctionCodeInput"}
- if s.FunctionName == nil {
- invalidParams.Add(request.NewErrParamRequired("FunctionName"))
- }
- if s.FunctionName != nil && len(*s.FunctionName) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("FunctionName", 1))
- }
- if s.S3Bucket != nil && len(*s.S3Bucket) < 3 {
- invalidParams.Add(request.NewErrParamMinLen("S3Bucket", 3))
- }
- if s.S3Key != nil && len(*s.S3Key) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("S3Key", 1))
- }
- if s.S3ObjectVersion != nil && len(*s.S3ObjectVersion) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("S3ObjectVersion", 1))
- }
- if invalidParams.Len() > 0 {
- return invalidParams
- }
- return nil
- }
- type UpdateFunctionConfigurationInput struct {
- _ struct{} `type:"structure"`
- // A short user-defined function description. AWS Lambda does not use this value.
- // Assign a meaningful description as you see fit.
- Description *string `type:"string"`
- // The name of the Lambda function.
- //
- // You can specify a function name (for example, Thumbnail) or you can specify
- // Amazon Resource Name (ARN) of the function (for example, arn:aws:lambda:us-west-2:account-id:function:ThumbNail).
- // AWS Lambda also allows you to specify a partial ARN (for example, account-id:Thumbnail).
- // Note that the length constraint applies only to the ARN. If you specify only
- // the function name, it is limited to 64 character in length.
- FunctionName *string `location:"uri" locationName:"FunctionName" min:"1" type:"string" required:"true"`
- // The function that Lambda calls to begin executing your function. For Node.js,
- // it is the module-name.export value in your function.
- Handler *string `type:"string"`
- // The amount of memory, in MB, your Lambda function is given. AWS Lambda uses
- // this memory size to infer the amount of CPU allocated to your function. Your
- // function use-case determines your CPU and memory requirements. For example,
- // a database operation might need less memory compared to an image processing
- // function. The default value is 128 MB. The value must be a multiple of 64
- // MB.
- MemorySize *int64 `min:"128" type:"integer"`
- // The Amazon Resource Name (ARN) of the IAM role that Lambda will assume when
- // it executes your function.
- Role *string `type:"string"`
- // The runtime environment for the Lambda function.
- //
- // To use the Node.js runtime v4.3, set the value to "nodejs4.3". To use earlier
- // runtime (v0.10.42), set the value to "nodejs".
- Runtime *string `type:"string" enum:"Runtime"`
- // The function execution time at which AWS Lambda should terminate the function.
- // Because the execution time has cost implications, we recommend you set this
- // value based on your expected execution time. The default is 3 seconds.
- Timeout *int64 `min:"1" type:"integer"`
- // If your Lambda function accesses resources in a VPC, you provide this parameter
- // identifying the list of security group IDs and subnet IDs. These must belong
- // to the same VPC. You must provide at least one security group and one subnet
- // ID.
- VpcConfig *VpcConfig `type:"structure"`
- }
- // String returns the string representation
- func (s UpdateFunctionConfigurationInput) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s UpdateFunctionConfigurationInput) GoString() string {
- return s.String()
- }
- // Validate inspects the fields of the type to determine if they are valid.
- func (s *UpdateFunctionConfigurationInput) Validate() error {
- invalidParams := request.ErrInvalidParams{Context: "UpdateFunctionConfigurationInput"}
- if s.FunctionName == nil {
- invalidParams.Add(request.NewErrParamRequired("FunctionName"))
- }
- if s.FunctionName != nil && len(*s.FunctionName) < 1 {
- invalidParams.Add(request.NewErrParamMinLen("FunctionName", 1))
- }
- if s.MemorySize != nil && *s.MemorySize < 128 {
- invalidParams.Add(request.NewErrParamMinValue("MemorySize", 128))
- }
- if s.Timeout != nil && *s.Timeout < 1 {
- invalidParams.Add(request.NewErrParamMinValue("Timeout", 1))
- }
- if invalidParams.Len() > 0 {
- return invalidParams
- }
- return nil
- }
- // If your Lambda function accesses resources in a VPC, you provide this parameter
- // identifying the list of security group IDs and subnet IDs. These must belong
- // to the same VPC. You must provide at least one security group and one subnet
- // ID.
- type VpcConfig struct {
- _ struct{} `type:"structure"`
- // A list of one or more security groups IDs in your VPC.
- SecurityGroupIds []*string `type:"list"`
- // A list of one or more subnet IDs in your VPC.
- SubnetIds []*string `type:"list"`
- }
- // String returns the string representation
- func (s VpcConfig) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s VpcConfig) GoString() string {
- return s.String()
- }
- // VPC configuration associated with your Lambda function.
- type VpcConfigResponse struct {
- _ struct{} `type:"structure"`
- // A list of security group IDs associated with the Lambda function.
- SecurityGroupIds []*string `type:"list"`
- // A list of subnet IDs associated with the Lambda function.
- SubnetIds []*string `type:"list"`
- // The VPC ID associated with you Lambda function.
- VpcId *string `type:"string"`
- }
- // String returns the string representation
- func (s VpcConfigResponse) String() string {
- return awsutil.Prettify(s)
- }
- // GoString returns the string representation
- func (s VpcConfigResponse) GoString() string {
- return s.String()
- }
- const (
- // @enum EventSourcePosition
- EventSourcePositionTrimHorizon = "TRIM_HORIZON"
- // @enum EventSourcePosition
- EventSourcePositionLatest = "LATEST"
- )
- const (
- // @enum InvocationType
- InvocationTypeEvent = "Event"
- // @enum InvocationType
- InvocationTypeRequestResponse = "RequestResponse"
- // @enum InvocationType
- InvocationTypeDryRun = "DryRun"
- )
- const (
- // @enum LogType
- LogTypeNone = "None"
- // @enum LogType
- LogTypeTail = "Tail"
- )
- const (
- // @enum Runtime
- RuntimeNodejs = "nodejs"
- // @enum Runtime
- RuntimeNodejs43 = "nodejs4.3"
- // @enum Runtime
- RuntimeJava8 = "java8"
- // @enum Runtime
- RuntimePython27 = "python2.7"
- )
- const (
- // @enum ThrottleReason
- ThrottleReasonConcurrentInvocationLimitExceeded = "ConcurrentInvocationLimitExceeded"
- // @enum ThrottleReason
- ThrottleReasonFunctionInvocationRateLimitExceeded = "FunctionInvocationRateLimitExceeded"
- // @enum ThrottleReason
- ThrottleReasonCallerRateLimitExceeded = "CallerRateLimitExceeded"
- )
|