| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977 |
- {
- "version":"2.0",
- "metadata":{
- "apiVersion":"2014-12-12",
- "endpointPrefix":"machinelearning",
- "jsonVersion":"1.1",
- "serviceFullName":"Amazon Machine Learning",
- "signatureVersion":"v4",
- "targetPrefix":"AmazonML_20141212",
- "protocol":"json"
- },
- "operations":{
- "AddTags":{
- "name":"AddTags",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"AddTagsInput"},
- "output":{"shape":"AddTagsOutput"},
- "errors":[
- {
- "shape":"InvalidInputException",
- "error":{"httpStatusCode":400},
- "exception":true
- },
- {
- "shape":"InvalidTagException",
- "exception":true
- },
- {
- "shape":"TagLimitExceededException",
- "exception":true
- },
- {
- "shape":"ResourceNotFoundException",
- "error":{"httpStatusCode":404},
- "exception":true
- },
- {
- "shape":"InternalServerException",
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- }
- ]
- },
- "CreateBatchPrediction":{
- "name":"CreateBatchPrediction",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"CreateBatchPredictionInput"},
- "output":{"shape":"CreateBatchPredictionOutput"},
- "errors":[
- {
- "shape":"InvalidInputException",
- "error":{"httpStatusCode":400},
- "exception":true
- },
- {
- "shape":"InternalServerException",
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- },
- {
- "shape":"IdempotentParameterMismatchException",
- "error":{"httpStatusCode":400},
- "exception":true
- }
- ]
- },
- "CreateDataSourceFromRDS":{
- "name":"CreateDataSourceFromRDS",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"CreateDataSourceFromRDSInput"},
- "output":{"shape":"CreateDataSourceFromRDSOutput"},
- "errors":[
- {
- "shape":"InvalidInputException",
- "error":{"httpStatusCode":400},
- "exception":true
- },
- {
- "shape":"InternalServerException",
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- },
- {
- "shape":"IdempotentParameterMismatchException",
- "error":{"httpStatusCode":400},
- "exception":true
- }
- ]
- },
- "CreateDataSourceFromRedshift":{
- "name":"CreateDataSourceFromRedshift",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"CreateDataSourceFromRedshiftInput"},
- "output":{"shape":"CreateDataSourceFromRedshiftOutput"},
- "errors":[
- {
- "shape":"InvalidInputException",
- "error":{"httpStatusCode":400},
- "exception":true
- },
- {
- "shape":"InternalServerException",
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- },
- {
- "shape":"IdempotentParameterMismatchException",
- "error":{"httpStatusCode":400},
- "exception":true
- }
- ]
- },
- "CreateDataSourceFromS3":{
- "name":"CreateDataSourceFromS3",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"CreateDataSourceFromS3Input"},
- "output":{"shape":"CreateDataSourceFromS3Output"},
- "errors":[
- {
- "shape":"InvalidInputException",
- "error":{"httpStatusCode":400},
- "exception":true
- },
- {
- "shape":"InternalServerException",
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- },
- {
- "shape":"IdempotentParameterMismatchException",
- "error":{"httpStatusCode":400},
- "exception":true
- }
- ]
- },
- "CreateEvaluation":{
- "name":"CreateEvaluation",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"CreateEvaluationInput"},
- "output":{"shape":"CreateEvaluationOutput"},
- "errors":[
- {
- "shape":"InvalidInputException",
- "error":{"httpStatusCode":400},
- "exception":true
- },
- {
- "shape":"InternalServerException",
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- },
- {
- "shape":"IdempotentParameterMismatchException",
- "error":{"httpStatusCode":400},
- "exception":true
- }
- ]
- },
- "CreateMLModel":{
- "name":"CreateMLModel",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"CreateMLModelInput"},
- "output":{"shape":"CreateMLModelOutput"},
- "errors":[
- {
- "shape":"InvalidInputException",
- "error":{"httpStatusCode":400},
- "exception":true
- },
- {
- "shape":"InternalServerException",
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- },
- {
- "shape":"IdempotentParameterMismatchException",
- "error":{"httpStatusCode":400},
- "exception":true
- }
- ]
- },
- "CreateRealtimeEndpoint":{
- "name":"CreateRealtimeEndpoint",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"CreateRealtimeEndpointInput"},
- "output":{"shape":"CreateRealtimeEndpointOutput"},
- "errors":[
- {
- "shape":"InvalidInputException",
- "error":{"httpStatusCode":400},
- "exception":true
- },
- {
- "shape":"ResourceNotFoundException",
- "error":{"httpStatusCode":404},
- "exception":true
- },
- {
- "shape":"InternalServerException",
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- }
- ]
- },
- "DeleteBatchPrediction":{
- "name":"DeleteBatchPrediction",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"DeleteBatchPredictionInput"},
- "output":{"shape":"DeleteBatchPredictionOutput"},
- "errors":[
- {
- "shape":"InvalidInputException",
- "error":{"httpStatusCode":400},
- "exception":true
- },
- {
- "shape":"ResourceNotFoundException",
- "error":{"httpStatusCode":404},
- "exception":true
- },
- {
- "shape":"InternalServerException",
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- }
- ]
- },
- "DeleteDataSource":{
- "name":"DeleteDataSource",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"DeleteDataSourceInput"},
- "output":{"shape":"DeleteDataSourceOutput"},
- "errors":[
- {
- "shape":"InvalidInputException",
- "error":{"httpStatusCode":400},
- "exception":true
- },
- {
- "shape":"ResourceNotFoundException",
- "error":{"httpStatusCode":404},
- "exception":true
- },
- {
- "shape":"InternalServerException",
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- }
- ]
- },
- "DeleteEvaluation":{
- "name":"DeleteEvaluation",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"DeleteEvaluationInput"},
- "output":{"shape":"DeleteEvaluationOutput"},
- "errors":[
- {
- "shape":"InvalidInputException",
- "error":{"httpStatusCode":400},
- "exception":true
- },
- {
- "shape":"ResourceNotFoundException",
- "error":{"httpStatusCode":404},
- "exception":true
- },
- {
- "shape":"InternalServerException",
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- }
- ]
- },
- "DeleteMLModel":{
- "name":"DeleteMLModel",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"DeleteMLModelInput"},
- "output":{"shape":"DeleteMLModelOutput"},
- "errors":[
- {
- "shape":"InvalidInputException",
- "error":{"httpStatusCode":400},
- "exception":true
- },
- {
- "shape":"ResourceNotFoundException",
- "error":{"httpStatusCode":404},
- "exception":true
- },
- {
- "shape":"InternalServerException",
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- }
- ]
- },
- "DeleteRealtimeEndpoint":{
- "name":"DeleteRealtimeEndpoint",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"DeleteRealtimeEndpointInput"},
- "output":{"shape":"DeleteRealtimeEndpointOutput"},
- "errors":[
- {
- "shape":"InvalidInputException",
- "error":{"httpStatusCode":400},
- "exception":true
- },
- {
- "shape":"ResourceNotFoundException",
- "error":{"httpStatusCode":404},
- "exception":true
- },
- {
- "shape":"InternalServerException",
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- }
- ]
- },
- "DeleteTags":{
- "name":"DeleteTags",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"DeleteTagsInput"},
- "output":{"shape":"DeleteTagsOutput"},
- "errors":[
- {
- "shape":"InvalidInputException",
- "error":{"httpStatusCode":400},
- "exception":true
- },
- {
- "shape":"InvalidTagException",
- "exception":true
- },
- {
- "shape":"ResourceNotFoundException",
- "error":{"httpStatusCode":404},
- "exception":true
- },
- {
- "shape":"InternalServerException",
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- }
- ]
- },
- "DescribeBatchPredictions":{
- "name":"DescribeBatchPredictions",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"DescribeBatchPredictionsInput"},
- "output":{"shape":"DescribeBatchPredictionsOutput"},
- "errors":[
- {
- "shape":"InvalidInputException",
- "error":{"httpStatusCode":400},
- "exception":true
- },
- {
- "shape":"InternalServerException",
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- }
- ]
- },
- "DescribeDataSources":{
- "name":"DescribeDataSources",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"DescribeDataSourcesInput"},
- "output":{"shape":"DescribeDataSourcesOutput"},
- "errors":[
- {
- "shape":"InvalidInputException",
- "error":{"httpStatusCode":400},
- "exception":true
- },
- {
- "shape":"InternalServerException",
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- }
- ]
- },
- "DescribeEvaluations":{
- "name":"DescribeEvaluations",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"DescribeEvaluationsInput"},
- "output":{"shape":"DescribeEvaluationsOutput"},
- "errors":[
- {
- "shape":"InvalidInputException",
- "error":{"httpStatusCode":400},
- "exception":true
- },
- {
- "shape":"InternalServerException",
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- }
- ]
- },
- "DescribeMLModels":{
- "name":"DescribeMLModels",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"DescribeMLModelsInput"},
- "output":{"shape":"DescribeMLModelsOutput"},
- "errors":[
- {
- "shape":"InvalidInputException",
- "error":{"httpStatusCode":400},
- "exception":true
- },
- {
- "shape":"InternalServerException",
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- }
- ]
- },
- "DescribeTags":{
- "name":"DescribeTags",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"DescribeTagsInput"},
- "output":{"shape":"DescribeTagsOutput"},
- "errors":[
- {
- "shape":"InvalidInputException",
- "error":{"httpStatusCode":400},
- "exception":true
- },
- {
- "shape":"ResourceNotFoundException",
- "error":{"httpStatusCode":404},
- "exception":true
- },
- {
- "shape":"InternalServerException",
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- }
- ]
- },
- "GetBatchPrediction":{
- "name":"GetBatchPrediction",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"GetBatchPredictionInput"},
- "output":{"shape":"GetBatchPredictionOutput"},
- "errors":[
- {
- "shape":"InvalidInputException",
- "error":{"httpStatusCode":400},
- "exception":true
- },
- {
- "shape":"ResourceNotFoundException",
- "error":{"httpStatusCode":404},
- "exception":true
- },
- {
- "shape":"InternalServerException",
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- }
- ]
- },
- "GetDataSource":{
- "name":"GetDataSource",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"GetDataSourceInput"},
- "output":{"shape":"GetDataSourceOutput"},
- "errors":[
- {
- "shape":"InvalidInputException",
- "error":{"httpStatusCode":400},
- "exception":true
- },
- {
- "shape":"ResourceNotFoundException",
- "error":{"httpStatusCode":404},
- "exception":true
- },
- {
- "shape":"InternalServerException",
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- }
- ]
- },
- "GetEvaluation":{
- "name":"GetEvaluation",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"GetEvaluationInput"},
- "output":{"shape":"GetEvaluationOutput"},
- "errors":[
- {
- "shape":"InvalidInputException",
- "error":{"httpStatusCode":400},
- "exception":true
- },
- {
- "shape":"ResourceNotFoundException",
- "error":{"httpStatusCode":404},
- "exception":true
- },
- {
- "shape":"InternalServerException",
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- }
- ]
- },
- "GetMLModel":{
- "name":"GetMLModel",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"GetMLModelInput"},
- "output":{"shape":"GetMLModelOutput"},
- "errors":[
- {
- "shape":"InvalidInputException",
- "error":{"httpStatusCode":400},
- "exception":true
- },
- {
- "shape":"ResourceNotFoundException",
- "error":{"httpStatusCode":404},
- "exception":true
- },
- {
- "shape":"InternalServerException",
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- }
- ]
- },
- "Predict":{
- "name":"Predict",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"PredictInput"},
- "output":{"shape":"PredictOutput"},
- "errors":[
- {
- "shape":"InvalidInputException",
- "error":{"httpStatusCode":400},
- "exception":true
- },
- {
- "shape":"ResourceNotFoundException",
- "error":{"httpStatusCode":404},
- "exception":true
- },
- {
- "shape":"LimitExceededException",
- "error":{"httpStatusCode":417},
- "exception":true
- },
- {
- "shape":"InternalServerException",
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- },
- {
- "shape":"PredictorNotMountedException",
- "error":{"httpStatusCode":400},
- "exception":true
- }
- ]
- },
- "UpdateBatchPrediction":{
- "name":"UpdateBatchPrediction",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"UpdateBatchPredictionInput"},
- "output":{"shape":"UpdateBatchPredictionOutput"},
- "errors":[
- {
- "shape":"InvalidInputException",
- "error":{"httpStatusCode":400},
- "exception":true
- },
- {
- "shape":"ResourceNotFoundException",
- "error":{"httpStatusCode":404},
- "exception":true
- },
- {
- "shape":"InternalServerException",
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- }
- ]
- },
- "UpdateDataSource":{
- "name":"UpdateDataSource",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"UpdateDataSourceInput"},
- "output":{"shape":"UpdateDataSourceOutput"},
- "errors":[
- {
- "shape":"InvalidInputException",
- "error":{"httpStatusCode":400},
- "exception":true
- },
- {
- "shape":"ResourceNotFoundException",
- "error":{"httpStatusCode":404},
- "exception":true
- },
- {
- "shape":"InternalServerException",
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- }
- ]
- },
- "UpdateEvaluation":{
- "name":"UpdateEvaluation",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"UpdateEvaluationInput"},
- "output":{"shape":"UpdateEvaluationOutput"},
- "errors":[
- {
- "shape":"InvalidInputException",
- "error":{"httpStatusCode":400},
- "exception":true
- },
- {
- "shape":"ResourceNotFoundException",
- "error":{"httpStatusCode":404},
- "exception":true
- },
- {
- "shape":"InternalServerException",
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- }
- ]
- },
- "UpdateMLModel":{
- "name":"UpdateMLModel",
- "http":{
- "method":"POST",
- "requestUri":"/"
- },
- "input":{"shape":"UpdateMLModelInput"},
- "output":{"shape":"UpdateMLModelOutput"},
- "errors":[
- {
- "shape":"InvalidInputException",
- "error":{"httpStatusCode":400},
- "exception":true
- },
- {
- "shape":"ResourceNotFoundException",
- "error":{"httpStatusCode":404},
- "exception":true
- },
- {
- "shape":"InternalServerException",
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- }
- ]
- }
- },
- "shapes":{
- "AddTagsInput":{
- "type":"structure",
- "required":[
- "Tags",
- "ResourceId",
- "ResourceType"
- ],
- "members":{
- "Tags":{"shape":"TagList"},
- "ResourceId":{"shape":"EntityId"},
- "ResourceType":{"shape":"TaggableResourceType"}
- }
- },
- "AddTagsOutput":{
- "type":"structure",
- "members":{
- "ResourceId":{"shape":"EntityId"},
- "ResourceType":{"shape":"TaggableResourceType"}
- }
- },
- "Algorithm":{
- "type":"string",
- "enum":["sgd"]
- },
- "AwsUserArn":{
- "type":"string",
- "pattern":"arn:aws:iam::[0-9]+:((user/.+)|(root))"
- },
- "BatchPrediction":{
- "type":"structure",
- "members":{
- "BatchPredictionId":{"shape":"EntityId"},
- "MLModelId":{"shape":"EntityId"},
- "BatchPredictionDataSourceId":{"shape":"EntityId"},
- "InputDataLocationS3":{"shape":"S3Url"},
- "CreatedByIamUser":{"shape":"AwsUserArn"},
- "CreatedAt":{"shape":"EpochTime"},
- "LastUpdatedAt":{"shape":"EpochTime"},
- "Name":{"shape":"EntityName"},
- "Status":{"shape":"EntityStatus"},
- "OutputUri":{"shape":"S3Url"},
- "Message":{"shape":"Message"},
- "ComputeTime":{"shape":"LongType"},
- "FinishedAt":{"shape":"EpochTime"},
- "StartedAt":{"shape":"EpochTime"},
- "TotalRecordCount":{"shape":"LongType"},
- "InvalidRecordCount":{"shape":"LongType"}
- }
- },
- "BatchPredictionFilterVariable":{
- "type":"string",
- "enum":[
- "CreatedAt",
- "LastUpdatedAt",
- "Status",
- "Name",
- "IAMUser",
- "MLModelId",
- "DataSourceId",
- "DataURI"
- ]
- },
- "BatchPredictions":{
- "type":"list",
- "member":{"shape":"BatchPrediction"}
- },
- "ComparatorValue":{
- "type":"string",
- "max":1024,
- "pattern":".*\\S.*|^$"
- },
- "ComputeStatistics":{"type":"boolean"},
- "CreateBatchPredictionInput":{
- "type":"structure",
- "required":[
- "BatchPredictionId",
- "MLModelId",
- "BatchPredictionDataSourceId",
- "OutputUri"
- ],
- "members":{
- "BatchPredictionId":{"shape":"EntityId"},
- "BatchPredictionName":{"shape":"EntityName"},
- "MLModelId":{"shape":"EntityId"},
- "BatchPredictionDataSourceId":{"shape":"EntityId"},
- "OutputUri":{"shape":"S3Url"}
- }
- },
- "CreateBatchPredictionOutput":{
- "type":"structure",
- "members":{
- "BatchPredictionId":{"shape":"EntityId"}
- }
- },
- "CreateDataSourceFromRDSInput":{
- "type":"structure",
- "required":[
- "DataSourceId",
- "RDSData",
- "RoleARN"
- ],
- "members":{
- "DataSourceId":{"shape":"EntityId"},
- "DataSourceName":{"shape":"EntityName"},
- "RDSData":{"shape":"RDSDataSpec"},
- "RoleARN":{"shape":"RoleARN"},
- "ComputeStatistics":{"shape":"ComputeStatistics"}
- }
- },
- "CreateDataSourceFromRDSOutput":{
- "type":"structure",
- "members":{
- "DataSourceId":{"shape":"EntityId"}
- }
- },
- "CreateDataSourceFromRedshiftInput":{
- "type":"structure",
- "required":[
- "DataSourceId",
- "DataSpec",
- "RoleARN"
- ],
- "members":{
- "DataSourceId":{"shape":"EntityId"},
- "DataSourceName":{"shape":"EntityName"},
- "DataSpec":{"shape":"RedshiftDataSpec"},
- "RoleARN":{"shape":"RoleARN"},
- "ComputeStatistics":{"shape":"ComputeStatistics"}
- }
- },
- "CreateDataSourceFromRedshiftOutput":{
- "type":"structure",
- "members":{
- "DataSourceId":{"shape":"EntityId"}
- }
- },
- "CreateDataSourceFromS3Input":{
- "type":"structure",
- "required":[
- "DataSourceId",
- "DataSpec"
- ],
- "members":{
- "DataSourceId":{"shape":"EntityId"},
- "DataSourceName":{"shape":"EntityName"},
- "DataSpec":{"shape":"S3DataSpec"},
- "ComputeStatistics":{"shape":"ComputeStatistics"}
- }
- },
- "CreateDataSourceFromS3Output":{
- "type":"structure",
- "members":{
- "DataSourceId":{"shape":"EntityId"}
- }
- },
- "CreateEvaluationInput":{
- "type":"structure",
- "required":[
- "EvaluationId",
- "MLModelId",
- "EvaluationDataSourceId"
- ],
- "members":{
- "EvaluationId":{"shape":"EntityId"},
- "EvaluationName":{"shape":"EntityName"},
- "MLModelId":{"shape":"EntityId"},
- "EvaluationDataSourceId":{"shape":"EntityId"}
- }
- },
- "CreateEvaluationOutput":{
- "type":"structure",
- "members":{
- "EvaluationId":{"shape":"EntityId"}
- }
- },
- "CreateMLModelInput":{
- "type":"structure",
- "required":[
- "MLModelId",
- "MLModelType",
- "TrainingDataSourceId"
- ],
- "members":{
- "MLModelId":{"shape":"EntityId"},
- "MLModelName":{"shape":"EntityName"},
- "MLModelType":{"shape":"MLModelType"},
- "Parameters":{"shape":"TrainingParameters"},
- "TrainingDataSourceId":{"shape":"EntityId"},
- "Recipe":{"shape":"Recipe"},
- "RecipeUri":{"shape":"S3Url"}
- }
- },
- "CreateMLModelOutput":{
- "type":"structure",
- "members":{
- "MLModelId":{"shape":"EntityId"}
- }
- },
- "CreateRealtimeEndpointInput":{
- "type":"structure",
- "required":["MLModelId"],
- "members":{
- "MLModelId":{"shape":"EntityId"}
- }
- },
- "CreateRealtimeEndpointOutput":{
- "type":"structure",
- "members":{
- "MLModelId":{"shape":"EntityId"},
- "RealtimeEndpointInfo":{"shape":"RealtimeEndpointInfo"}
- }
- },
- "DataRearrangement":{"type":"string"},
- "DataSchema":{
- "type":"string",
- "max":131071
- },
- "DataSource":{
- "type":"structure",
- "members":{
- "DataSourceId":{"shape":"EntityId"},
- "DataLocationS3":{"shape":"S3Url"},
- "DataRearrangement":{"shape":"DataRearrangement"},
- "CreatedByIamUser":{"shape":"AwsUserArn"},
- "CreatedAt":{"shape":"EpochTime"},
- "LastUpdatedAt":{"shape":"EpochTime"},
- "DataSizeInBytes":{"shape":"LongType"},
- "NumberOfFiles":{"shape":"LongType"},
- "Name":{"shape":"EntityName"},
- "Status":{"shape":"EntityStatus"},
- "Message":{"shape":"Message"},
- "RedshiftMetadata":{"shape":"RedshiftMetadata"},
- "RDSMetadata":{"shape":"RDSMetadata"},
- "RoleARN":{"shape":"RoleARN"},
- "ComputeStatistics":{"shape":"ComputeStatistics"},
- "ComputeTime":{"shape":"LongType"},
- "FinishedAt":{"shape":"EpochTime"},
- "StartedAt":{"shape":"EpochTime"}
- }
- },
- "DataSourceFilterVariable":{
- "type":"string",
- "enum":[
- "CreatedAt",
- "LastUpdatedAt",
- "Status",
- "Name",
- "DataLocationS3",
- "IAMUser"
- ]
- },
- "DataSources":{
- "type":"list",
- "member":{"shape":"DataSource"}
- },
- "DeleteBatchPredictionInput":{
- "type":"structure",
- "required":["BatchPredictionId"],
- "members":{
- "BatchPredictionId":{"shape":"EntityId"}
- }
- },
- "DeleteBatchPredictionOutput":{
- "type":"structure",
- "members":{
- "BatchPredictionId":{"shape":"EntityId"}
- }
- },
- "DeleteDataSourceInput":{
- "type":"structure",
- "required":["DataSourceId"],
- "members":{
- "DataSourceId":{"shape":"EntityId"}
- }
- },
- "DeleteDataSourceOutput":{
- "type":"structure",
- "members":{
- "DataSourceId":{"shape":"EntityId"}
- }
- },
- "DeleteEvaluationInput":{
- "type":"structure",
- "required":["EvaluationId"],
- "members":{
- "EvaluationId":{"shape":"EntityId"}
- }
- },
- "DeleteEvaluationOutput":{
- "type":"structure",
- "members":{
- "EvaluationId":{"shape":"EntityId"}
- }
- },
- "DeleteMLModelInput":{
- "type":"structure",
- "required":["MLModelId"],
- "members":{
- "MLModelId":{"shape":"EntityId"}
- }
- },
- "DeleteMLModelOutput":{
- "type":"structure",
- "members":{
- "MLModelId":{"shape":"EntityId"}
- }
- },
- "DeleteRealtimeEndpointInput":{
- "type":"structure",
- "required":["MLModelId"],
- "members":{
- "MLModelId":{"shape":"EntityId"}
- }
- },
- "DeleteRealtimeEndpointOutput":{
- "type":"structure",
- "members":{
- "MLModelId":{"shape":"EntityId"},
- "RealtimeEndpointInfo":{"shape":"RealtimeEndpointInfo"}
- }
- },
- "DeleteTagsInput":{
- "type":"structure",
- "required":[
- "TagKeys",
- "ResourceId",
- "ResourceType"
- ],
- "members":{
- "TagKeys":{"shape":"TagKeyList"},
- "ResourceId":{"shape":"EntityId"},
- "ResourceType":{"shape":"TaggableResourceType"}
- }
- },
- "DeleteTagsOutput":{
- "type":"structure",
- "members":{
- "ResourceId":{"shape":"EntityId"},
- "ResourceType":{"shape":"TaggableResourceType"}
- }
- },
- "DescribeBatchPredictionsInput":{
- "type":"structure",
- "members":{
- "FilterVariable":{"shape":"BatchPredictionFilterVariable"},
- "EQ":{"shape":"ComparatorValue"},
- "GT":{"shape":"ComparatorValue"},
- "LT":{"shape":"ComparatorValue"},
- "GE":{"shape":"ComparatorValue"},
- "LE":{"shape":"ComparatorValue"},
- "NE":{"shape":"ComparatorValue"},
- "Prefix":{"shape":"ComparatorValue"},
- "SortOrder":{"shape":"SortOrder"},
- "NextToken":{"shape":"StringType"},
- "Limit":{"shape":"PageLimit"}
- }
- },
- "DescribeBatchPredictionsOutput":{
- "type":"structure",
- "members":{
- "Results":{"shape":"BatchPredictions"},
- "NextToken":{"shape":"StringType"}
- }
- },
- "DescribeDataSourcesInput":{
- "type":"structure",
- "members":{
- "FilterVariable":{"shape":"DataSourceFilterVariable"},
- "EQ":{"shape":"ComparatorValue"},
- "GT":{"shape":"ComparatorValue"},
- "LT":{"shape":"ComparatorValue"},
- "GE":{"shape":"ComparatorValue"},
- "LE":{"shape":"ComparatorValue"},
- "NE":{"shape":"ComparatorValue"},
- "Prefix":{"shape":"ComparatorValue"},
- "SortOrder":{"shape":"SortOrder"},
- "NextToken":{"shape":"StringType"},
- "Limit":{"shape":"PageLimit"}
- }
- },
- "DescribeDataSourcesOutput":{
- "type":"structure",
- "members":{
- "Results":{"shape":"DataSources"},
- "NextToken":{"shape":"StringType"}
- }
- },
- "DescribeEvaluationsInput":{
- "type":"structure",
- "members":{
- "FilterVariable":{"shape":"EvaluationFilterVariable"},
- "EQ":{"shape":"ComparatorValue"},
- "GT":{"shape":"ComparatorValue"},
- "LT":{"shape":"ComparatorValue"},
- "GE":{"shape":"ComparatorValue"},
- "LE":{"shape":"ComparatorValue"},
- "NE":{"shape":"ComparatorValue"},
- "Prefix":{"shape":"ComparatorValue"},
- "SortOrder":{"shape":"SortOrder"},
- "NextToken":{"shape":"StringType"},
- "Limit":{"shape":"PageLimit"}
- }
- },
- "DescribeEvaluationsOutput":{
- "type":"structure",
- "members":{
- "Results":{"shape":"Evaluations"},
- "NextToken":{"shape":"StringType"}
- }
- },
- "DescribeMLModelsInput":{
- "type":"structure",
- "members":{
- "FilterVariable":{"shape":"MLModelFilterVariable"},
- "EQ":{"shape":"ComparatorValue"},
- "GT":{"shape":"ComparatorValue"},
- "LT":{"shape":"ComparatorValue"},
- "GE":{"shape":"ComparatorValue"},
- "LE":{"shape":"ComparatorValue"},
- "NE":{"shape":"ComparatorValue"},
- "Prefix":{"shape":"ComparatorValue"},
- "SortOrder":{"shape":"SortOrder"},
- "NextToken":{"shape":"StringType"},
- "Limit":{"shape":"PageLimit"}
- }
- },
- "DescribeMLModelsOutput":{
- "type":"structure",
- "members":{
- "Results":{"shape":"MLModels"},
- "NextToken":{"shape":"StringType"}
- }
- },
- "DescribeTagsInput":{
- "type":"structure",
- "required":[
- "ResourceId",
- "ResourceType"
- ],
- "members":{
- "ResourceId":{"shape":"EntityId"},
- "ResourceType":{"shape":"TaggableResourceType"}
- }
- },
- "DescribeTagsOutput":{
- "type":"structure",
- "members":{
- "ResourceId":{"shape":"EntityId"},
- "ResourceType":{"shape":"TaggableResourceType"},
- "Tags":{"shape":"TagList"}
- }
- },
- "DetailsAttributes":{
- "type":"string",
- "enum":[
- "PredictiveModelType",
- "Algorithm"
- ]
- },
- "DetailsMap":{
- "type":"map",
- "key":{"shape":"DetailsAttributes"},
- "value":{"shape":"DetailsValue"}
- },
- "DetailsValue":{
- "type":"string",
- "min":1
- },
- "EDPPipelineId":{
- "type":"string",
- "min":1,
- "max":1024
- },
- "EDPResourceRole":{
- "type":"string",
- "min":1,
- "max":64
- },
- "EDPSecurityGroupId":{
- "type":"string",
- "min":1,
- "max":255
- },
- "EDPSecurityGroupIds":{
- "type":"list",
- "member":{"shape":"EDPSecurityGroupId"}
- },
- "EDPServiceRole":{
- "type":"string",
- "min":1,
- "max":64
- },
- "EDPSubnetId":{
- "type":"string",
- "min":1,
- "max":255
- },
- "EntityId":{
- "type":"string",
- "min":1,
- "max":64,
- "pattern":"[a-zA-Z0-9_.-]+"
- },
- "EntityName":{
- "type":"string",
- "max":1024,
- "pattern":".*\\S.*|^$"
- },
- "EntityStatus":{
- "type":"string",
- "enum":[
- "PENDING",
- "INPROGRESS",
- "FAILED",
- "COMPLETED",
- "DELETED"
- ]
- },
- "EpochTime":{"type":"timestamp"},
- "ErrorCode":{"type":"integer"},
- "ErrorMessage":{
- "type":"string",
- "max":2048
- },
- "Evaluation":{
- "type":"structure",
- "members":{
- "EvaluationId":{"shape":"EntityId"},
- "MLModelId":{"shape":"EntityId"},
- "EvaluationDataSourceId":{"shape":"EntityId"},
- "InputDataLocationS3":{"shape":"S3Url"},
- "CreatedByIamUser":{"shape":"AwsUserArn"},
- "CreatedAt":{"shape":"EpochTime"},
- "LastUpdatedAt":{"shape":"EpochTime"},
- "Name":{"shape":"EntityName"},
- "Status":{"shape":"EntityStatus"},
- "PerformanceMetrics":{"shape":"PerformanceMetrics"},
- "Message":{"shape":"Message"},
- "ComputeTime":{"shape":"LongType"},
- "FinishedAt":{"shape":"EpochTime"},
- "StartedAt":{"shape":"EpochTime"}
- }
- },
- "EvaluationFilterVariable":{
- "type":"string",
- "enum":[
- "CreatedAt",
- "LastUpdatedAt",
- "Status",
- "Name",
- "IAMUser",
- "MLModelId",
- "DataSourceId",
- "DataURI"
- ]
- },
- "Evaluations":{
- "type":"list",
- "member":{"shape":"Evaluation"}
- },
- "GetBatchPredictionInput":{
- "type":"structure",
- "required":["BatchPredictionId"],
- "members":{
- "BatchPredictionId":{"shape":"EntityId"}
- }
- },
- "GetBatchPredictionOutput":{
- "type":"structure",
- "members":{
- "BatchPredictionId":{"shape":"EntityId"},
- "MLModelId":{"shape":"EntityId"},
- "BatchPredictionDataSourceId":{"shape":"EntityId"},
- "InputDataLocationS3":{"shape":"S3Url"},
- "CreatedByIamUser":{"shape":"AwsUserArn"},
- "CreatedAt":{"shape":"EpochTime"},
- "LastUpdatedAt":{"shape":"EpochTime"},
- "Name":{"shape":"EntityName"},
- "Status":{"shape":"EntityStatus"},
- "OutputUri":{"shape":"S3Url"},
- "LogUri":{"shape":"PresignedS3Url"},
- "Message":{"shape":"Message"},
- "ComputeTime":{"shape":"LongType"},
- "FinishedAt":{"shape":"EpochTime"},
- "StartedAt":{"shape":"EpochTime"},
- "TotalRecordCount":{"shape":"LongType"},
- "InvalidRecordCount":{"shape":"LongType"}
- }
- },
- "GetDataSourceInput":{
- "type":"structure",
- "required":["DataSourceId"],
- "members":{
- "DataSourceId":{"shape":"EntityId"},
- "Verbose":{"shape":"Verbose"}
- }
- },
- "GetDataSourceOutput":{
- "type":"structure",
- "members":{
- "DataSourceId":{"shape":"EntityId"},
- "DataLocationS3":{"shape":"S3Url"},
- "DataRearrangement":{"shape":"DataRearrangement"},
- "CreatedByIamUser":{"shape":"AwsUserArn"},
- "CreatedAt":{"shape":"EpochTime"},
- "LastUpdatedAt":{"shape":"EpochTime"},
- "DataSizeInBytes":{"shape":"LongType"},
- "NumberOfFiles":{"shape":"LongType"},
- "Name":{"shape":"EntityName"},
- "Status":{"shape":"EntityStatus"},
- "LogUri":{"shape":"PresignedS3Url"},
- "Message":{"shape":"Message"},
- "RedshiftMetadata":{"shape":"RedshiftMetadata"},
- "RDSMetadata":{"shape":"RDSMetadata"},
- "RoleARN":{"shape":"RoleARN"},
- "ComputeStatistics":{"shape":"ComputeStatistics"},
- "ComputeTime":{"shape":"LongType"},
- "FinishedAt":{"shape":"EpochTime"},
- "StartedAt":{"shape":"EpochTime"},
- "DataSourceSchema":{"shape":"DataSchema"}
- }
- },
- "GetEvaluationInput":{
- "type":"structure",
- "required":["EvaluationId"],
- "members":{
- "EvaluationId":{"shape":"EntityId"}
- }
- },
- "GetEvaluationOutput":{
- "type":"structure",
- "members":{
- "EvaluationId":{"shape":"EntityId"},
- "MLModelId":{"shape":"EntityId"},
- "EvaluationDataSourceId":{"shape":"EntityId"},
- "InputDataLocationS3":{"shape":"S3Url"},
- "CreatedByIamUser":{"shape":"AwsUserArn"},
- "CreatedAt":{"shape":"EpochTime"},
- "LastUpdatedAt":{"shape":"EpochTime"},
- "Name":{"shape":"EntityName"},
- "Status":{"shape":"EntityStatus"},
- "PerformanceMetrics":{"shape":"PerformanceMetrics"},
- "LogUri":{"shape":"PresignedS3Url"},
- "Message":{"shape":"Message"},
- "ComputeTime":{"shape":"LongType"},
- "FinishedAt":{"shape":"EpochTime"},
- "StartedAt":{"shape":"EpochTime"}
- }
- },
- "GetMLModelInput":{
- "type":"structure",
- "required":["MLModelId"],
- "members":{
- "MLModelId":{"shape":"EntityId"},
- "Verbose":{"shape":"Verbose"}
- }
- },
- "GetMLModelOutput":{
- "type":"structure",
- "members":{
- "MLModelId":{"shape":"EntityId"},
- "TrainingDataSourceId":{"shape":"EntityId"},
- "CreatedByIamUser":{"shape":"AwsUserArn"},
- "CreatedAt":{"shape":"EpochTime"},
- "LastUpdatedAt":{"shape":"EpochTime"},
- "Name":{"shape":"MLModelName"},
- "Status":{"shape":"EntityStatus"},
- "SizeInBytes":{"shape":"LongType"},
- "EndpointInfo":{"shape":"RealtimeEndpointInfo"},
- "TrainingParameters":{"shape":"TrainingParameters"},
- "InputDataLocationS3":{"shape":"S3Url"},
- "MLModelType":{"shape":"MLModelType"},
- "ScoreThreshold":{"shape":"ScoreThreshold"},
- "ScoreThresholdLastUpdatedAt":{"shape":"EpochTime"},
- "LogUri":{"shape":"PresignedS3Url"},
- "Message":{"shape":"Message"},
- "ComputeTime":{"shape":"LongType"},
- "FinishedAt":{"shape":"EpochTime"},
- "StartedAt":{"shape":"EpochTime"},
- "Recipe":{"shape":"Recipe"},
- "Schema":{"shape":"DataSchema"}
- }
- },
- "IdempotentParameterMismatchException":{
- "type":"structure",
- "members":{
- "message":{"shape":"ErrorMessage"},
- "code":{"shape":"ErrorCode"}
- },
- "error":{"httpStatusCode":400},
- "exception":true
- },
- "IntegerType":{"type":"integer"},
- "InternalServerException":{
- "type":"structure",
- "members":{
- "message":{"shape":"ErrorMessage"},
- "code":{"shape":"ErrorCode"}
- },
- "error":{"httpStatusCode":500},
- "exception":true,
- "fault":true
- },
- "InvalidInputException":{
- "type":"structure",
- "members":{
- "message":{"shape":"ErrorMessage"},
- "code":{"shape":"ErrorCode"}
- },
- "error":{"httpStatusCode":400},
- "exception":true
- },
- "InvalidTagException":{
- "type":"structure",
- "members":{
- "message":{"shape":"ErrorMessage"}
- },
- "exception":true
- },
- "Label":{
- "type":"string",
- "min":1
- },
- "LimitExceededException":{
- "type":"structure",
- "members":{
- "message":{"shape":"ErrorMessage"},
- "code":{"shape":"ErrorCode"}
- },
- "error":{"httpStatusCode":417},
- "exception":true
- },
- "LongType":{"type":"long"},
- "MLModel":{
- "type":"structure",
- "members":{
- "MLModelId":{"shape":"EntityId"},
- "TrainingDataSourceId":{"shape":"EntityId"},
- "CreatedByIamUser":{"shape":"AwsUserArn"},
- "CreatedAt":{"shape":"EpochTime"},
- "LastUpdatedAt":{"shape":"EpochTime"},
- "Name":{"shape":"MLModelName"},
- "Status":{"shape":"EntityStatus"},
- "SizeInBytes":{"shape":"LongType"},
- "EndpointInfo":{"shape":"RealtimeEndpointInfo"},
- "TrainingParameters":{"shape":"TrainingParameters"},
- "InputDataLocationS3":{"shape":"S3Url"},
- "Algorithm":{"shape":"Algorithm"},
- "MLModelType":{"shape":"MLModelType"},
- "ScoreThreshold":{"shape":"ScoreThreshold"},
- "ScoreThresholdLastUpdatedAt":{"shape":"EpochTime"},
- "Message":{"shape":"Message"},
- "ComputeTime":{"shape":"LongType"},
- "FinishedAt":{"shape":"EpochTime"},
- "StartedAt":{"shape":"EpochTime"}
- }
- },
- "MLModelFilterVariable":{
- "type":"string",
- "enum":[
- "CreatedAt",
- "LastUpdatedAt",
- "Status",
- "Name",
- "IAMUser",
- "TrainingDataSourceId",
- "RealtimeEndpointStatus",
- "MLModelType",
- "Algorithm",
- "TrainingDataURI"
- ]
- },
- "MLModelName":{
- "type":"string",
- "max":1024
- },
- "MLModelType":{
- "type":"string",
- "enum":[
- "REGRESSION",
- "BINARY",
- "MULTICLASS"
- ]
- },
- "MLModels":{
- "type":"list",
- "member":{"shape":"MLModel"}
- },
- "Message":{
- "type":"string",
- "max":10240
- },
- "PageLimit":{
- "type":"integer",
- "min":1,
- "max":100
- },
- "PerformanceMetrics":{
- "type":"structure",
- "members":{
- "Properties":{"shape":"PerformanceMetricsProperties"}
- }
- },
- "PerformanceMetricsProperties":{
- "type":"map",
- "key":{"shape":"PerformanceMetricsPropertyKey"},
- "value":{"shape":"PerformanceMetricsPropertyValue"}
- },
- "PerformanceMetricsPropertyKey":{"type":"string"},
- "PerformanceMetricsPropertyValue":{"type":"string"},
- "PredictInput":{
- "type":"structure",
- "required":[
- "MLModelId",
- "Record",
- "PredictEndpoint"
- ],
- "members":{
- "MLModelId":{"shape":"EntityId"},
- "Record":{"shape":"Record"},
- "PredictEndpoint":{"shape":"VipURL"}
- }
- },
- "PredictOutput":{
- "type":"structure",
- "members":{
- "Prediction":{"shape":"Prediction"}
- }
- },
- "Prediction":{
- "type":"structure",
- "members":{
- "predictedLabel":{"shape":"Label"},
- "predictedValue":{"shape":"floatLabel"},
- "predictedScores":{"shape":"ScoreValuePerLabelMap"},
- "details":{"shape":"DetailsMap"}
- }
- },
- "PredictorNotMountedException":{
- "type":"structure",
- "members":{
- "message":{"shape":"ErrorMessage"}
- },
- "error":{"httpStatusCode":400},
- "exception":true
- },
- "PresignedS3Url":{"type":"string"},
- "RDSDataSpec":{
- "type":"structure",
- "required":[
- "DatabaseInformation",
- "SelectSqlQuery",
- "DatabaseCredentials",
- "S3StagingLocation",
- "ResourceRole",
- "ServiceRole",
- "SubnetId",
- "SecurityGroupIds"
- ],
- "members":{
- "DatabaseInformation":{"shape":"RDSDatabase"},
- "SelectSqlQuery":{"shape":"RDSSelectSqlQuery"},
- "DatabaseCredentials":{"shape":"RDSDatabaseCredentials"},
- "S3StagingLocation":{"shape":"S3Url"},
- "DataRearrangement":{"shape":"DataRearrangement"},
- "DataSchema":{"shape":"DataSchema"},
- "DataSchemaUri":{"shape":"S3Url"},
- "ResourceRole":{"shape":"EDPResourceRole"},
- "ServiceRole":{"shape":"EDPServiceRole"},
- "SubnetId":{"shape":"EDPSubnetId"},
- "SecurityGroupIds":{"shape":"EDPSecurityGroupIds"}
- }
- },
- "RDSDatabase":{
- "type":"structure",
- "required":[
- "InstanceIdentifier",
- "DatabaseName"
- ],
- "members":{
- "InstanceIdentifier":{"shape":"RDSInstanceIdentifier"},
- "DatabaseName":{"shape":"RDSDatabaseName"}
- }
- },
- "RDSDatabaseCredentials":{
- "type":"structure",
- "required":[
- "Username",
- "Password"
- ],
- "members":{
- "Username":{"shape":"RDSDatabaseUsername"},
- "Password":{"shape":"RDSDatabasePassword"}
- }
- },
- "RDSDatabaseName":{
- "type":"string",
- "min":1,
- "max":64
- },
- "RDSDatabasePassword":{
- "type":"string",
- "min":8,
- "max":128
- },
- "RDSDatabaseUsername":{
- "type":"string",
- "min":1,
- "max":128
- },
- "RDSInstanceIdentifier":{
- "type":"string",
- "min":1,
- "max":63,
- "pattern":"[a-z0-9-]+"
- },
- "RDSMetadata":{
- "type":"structure",
- "members":{
- "Database":{"shape":"RDSDatabase"},
- "DatabaseUserName":{"shape":"RDSDatabaseUsername"},
- "SelectSqlQuery":{"shape":"RDSSelectSqlQuery"},
- "ResourceRole":{"shape":"EDPResourceRole"},
- "ServiceRole":{"shape":"EDPServiceRole"},
- "DataPipelineId":{"shape":"EDPPipelineId"}
- }
- },
- "RDSSelectSqlQuery":{
- "type":"string",
- "min":1,
- "max":16777216
- },
- "RealtimeEndpointInfo":{
- "type":"structure",
- "members":{
- "PeakRequestsPerSecond":{"shape":"IntegerType"},
- "CreatedAt":{"shape":"EpochTime"},
- "EndpointUrl":{"shape":"VipURL"},
- "EndpointStatus":{"shape":"RealtimeEndpointStatus"}
- }
- },
- "RealtimeEndpointStatus":{
- "type":"string",
- "enum":[
- "NONE",
- "READY",
- "UPDATING",
- "FAILED"
- ]
- },
- "Recipe":{
- "type":"string",
- "max":131071
- },
- "Record":{
- "type":"map",
- "key":{"shape":"VariableName"},
- "value":{"shape":"VariableValue"}
- },
- "RedshiftClusterIdentifier":{
- "type":"string",
- "min":1,
- "max":63,
- "pattern":"[a-z0-9-]+"
- },
- "RedshiftDataSpec":{
- "type":"structure",
- "required":[
- "DatabaseInformation",
- "SelectSqlQuery",
- "DatabaseCredentials",
- "S3StagingLocation"
- ],
- "members":{
- "DatabaseInformation":{"shape":"RedshiftDatabase"},
- "SelectSqlQuery":{"shape":"RedshiftSelectSqlQuery"},
- "DatabaseCredentials":{"shape":"RedshiftDatabaseCredentials"},
- "S3StagingLocation":{"shape":"S3Url"},
- "DataRearrangement":{"shape":"DataRearrangement"},
- "DataSchema":{"shape":"DataSchema"},
- "DataSchemaUri":{"shape":"S3Url"}
- }
- },
- "RedshiftDatabase":{
- "type":"structure",
- "required":[
- "DatabaseName",
- "ClusterIdentifier"
- ],
- "members":{
- "DatabaseName":{"shape":"RedshiftDatabaseName"},
- "ClusterIdentifier":{"shape":"RedshiftClusterIdentifier"}
- }
- },
- "RedshiftDatabaseCredentials":{
- "type":"structure",
- "required":[
- "Username",
- "Password"
- ],
- "members":{
- "Username":{"shape":"RedshiftDatabaseUsername"},
- "Password":{"shape":"RedshiftDatabasePassword"}
- }
- },
- "RedshiftDatabaseName":{
- "type":"string",
- "min":1,
- "max":64,
- "pattern":"[a-z0-9]+"
- },
- "RedshiftDatabasePassword":{
- "type":"string",
- "min":8,
- "max":64
- },
- "RedshiftDatabaseUsername":{
- "type":"string",
- "min":1,
- "max":128
- },
- "RedshiftMetadata":{
- "type":"structure",
- "members":{
- "RedshiftDatabase":{"shape":"RedshiftDatabase"},
- "DatabaseUserName":{"shape":"RedshiftDatabaseUsername"},
- "SelectSqlQuery":{"shape":"RedshiftSelectSqlQuery"}
- }
- },
- "RedshiftSelectSqlQuery":{
- "type":"string",
- "min":1,
- "max":16777216
- },
- "ResourceNotFoundException":{
- "type":"structure",
- "members":{
- "message":{"shape":"ErrorMessage"},
- "code":{"shape":"ErrorCode"}
- },
- "error":{"httpStatusCode":404},
- "exception":true
- },
- "RoleARN":{
- "type":"string",
- "min":1,
- "max":110
- },
- "S3DataSpec":{
- "type":"structure",
- "required":["DataLocationS3"],
- "members":{
- "DataLocationS3":{"shape":"S3Url"},
- "DataRearrangement":{"shape":"DataRearrangement"},
- "DataSchema":{"shape":"DataSchema"},
- "DataSchemaLocationS3":{"shape":"S3Url"}
- }
- },
- "S3Url":{
- "type":"string",
- "max":2048,
- "pattern":"s3://([^/]+)(/.*)?"
- },
- "ScoreThreshold":{"type":"float"},
- "ScoreValue":{"type":"float"},
- "ScoreValuePerLabelMap":{
- "type":"map",
- "key":{"shape":"Label"},
- "value":{"shape":"ScoreValue"}
- },
- "SortOrder":{
- "type":"string",
- "enum":[
- "asc",
- "dsc"
- ]
- },
- "StringType":{"type":"string"},
- "Tag":{
- "type":"structure",
- "members":{
- "Key":{"shape":"TagKey"},
- "Value":{"shape":"TagValue"}
- }
- },
- "TagKey":{
- "type":"string",
- "min":1,
- "max":128,
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
- },
- "TagKeyList":{
- "type":"list",
- "member":{"shape":"TagKey"},
- "max":100
- },
- "TagLimitExceededException":{
- "type":"structure",
- "members":{
- "message":{"shape":"ErrorMessage"}
- },
- "exception":true
- },
- "TagList":{
- "type":"list",
- "member":{"shape":"Tag"},
- "max":100
- },
- "TagValue":{
- "type":"string",
- "min":0,
- "max":256,
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
- },
- "TaggableResourceType":{
- "type":"string",
- "enum":[
- "BatchPrediction",
- "DataSource",
- "Evaluation",
- "MLModel"
- ]
- },
- "TrainingParameters":{
- "type":"map",
- "key":{"shape":"StringType"},
- "value":{"shape":"StringType"}
- },
- "UpdateBatchPredictionInput":{
- "type":"structure",
- "required":[
- "BatchPredictionId",
- "BatchPredictionName"
- ],
- "members":{
- "BatchPredictionId":{"shape":"EntityId"},
- "BatchPredictionName":{"shape":"EntityName"}
- }
- },
- "UpdateBatchPredictionOutput":{
- "type":"structure",
- "members":{
- "BatchPredictionId":{"shape":"EntityId"}
- }
- },
- "UpdateDataSourceInput":{
- "type":"structure",
- "required":[
- "DataSourceId",
- "DataSourceName"
- ],
- "members":{
- "DataSourceId":{"shape":"EntityId"},
- "DataSourceName":{"shape":"EntityName"}
- }
- },
- "UpdateDataSourceOutput":{
- "type":"structure",
- "members":{
- "DataSourceId":{"shape":"EntityId"}
- }
- },
- "UpdateEvaluationInput":{
- "type":"structure",
- "required":[
- "EvaluationId",
- "EvaluationName"
- ],
- "members":{
- "EvaluationId":{"shape":"EntityId"},
- "EvaluationName":{"shape":"EntityName"}
- }
- },
- "UpdateEvaluationOutput":{
- "type":"structure",
- "members":{
- "EvaluationId":{"shape":"EntityId"}
- }
- },
- "UpdateMLModelInput":{
- "type":"structure",
- "required":["MLModelId"],
- "members":{
- "MLModelId":{"shape":"EntityId"},
- "MLModelName":{"shape":"EntityName"},
- "ScoreThreshold":{"shape":"ScoreThreshold"}
- }
- },
- "UpdateMLModelOutput":{
- "type":"structure",
- "members":{
- "MLModelId":{"shape":"EntityId"}
- }
- },
- "VariableName":{"type":"string"},
- "VariableValue":{"type":"string"},
- "Verbose":{"type":"boolean"},
- "VipURL":{
- "type":"string",
- "max":2048,
- "pattern":"https://[a-zA-Z0-9-.]*\\.amazon(aws)?\\.com[/]?"
- },
- "floatLabel":{"type":"float"}
- }
- }
|