forked from aws-amplify/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.spelling
1012 lines (944 loc) · 13.4 KB
/
.spelling
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
aws-amplify
aws-amplify-vue
aws-amplify-react
aws-amplify-react-native
aws-amplify-angular
@aws-amplify/core
@aws-amplify/auth
@aws-amplify/storage
aws-mobile-appsync-sdk-ios
apiKey
App.vue
app.js
authMode
APIs
AmplifyAngularModule
AmplifyIonicModule
AmplifyService
AmplifyEventBus
AmplifyPlugin
Auth0
Authenticator
aws_bots_config.name
aws-exports
analytics
arraybuffer
backend
botTitle
cli
callout
callout--info
dropdown
Ctrl-c
cordova
clearComplete
Cognito
clearComplete
chatbot
ConfirmSignUp
ConfirmSignIn
DynamoDB
e.g.
EventBus
electron
electron.js
ForgotPassword
frontend
GraphQL
global.scss
getitems
github
HOCs
installable
i.e.
iam
ios
item.class.ts
index.js
lifecycle
md
Multifactor
myPublicPrefix,
myPrivatePrefix,
main.js
NoSQL
NoteId
NoteTitle
NoteContent
npm
node.js
oidc
onPick
pre-signed
pre-built
programmatically
repo
src
stylesheet
serverless
Route53
SetMFA
signout
signin
signup
s3AlbumConfig
storageOptions
Storage.put
Storage.get
theListFunction
todo
todolist
todoitem
list.page.ts
list.page.html
list.page.scss
list.module.ts
tabs.router.module
tabs.page.html
main.ts
ui
userid
Vue
Vue.js
PhotoPicker
S3Album
S3Image
S3Text
webview
XR.start
isSceneLoaded
isMuted
autoplay
screencap
userPools
unpublish
withAuthenticator
webview
*.js
600px
v2.0
SQLite
listPosts
getPost
ROOT_QUERY
ROOT_QUERY.listPosts
ROOT_QUERY.getPost
Pancho
Authorizer
authorizer
xyz123useamplifyabcdClient.swift
Client.swift
YOUR_API_RESOURCE_NAME
enqueued
xcodeproj
png
jpg
UIColor
jsx
deltaRecord
backoff
resubscription
backends
AuthN
AuthZ
lifecycles
Bundler
prepend
prepended
# js/tutorials/building-ionic-4-apps/index.md
home.page.ts
home.page.html
tabs.module.ts
AuthGuardService
list.item.modal.ts
list.item.modal.html
ListItemModal
entryComponent
index.html
home.module.ts
home.page.html
home.page.ts
todoitems
entryComponents
# js/predictions.md
Textract
SageMaker
websocket
pre-defined
urls
checkboxes
# js/storage.md
userfiles-mobilehub
AllowedOrigin
user_identity_id
use
a_b
filename
mypublicprefix
myprivateprefix
CRUD
# js/start.md
codegen
8.x
8.11.x
5.x
webpack
camelCase
angular-cli
v25.0.0
_new
myangularapp
js
tsconfig
myAmplifyProject
_blank
OnInit
todos
autolinking
# js/hub.md
onHubCapsule
pubsub
xr
MobX
# js/service-workers.md
ServiceWorker
postMessage
# js/react.md
CloudFormation
CloudFront
Elasticsearch
schemas
pre-annotated
AppSync
myapi
GSIs
# js/push-notifications.md
Xcode
com.myProjectName
build.gradle
classpath
google.gms
buildscript
libs
AndroidManifest.xml
p12
myapp.xcodeproj
AppDelegate.m
Unselect
screencast
appName.app
json
# js/pubsub.md
PubSub
Pubsub
middleware
IoT
WebSocket
# js/angular.md
html
base64
amplify-s3-album
styles.css
6.x
polyfills.ts
forgotPassword
requireNewPassword
amplifyService
# js/interactions.md
chatbots
Alexa
chatbox
onComplete
theming
voiceEnabled
textEnabled
AmplifyModules
js/i18n.md
I18n
i18n
setLanguage
putVocabularies
# js/federated-identity.md
localhost
# js/cache.md
setItem
getItem
removeItem
getAllKeys
getCacheCurSize
createInstance
keyPrefix
capacityInBytes
itemMaxSize
defaultTTL
defaultPriority
warningThreshold
StorageType
LocalStorage
SessionStorage
AsyncStorage
boolean
# js/authentication.md
OpenID
email_verified
signups
300px
phone_number
IdToken
IdP
AccessToken
localStorage
authState
authData
OAuth
oauth
openid
CAPTCHAs
unencrypted
checkbox
non-SRP
signedIn
signedOut
customizable
AmplifyTheme.js
withFederated
Auth.federatedSignIn
aws.cognito.signin.user.admin
ChallengeName
myapp
LoginWithAmazon
pre-populated
#js/cognito-hosted-ui-federated-identity.md
oauth2
idpresponse
URIs
OAuth2.0
# js/api.md
api
schema.graphql
cloudformation-template
searchable
API_KEY
AWS_IAM
AMAZON_COGNITO_USER_POOLS
OPENID_CONNECT
Graphql
graphql_endpoint_iam_region
Axios
async
X-Amz-Date
X-Api-Key
X-Amz-Security-Token
APIService
Appsync
GetPost.jsx
AllPosts.jsx
DeltaSync
deltaQuery
subscriptionQuery
baseQuery
buildSync
localForage
mutationName
# js/analytics.md
Kinesis
javascript
albumVisit
AWSKinesisProvider
pluggable
mouseover
url
webapp
dataset
AmazonPersonalizeProvider
eventType
iframe
MediaAutoTrack
TimeWatched
eventValue
# cli/graphql.md
UpdateTable
redirect_to
graphql
sdk
AppSyncApiName
APIKeyExpirationEpoch
ElasticsearchStreamingFunctionName
ElasticsearchInstanceCount
ElasticsearchInstanceType
ElasticsearchEBSVolumeGB
DynamoDBBillingMode
PAY_PER_REQUEST
DynamoDBModelTableWriteIOPS
DynamoDBModelTableReadIOPS
ssn
event.prev.result
DataSource
DataSources
onCreate
onUpdate
onDelete
ownerField
groupsField
BizDev
Project.team
postCommentsId
PostEditor
versioned
expectedVersion
versionField
ElasticSearch
searchQueryField
Wildcard
wildcard
_or_
S3Object
s3
versionInput
versioning
PAY_PER_REQUEST
MySQL
UserPoolId
COGNITO_USERPOOL_ID
GraphiQL
ClientId
AppClientIDWeb
typeName
fieldName
prev
ge
lt
le
beginsWith
queryField
createdAt
customerEmail
orderId
status#createdAt
IN_TRANSIT
statusCreatedAt
ByStatus
Pre
Auth.currentAuthenticatedUser
AWSMobileClient.sharedInstance
AWSMobileClient.default
getTodo
listTodos
createTodo
updateTodo
deleteTodo
# cli-toolchain/cognito-triggers.md
Lambda
reCaptcha
captcha
CreateAuthChallenge
DefineAuthChallenge
VerifyAuthChallengeResponse
VerifyAuthChallengeResponse
react-google-recaptcha
PreSignUp
Captchas
ng-recaptcha
CUSTOM_AUTH
app.module.ts
app.component.ts
app.component.html
vue-recaptcha
spinner.js
style.css
verify.js
whitelist
# js/vue.md
confirmSignInConfig
confirmSignUpConfig
forgotPasswordConfig
signInConfig
signUpConfig
signUpFields
msg
signOutButton
mfaDescription
mfaTypes
tokenInstructions
smsDescription
totpDescription
noMfaDescription
cancelHandler
defaultName
amplify-vue
usernameAttributes
# js/sign-up-fields.md
displayOrder
displayOrder
signUpConfig.signUpFields
# cli/plugins.md
walk
gluegun
gluegun's
runtime
https
# cli/init.md
accessKey
secretKey
accesskey
secretkey
aws
arn
config
Unauth
frontends
metadata
Cloudfront
datasource
# cli/hosting.md
gitignore
TTLs
amplify-provider-awscloudformation
cloudformation
awscloudformation
awsconfiguration.json
s3.amazonaws.com
# cli/concept.md
amplifyrc
amplify-CLI
SDKs
providers.awscloudformation
toolchain
Node.js
Node.js.
node_modules
IAM
subfolder
# cli/codegen.md
apiId
XCode
Gradle
dev
Podfile
realtime
AppDelegate.swift
ViewController.swift
MainActivity.java
# cli/multienv.md
multienv
mydev
amplifyapp.com
backend-configs
env
configs
# cli/migrate.md
configLevel
parameters.json
RoleName
LambdaExecutionRole
PinpointFunctionsOutputs
basePath
Outputs.RootURL.Value
parameter.json
unauth
S3AndCloudFront
bucketName
template.json
Resources.S3Bucket.Properties.BucketName
s3aeaffb53
Cloudformaton
DynamoDBTable
amplifyMeta.json
transform.conf.json
#cli-toolchain/quickstart.md
richard
#cli-toolchain/usage.md
poolData
cleartext
NSAllowsLocalNetworking
quoteOfTheDay
OneGraph
transpile
transpiling
transpiled
util
# android/analytics.md
ActivityLifecycleCallbacks
MainActivity
Firehose
KinesisRecorder
KinesisFirehoseRecorder
ImageView
PutRecordBatch
# android/api.md
baseQueryCallback
subscriptionCallback
deltaQueryCallback
baseRefreshIntervalInSeconds
RecyclerView
BaseQuery
allPosts
ProcessLifeCycle
Query.getTodo
Query.listTodos
Query.getComment
Query.listComments
Todo.comments
Comment.todo
Query.getTodo.comments
Query.commentsForTodo
echofunction
Query.echo.req.vtl
Query.echo.res.vtl
Query.searchTodos
geo_point
kibana
Mutation.createTodo
Query.nearbyTodos
geolocation
# android/authentication.md
appcompat
AWSMobileClient
app_id
unsanitized
ClientMetadata
clientMetadata
validationData
logic_protocol_scheme
xml
IdentityManager
PoolId
XX-XXXX-X
XXXXXXXX-XXXX-1234-abcd-1234567890ab
XX-XXXX-X_abcd1234
AppClientId
AppClientSecret
AWSMobileClient.getInstance
getApplicationContext
onResult
UserStateDetails
userStateDetails
userStateDetails.getUserState
SIGNED_IN
SIGNED_OUT
runOnUiThread
TextView
textView
findViewById
R.id.text
textView.setText
NextActivity
showSignIn
NextActivity.class
SignInUIConfiguration.builder
logoImage
R.id.logo
backgroundColor
R.color.black
canCancel
getInput
R.id.signUpUsername
R.id.signUpPassword
HashMap
attributes.put
SignUpResult
signUpResult
signUpResult.getConfirmationState
UserCodeDeliveryDetails
signUpResult.getUserCodeDeliveryDetails
makeToast
R.id.confirmSignUpUsername
R.id.confirmSignUpCode
Log.d
Log.i
details.getDestination
confirmSignUp
resendSignUp
your_username
getDeliveryMedium
SignInResult
signInResult
signInResult.GetSignInState
SMS_MFA
NEW_PASSWORD_REQUIRED
getUsername
isLoggedIn
getIdentityId
getTokens
getIdToken
getJWTToken
getCredentials
federatedSignIn
IdentityProviders.FACEBOOK.toString
FACEBOOK_TOKEN_HERE
signInResult.getSignInState
confirmSignIn
signInChallengeResponse
UserState
userState
savedInstanceState
YOUR_PROJECT_FOLDER
amazonaws
fb1231231231232123123
android.app.Activity
android.os.Bundle
com.amazonaws.mobile.auth.ui.SignInUI
com.amazonaws.mobile.client.AWSMobileClient
com.amazonaws.mobile.client.AWSStartupHandler
com.amazonaws.mobile.client.AWSStartupResult
AuthenticatorActivity
super.onCreate
setContentView
R.layout.activity_authenticator
SignInUIOptions.builder
isSignedIn
nextActivityClass
# android/how-to-android-kinesis-data-stream.md
PutRecord
enum
MiB
# android/manualsetup.md
com.amazonaws
aws-android-sdk-apigateway-core
aar
aws-android-sdk-auth-core
aws-android-sdk-auth-facebook
aws-android-sdk-auth-google
aws-android-sdk-auth-ui
aws-android-sdk-auth-userpools
aws-android-sdk-autoscaling
CloudWatch
aws-android-sdk-cloudwatch
aws-android-sdk-cognitoauth
aws-android-sdk-cognitoidentityprovider
aws-android-sdk-core
aws-android-sdk-ddb-document
aws-android-sdk-ddb-mapper
aws-android-sdk-ddb
aws-android-sdk-ec2
aws-android-sdk-elb
aws-android-sdk-iot
aws-android-sdk-kinesis
aws-android-sdk-kinesisvideo
aws-android-sdk-kms
aws-android-sdk-lambda
aws-android-sdk-logs
aws-android-sdk-machinelearning
aws-android-sdk-mobile-client
aws-android-sdk-mobileanalytics
aws-android-sdk-pinpoint
aws-android-sdk-polly
aws-android-sdk-rekognition
aws-android-sdk-s3
aws-android-sdk-sdb
aws-android-sdk-ses
aws-android-sdk-sns
aws-android-sdk-sqs
pom.xml
groupId
artifactID
aws-android-sdk-apigateway-core
aws-android-sdk-s3
aws-android-sdk-s3
aws-android-sdk-s3
aws-android-sdk-s3
aws-android-sdk-s3
aws-android-sdk-s3
aws-android-sdk-s3
aws-android-sdk-s3
aws-android-sdk-s3
aws-android-sdk-s3
aws-android-sdk-s3
aws-android-sdk-s3
mdash
# android/how-to-cognito-integrate-an-existing-identity-pool-android.md
Kotlin
# android/interactions.md
quickstart
# android/push-notifications.md
APNs
PushListenerService
PinpointManager
awsconfig
# android/storage.md
TransferUtility
multipart
AbortIncompleteMultipartUpload
CredentialsProvider
AWSConfiguration
cancelAllWithType
CannedAccessControlList
CannedAccessControlList.PublicRead
Permission.Read
TransferThreadPoolSize
TransferServiceCheckTimeInterval
AmazonS3Client
putPostWithPhoto
localUri
mimeType
# ios/analytics.md
openssl
AWSKinesisRecorder
AWSFirehoseRecorder
# ios/api.md
YOUR_APP_NAME
baseQueryResultHandler
subscriptionResultHandler
deltaQueryResultHandler
SwiftUI
syncConfiguration
returnValue
UIViewController
# ios/authentication.md
UINavigationController
UserPools
HostedUI
UserPool
flipside
ARNs
# ios/how-to-cognito-integrate-an-existing-identity-pool-ios.md
AppDelegate
uncommenting
# ios/how-to-ios-asynchrounous-tasks.md
completionHandler
AWSTask
AWSExecutor
# ios/how-to-ios-s3-presigned-urls.md
NSURLSession
# ios/how-to-ios-s3-server-side-encryption.md
SSECustomerAlgorithm
SSECustomerKey
SSECustomerKeyMD5
AWSS3ServerSideEncryption
_Identity
_Granting
# ios/manualsetup.md
AWSAPIGateway
AWSAuth
AWSAuthCore
AWSAuthUI
AWSAutoScaling
AWSCloudWatch
AWSCognito
AWSCognitoAuth
AWSCognitoIdentityProvider
AWSCognitoIdentityProviderASF
AWSComprehend
AWSConnect
AWSCore
AWSDynamoDB
AWSElasticLoadBalancing
AWSFacebookSignIn
AWSGoogleSignIn
AWSIoT
AWSKinesis
AWSKinesisVideo
AWSKinesisVideoArchivedMedia
AWSLambda
AWSLex
AWSLogs
AWSMachineLearning
AWSPinpoint
AWSPolly
AWSRekognition
AWSSageMakerRuntime
AWSSimpleDB
AWSTextract
AWSTranscribe
AWSTranscribeStreaming
AWSTranslate
AWSUserPoolsSignIn
CocoaLumberjack
Cocoapods
DocSets
aws-sdk-ios
macOS
v2.7
# ios/how-to-transfer-files-with-transfer-utility.md
AbortIncompleteMultipartUpload
continueWith
task.result
taskIdentifier
publicRead
ACLs
isAccelerateModeEnabled
transferUtility
AWSS3TransferUtility.s3TransferUtility
forKey
retryLimit
multiPartConcurrencyLimit
uploadData
# ios/interactions.md
UIView
xib
react-native-fs
Info.plist
# ios/pubsub.md
VeriSign
subdomain
# ios/push-notifications.md
Hoc
Provisioining
AppStore
Ok
CognitoIdentity
CognitoUserPool
PinpointAnalytics
PinpointTargeting
# ios/how-to-ios-setup-push-notifications
Capitan
Keychain
# ios/start.md
xcworkspace
API.swift
# ios/storage.md
S3ObjectInput
S3ObjectWrapper.swift
CreatePostWithFileInputMutation
createPostWithFile
PostsTable
AWSAppSyncClientConfiguration
schema.json
GraphQLOperations
posts.graphql
timeoutIntervalForResource
handleEventsForBackgroundURLSession
interceptApplication
AWSStaticCredentialsProvider
CRUD
AWSAppSyncTestCommon
# android/how-to-android-sdk-setup.md
aws-android-sdk-lex
Rekognition
# ios/analytics.md
PutRecords
NSData
# ios/how-to-ios-sdk-setup.md
CocoaPods
DocSet
# ios/how-to-transfer-files-with-transfer-utility.md
AWSS3TransferUtility
# Readme.md
CircleCI
# android/analytics.md
_userauth.sign_in
_userauth.sign_up
_userauth.auth_fail
# android/push-notifications.md
Baidu
baidu
arm64-v8a
armeabi
armeabi-v7a
mips
mips64
x86
x86_64
programmatically
# android/storage.md
TransferService