aws-sdk-core 2.0.48 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (197) hide show
  1. checksums.yaml +4 -4
  2. data/apis/autoscaling/2011-01-01/api-2.json +636 -33
  3. data/apis/cloudhsm/2014-05-30/api-2.json +3 -6
  4. data/apis/ec2/2014-10-01/api-2.json +10267 -0
  5. data/apis/ec2/2014-10-01/paginators-1.json +125 -0
  6. data/apis/ec2/2014-10-01/resources-1.json +2289 -0
  7. data/apis/ec2/2014-10-01/waiters-2.json +453 -0
  8. data/apis/ec2/2015-03-01/api-2.json +11245 -0
  9. data/apis/ec2/2015-03-01/paginators-1.json +125 -0
  10. data/apis/ec2/2015-03-01/resources-1.json +2479 -0
  11. data/apis/ec2/2015-03-01/waiters-2.json +458 -0
  12. data/apis/ec2/2015-04-15/api-2.json +182 -2
  13. data/apis/ecs/2014-11-13/api-2.json +316 -7
  14. data/apis/ecs/2014-11-13/paginators-1.json +40 -0
  15. data/apis/ecs/2014-11-13/waiters-2.json +93 -0
  16. data/apis/redshift/2012-12-01/waiters-2.json +19 -0
  17. data/apis/s3/2006-03-01/api-2.json +1 -2
  18. data/apis/sqs/2012-11-05/api-2.json +5 -6
  19. data/ca-bundle.crt +3554 -0
  20. data/lib/aws-sdk-core.rb +127 -44
  21. data/lib/aws-sdk-core/api/builder.rb +95 -0
  22. data/lib/aws-sdk-core/api/customizations.rb +152 -0
  23. data/lib/aws-sdk-core/api/docs/builder.rb +220 -0
  24. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +109 -0
  25. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +66 -0
  26. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +107 -0
  27. data/lib/aws-sdk-core/api/docs/param_formatter.rb +163 -0
  28. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +22 -0
  29. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +91 -0
  30. data/lib/aws-sdk-core/api/docs/utils.rb +133 -0
  31. data/lib/aws-sdk-core/api/shape_map.rb +140 -0
  32. data/lib/aws-sdk-core/assume_role_credentials.rb +9 -6
  33. data/lib/aws-sdk-core/client.rb +9 -6
  34. data/lib/aws-sdk-core/client_stubs.rb +127 -133
  35. data/lib/aws-sdk-core/client_waiters.rb +1 -1
  36. data/lib/aws-sdk-core/credential_provider.rb +44 -0
  37. data/lib/aws-sdk-core/credential_provider_chain.rb +3 -2
  38. data/lib/aws-sdk-core/credentials.rb +5 -0
  39. data/lib/aws-sdk-core/deprecations.rb +69 -0
  40. data/lib/aws-sdk-core/dynamodb.rb +12 -0
  41. data/lib/aws-sdk-core/eager_loader.rb +31 -0
  42. data/lib/aws-sdk-core/ecs.rb +2 -0
  43. data/lib/aws-sdk-core/empty_structure.rb +1 -82
  44. data/lib/aws-sdk-core/endpoint_provider.rb +1 -1
  45. data/lib/aws-sdk-core/instance_profile_credentials.rb +9 -10
  46. data/lib/aws-sdk-core/json.rb +56 -0
  47. data/lib/aws-sdk-core/json/builder.rb +33 -34
  48. data/lib/aws-sdk-core/json/error_handler.rb +2 -2
  49. data/lib/aws-sdk-core/json/handler.rb +67 -0
  50. data/lib/aws-sdk-core/json/json_engine.rb +15 -0
  51. data/lib/aws-sdk-core/json/oj_engine.rb +15 -0
  52. data/lib/aws-sdk-core/json/parser.rb +30 -38
  53. data/lib/aws-sdk-core/pageable_response.rb +9 -12
  54. data/lib/aws-sdk-core/pager.rb +69 -0
  55. data/lib/aws-sdk-core/param_converter.rb +203 -0
  56. data/lib/aws-sdk-core/param_validator.rb +148 -0
  57. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +21 -18
  58. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +9 -1
  59. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +2 -3
  60. data/lib/aws-sdk-core/plugins/param_converter.rb +27 -0
  61. data/lib/aws-sdk-core/plugins/param_validator.rb +28 -0
  62. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +3 -7
  63. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +1 -2
  64. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +1 -1
  65. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +1 -1
  66. data/lib/aws-sdk-core/plugins/request_signer.rb +5 -5
  67. data/lib/aws-sdk-core/plugins/response_paging.rb +20 -11
  68. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +1 -1
  69. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +1 -2
  70. data/lib/aws-sdk-core/plugins/stub_responses.rb +25 -27
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +29 -34
  72. data/lib/aws-sdk-core/query/handler.rb +32 -18
  73. data/lib/aws-sdk-core/query/param_builder.rb +45 -53
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +3 -15
  75. data/lib/aws-sdk-core/rest/handler.rb +22 -0
  76. data/lib/aws-sdk-core/rest/request/body.rb +58 -0
  77. data/lib/aws-sdk-core/rest/request/builder.rb +50 -0
  78. data/lib/aws-sdk-core/rest/request/endpoint.rb +70 -0
  79. data/lib/aws-sdk-core/rest/request/headers.rb +48 -0
  80. data/lib/aws-sdk-core/rest/response/body.rb +43 -0
  81. data/lib/aws-sdk-core/rest/response/headers.rb +60 -0
  82. data/lib/aws-sdk-core/rest/response/parser.rb +47 -0
  83. data/lib/aws-sdk-core/rest/response/status_code.rb +24 -0
  84. data/lib/aws-sdk-core/shared_credentials.rb +11 -6
  85. data/lib/aws-sdk-core/signers/base.rb +1 -1
  86. data/lib/aws-sdk-core/signers/s3.rb +2 -3
  87. data/lib/aws-sdk-core/signers/v2.rb +7 -4
  88. data/lib/aws-sdk-core/signers/v4.rb +11 -22
  89. data/lib/aws-sdk-core/structure.rb +26 -145
  90. data/lib/aws-sdk-core/stubbing/data_applicator.rb +46 -0
  91. data/lib/aws-sdk-core/stubbing/empty_stub.rb +53 -0
  92. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +49 -0
  93. data/lib/aws-sdk-core/stubbing/protocols/json.rb +40 -0
  94. data/lib/aws-sdk-core/stubbing/protocols/query.rb +40 -0
  95. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +67 -0
  96. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +25 -0
  97. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +38 -0
  98. data/lib/aws-sdk-core/stubbing/stub_data.rb +34 -0
  99. data/lib/aws-sdk-core/version.rb +1 -1
  100. data/lib/aws-sdk-core/xml/builder.rb +58 -52
  101. data/lib/aws-sdk-core/xml/default_map.rb +10 -0
  102. data/lib/aws-sdk-core/xml/doc_builder.rb +86 -0
  103. data/lib/aws-sdk-core/xml/error_handler.rb +7 -2
  104. data/lib/aws-sdk-core/xml/parser.rb +4 -4
  105. data/lib/aws-sdk-core/xml/parser/frame.rb +75 -70
  106. data/lib/aws-sdk-core/xml/parser/stack.rb +4 -4
  107. data/lib/seahorse.rb +0 -11
  108. data/lib/seahorse/client/base.rb +3 -12
  109. data/lib/seahorse/client/http/request.rb +9 -5
  110. data/lib/seahorse/client/plugins/endpoint.rb +5 -56
  111. data/lib/seahorse/client/plugins/restful_bindings.rb +38 -31
  112. data/lib/seahorse/client/request_context.rb +2 -2
  113. data/lib/seahorse/client/response.rb +6 -5
  114. data/lib/seahorse/model/api.rb +18 -61
  115. data/lib/seahorse/model/operation.rb +24 -54
  116. data/lib/seahorse/model/shapes.rb +120 -364
  117. data/lib/seahorse/util.rb +2 -6
  118. metadata +56 -109
  119. data/apis/autoscaling/2011-01-01/docs-2.json +0 -1246
  120. data/apis/cloudformation/2010-05-15/docs-2.json +0 -725
  121. data/apis/cloudfront/2014-11-06/docs-2.json +0 -1125
  122. data/apis/cloudhsm/2014-05-30/docs-2.json +0 -472
  123. data/apis/cloudsearch/2013-01-01/docs-2.json +0 -865
  124. data/apis/cloudsearchdomain/2013-01-01/docs-2.json +0 -311
  125. data/apis/cloudtrail/2013-11-01/docs-2.json +0 -328
  126. data/apis/codedeploy/2014-10-06/docs-2.json +0 -1261
  127. data/apis/cognito-identity/2014-06-30/docs-2.json +0 -506
  128. data/apis/cognito-sync/2014-06-30/docs-2.json +0 -582
  129. data/apis/config/2014-10-17/docs-2.json +0 -513
  130. data/apis/config/2014-11-12/docs-2.json +0 -514
  131. data/apis/datapipeline/2012-10-29/docs-2.json +0 -607
  132. data/apis/directconnect/2012-10-25/docs-2.json +0 -494
  133. data/apis/ds/2015-04-16/docs-2.json +0 -753
  134. data/apis/dynamodb/2011-12-05/api-2.json +0 -949
  135. data/apis/dynamodb/2011-12-05/docs-2.json +0 -606
  136. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  137. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  138. data/apis/dynamodb/2012-08-10/docs-2.json +0 -977
  139. data/apis/ec2/2015-04-15/docs-2.json +0 -5368
  140. data/apis/ecs/2014-11-13/docs-2.json +0 -791
  141. data/apis/elasticache/2015-02-02/docs-2.json +0 -1390
  142. data/apis/elasticbeanstalk/2010-12-01/docs-2.json +0 -1114
  143. data/apis/elasticfilesystem/2015-02-01/docs-2.json +0 -414
  144. data/apis/elasticloadbalancing/2012-06-01/docs-2.json +0 -1078
  145. data/apis/elasticmapreduce/2009-03-31/docs-2.json +0 -969
  146. data/apis/elastictranscoder/2012-09-25/docs-2.json +0 -1152
  147. data/apis/email/2010-12-01/docs-2.json +0 -441
  148. data/apis/glacier/2012-06-01/docs-2.json +0 -575
  149. data/apis/iam/2010-05-08/docs-2.json +0 -2138
  150. data/apis/importexport/2010-06-01/docs-2.json +0 -432
  151. data/apis/kinesis/2013-12-02/docs-2.json +0 -424
  152. data/apis/kms/2014-11-01/docs-2.json +0 -628
  153. data/apis/lambda/2014-11-11/docs-2.json +0 -303
  154. data/apis/lambda/2015-03-31/docs-2.json +0 -490
  155. data/apis/logs/2014-03-28/docs-2.json +0 -599
  156. data/apis/machinelearning/2014-12-12/docs-2.json +0 -1034
  157. data/apis/monitoring/2010-08-01/docs-2.json +0 -514
  158. data/apis/opsworks/2013-02-18/docs-2.json +0 -1592
  159. data/apis/rds/2014-10-31/docs-2.json +0 -2074
  160. data/apis/redshift/2012-12-01/docs-2.json +0 -1890
  161. data/apis/route53/2013-04-01/docs-2.json +0 -1159
  162. data/apis/route53domains/2014-05-15/docs-2.json +0 -620
  163. data/apis/s3/2006-03-01/docs-2.json +0 -2213
  164. data/apis/sdb/2009-04-15/docs-2.json +0 -339
  165. data/apis/sns/2010-03-31/docs-2.json +0 -564
  166. data/apis/sqs/2012-11-05/docs-2.json +0 -503
  167. data/apis/ssm/2014-11-06/docs-2.json +0 -440
  168. data/apis/storagegateway/2013-06-30/docs-2.json +0 -1331
  169. data/apis/sts/2011-06-15/docs-2.json +0 -351
  170. data/apis/support/2013-04-15/docs-2.json +0 -680
  171. data/apis/swf/2012-01-25/docs-2.json +0 -1569
  172. data/apis/workspaces/2015-04-08/docs-2.json +0 -457
  173. data/lib/aws-sdk-core/api/customizer.rb +0 -75
  174. data/lib/aws-sdk-core/api/docstrings.rb +0 -38
  175. data/lib/aws-sdk-core/api/documenter.rb +0 -241
  176. data/lib/aws-sdk-core/api/operation_documenter.rb +0 -173
  177. data/lib/aws-sdk-core/api/operation_example.rb +0 -133
  178. data/lib/aws-sdk-core/api/service_customizations.rb +0 -140
  179. data/lib/aws-sdk-core/client_paging.rb +0 -31
  180. data/lib/aws-sdk-core/json/rest_handler.rb +0 -20
  181. data/lib/aws-sdk-core/json/rpc_body_handler.rb +0 -38
  182. data/lib/aws-sdk-core/json/rpc_headers_handler.rb +0 -34
  183. data/lib/aws-sdk-core/json/simple_body_handler.rb +0 -34
  184. data/lib/aws-sdk-core/paging/null_pager.rb +0 -20
  185. data/lib/aws-sdk-core/paging/null_provider.rb +0 -13
  186. data/lib/aws-sdk-core/paging/pager.rb +0 -70
  187. data/lib/aws-sdk-core/paging/provider.rb +0 -22
  188. data/lib/aws-sdk-core/rest_body_handler.rb +0 -111
  189. data/lib/aws-sdk-core/signers/handler.rb +0 -18
  190. data/lib/aws-sdk-core/xml/rest_handler.rb +0 -20
  191. data/lib/seahorse/client/param_converter.rb +0 -207
  192. data/lib/seahorse/client/param_validator.rb +0 -139
  193. data/lib/seahorse/client/plugins/json_simple.rb +0 -33
  194. data/lib/seahorse/client/plugins/param_conversion.rb +0 -29
  195. data/lib/seahorse/client/plugins/param_validation.rb +0 -30
  196. data/lib/seahorse/client/xml/builder.rb +0 -91
  197. data/lib/seahorse/model/shape_map.rb +0 -47
@@ -1,582 +0,0 @@
1
- {
2
- "version": "2.0",
3
- "operations": {
4
- "BulkPublish": "Initiates a bulk publish of all existing datasets for an Identity Pool to the configured stream. Customers are limited to one successful bulk publish per 24 hours. Bulk publish is an asynchronous request, customers can see the status of the request via the GetBulkPublishDetails operation.",
5
- "DeleteDataset": "<p>Deletes the specific dataset. The dataset will be deleted permanently, and the action can't be undone. Datasets that this dataset was merged with will no longer report the merge. Any subsequent operation on this dataset will result in a ResourceNotFoundException.</p> <p>DeleteDataset can be called with temporary user credentials provided by Cognito Identity or with developer credentials.</p>",
6
- "DescribeDataset": "<p>Gets meta data about a dataset by identity and dataset name. With Amazon Cognito Sync, each identity has access only to its own data. Thus, the credentials used to make this API call need to have access to the identity data.</p> <p>DescribeDataset can be called with temporary user credentials provided by Cognito Identity or with developer credentials. You should use Cognito Identity credentials to make this API call.</p>",
7
- "DescribeIdentityPoolUsage": "<p>Gets usage details (for example, data storage) about a particular identity pool.</p> <p>DescribeIdentityPoolUsage can only be called with developer credentials. You cannot make this API call with the temporary user credentials provided by Cognito Identity.</p>",
8
- "DescribeIdentityUsage": "<p>Gets usage information for an identity, including number of datasets and data usage.</p> <p>DescribeIdentityUsage can be called with temporary user credentials provided by Cognito Identity or with developer credentials.</p>",
9
- "GetBulkPublishDetails": "Get the status of the last BulkPublish operation for an identity pool.",
10
- "GetCognitoEvents": "<p>Gets the events and the corresponding Lambda functions associated with an identity pool</p>",
11
- "GetIdentityPoolConfiguration": "<p>Gets the configuration settings of an identity pool.</p>",
12
- "ListDatasets": "<p>Lists datasets for an identity. With Amazon Cognito Sync, each identity has access only to its own data. Thus, the credentials used to make this API call need to have access to the identity data.</p> <p>ListDatasets can be called with temporary user credentials provided by Cognito Identity or with developer credentials. You should use the Cognito Identity credentials to make this API call.</p>",
13
- "ListIdentityPoolUsage": "<p>Gets a list of identity pools registered with Cognito.</p> <p>ListIdentityPoolUsage can only be called with developer credentials. You cannot make this API call with the temporary user credentials provided by Cognito Identity.</p>",
14
- "ListRecords": "<p>Gets paginated records, optionally changed after a particular sync count for a dataset and identity. With Amazon Cognito Sync, each identity has access only to its own data. Thus, the credentials used to make this API call need to have access to the identity data.</p> <p>ListRecords can be called with temporary user credentials provided by Cognito Identity or with developer credentials. You should use Cognito Identity credentials to make this API call.</p>",
15
- "RegisterDevice": "<p>Registers a device to receive push sync notifications.</p>",
16
- "SetCognitoEvents": "<p>Sets the AWS Lambda function for a given event type for an identity pool. This request only updates the key/value pair specified. Other key/values pairs are not updated. To remove a key value pair, pass a empty value for the particular key.</p>",
17
- "SetIdentityPoolConfiguration": "<p>Sets the necessary configuration for push sync.</p>",
18
- "SubscribeToDataset": "<p>Subscribes to receive notifications when a dataset is modified by another device.</p>",
19
- "UnsubscribeFromDataset": "<p>Unsubscribes from receiving notifications when a dataset is modified by another device.</p>",
20
- "UpdateRecords": "<p>Posts updates to records and adds and deletes records for a dataset and user.</p> <p>UpdateRecords can only be called with temporary user credentials provided by Cognito Identity. You cannot make this API call with developer credentials.</p>"
21
- },
22
- "service": "<fullname>Amazon Cognito Sync</fullname> <p>Amazon Cognito Sync provides an AWS service and client library that enable cross-device syncing of application-related user data. High-level client libraries are available for both iOS and Android. You can use these libraries to persist data locally so that it's available even if the device is offline. Developer credentials don't need to be stored on the mobile device to access the service. You can use Amazon Cognito to obtain a normalized user ID and credentials. User data is persisted in a dataset that can store up to 1 MB of key-value pairs, and you can have up to 20 datasets per user identity.</p> <p>With Amazon Cognito Sync, the data stored for each identity is accessible only to credentials assigned to that identity. In order to use the Cognito Sync service, you need to make API calls using credentials retrieved with <a href=\"http://docs.aws.amazon.com/cognitoidentity/latest/APIReference/Welcome.html\">Amazon Cognito Identity service</a>.</p> <p>If you want to use Cognito Sync in an Android or iOS application, you will probably want to make API calls via the AWS Mobile SDK. To learn more, see the <a href=\"http://docs.aws.amazon.com/mobile/sdkforandroid/developerguide/cognito-sync.html\">Developer Guide for Android</a> and the <a href=\"http://docs.aws.amazon.com/mobile/sdkforios/developerguide/cognito-sync.html\">Developer Guide for iOS</a>.</p>",
23
- "shapes": {
24
- "AlreadyStreamedException": {
25
- "base": "An exception thrown when a bulk publish operation is requested less than 24 hours after a previous bulk publish operation completed successfully.",
26
- "refs": {
27
- }
28
- },
29
- "ApplicationArn": {
30
- "base": null,
31
- "refs": {
32
- "ApplicationArnList$member": null
33
- }
34
- },
35
- "ApplicationArnList": {
36
- "base": null,
37
- "refs": {
38
- "PushSync$ApplicationArns": "<p>List of SNS platform application ARNs that could be used by clients.</p>"
39
- }
40
- },
41
- "AssumeRoleArn": {
42
- "base": null,
43
- "refs": {
44
- "CognitoStreams$RoleArn": "The ARN of the role Amazon Cognito can assume in order to publish to the stream. This role must grant access to Amazon Cognito (cognito-sync) to invoke PutRecord on your Cognito stream.",
45
- "PushSync$RoleArn": "<p>A role configured to allow Cognito to call SNS on behalf of the developer.</p>"
46
- }
47
- },
48
- "Boolean": {
49
- "base": null,
50
- "refs": {
51
- "ListRecordsResponse$DatasetExists": "Indicates whether the dataset exists.",
52
- "ListRecordsResponse$DatasetDeletedAfterRequestedSyncCount": "A boolean value specifying whether to delete the dataset locally."
53
- }
54
- },
55
- "BulkPublishRequest": {
56
- "base": "The input for the BulkPublish operation.",
57
- "refs": {
58
- }
59
- },
60
- "BulkPublishResponse": {
61
- "base": "The output for the BulkPublish operation.",
62
- "refs": {
63
- }
64
- },
65
- "BulkPublishStatus": {
66
- "base": null,
67
- "refs": {
68
- "GetBulkPublishDetailsResponse$BulkPublishStatus": "Status of the last bulk publish operation, valid values are: <p>NOT_STARTED - No bulk publish has been requested for this identity pool</p> <p>IN_PROGRESS - Data is being published to the configured stream</p> <p>SUCCEEDED - All data for the identity pool has been published to the configured stream</p> <p>FAILED - Some portion of the data has failed to publish, check FailureMessage for the cause.</p>"
69
- }
70
- },
71
- "ClientContext": {
72
- "base": null,
73
- "refs": {
74
- "UpdateRecordsRequest$ClientContext": "Intended to supply a device ID that will populate the lastModifiedBy field referenced in other methods. The ClientContext field is not yet implemented."
75
- }
76
- },
77
- "CognitoEventType": {
78
- "base": null,
79
- "refs": {
80
- "Events$key": null
81
- }
82
- },
83
- "CognitoStreams": {
84
- "base": "Configuration options for configure Cognito streams.",
85
- "refs": {
86
- "GetIdentityPoolConfigurationResponse$CognitoStreams": "Options to apply to this identity pool for Amazon Cognito streams.",
87
- "SetIdentityPoolConfigurationRequest$CognitoStreams": "Options to apply to this identity pool for Amazon Cognito streams.",
88
- "SetIdentityPoolConfigurationResponse$CognitoStreams": "Options to apply to this identity pool for Amazon Cognito streams."
89
- }
90
- },
91
- "Dataset": {
92
- "base": "A collection of data for an identity pool. An identity pool can have multiple datasets. A dataset is per identity and can be general or associated with a particular entity in an application (like a saved game). Datasets are automatically created if they don't exist. Data is synced by dataset, and a dataset can hold up to 1MB of key-value pairs.",
93
- "refs": {
94
- "DatasetList$member": null,
95
- "DeleteDatasetResponse$Dataset": "A collection of data for an identity pool. An identity pool can have multiple datasets. A dataset is per identity and can be general or associated with a particular entity in an application (like a saved game). Datasets are automatically created if they don't exist. Data is synced by dataset, and a dataset can hold up to 1MB of key-value pairs.",
96
- "DescribeDatasetResponse$Dataset": "Meta data for a collection of data for an identity. An identity can have multiple datasets. A dataset can be general or associated with a particular entity in an application (like a saved game). Datasets are automatically created if they don't exist. Data is synced by dataset, and a dataset can hold up to 1MB of key-value pairs."
97
- }
98
- },
99
- "DatasetList": {
100
- "base": null,
101
- "refs": {
102
- "ListDatasetsResponse$Datasets": "A set of datasets."
103
- }
104
- },
105
- "DatasetName": {
106
- "base": null,
107
- "refs": {
108
- "Dataset$DatasetName": "A string of up to 128 characters. Allowed characters are a-z, A-Z, 0-9, '_' (underscore), '-' (dash), and '.' (dot).",
109
- "DeleteDatasetRequest$DatasetName": "A string of up to 128 characters. Allowed characters are a-z, A-Z, 0-9, '_' (underscore), '-' (dash), and '.' (dot).",
110
- "DescribeDatasetRequest$DatasetName": "A string of up to 128 characters. Allowed characters are a-z, A-Z, 0-9, '_' (underscore), '-' (dash), and '.' (dot).",
111
- "ListRecordsRequest$DatasetName": "A string of up to 128 characters. Allowed characters are a-z, A-Z, 0-9, '_' (underscore), '-' (dash), and '.' (dot).",
112
- "SubscribeToDatasetRequest$DatasetName": "<p>The name of the dataset to subcribe to.</p>",
113
- "UnsubscribeFromDatasetRequest$DatasetName": "<p>The name of the dataset from which to unsubcribe.</p>",
114
- "UpdateRecordsRequest$DatasetName": "A string of up to 128 characters. Allowed characters are a-z, A-Z, 0-9, '_' (underscore), '-' (dash), and '.' (dot)."
115
- }
116
- },
117
- "Date": {
118
- "base": null,
119
- "refs": {
120
- "Dataset$CreationDate": "Date on which the dataset was created.",
121
- "Dataset$LastModifiedDate": "Date when the dataset was last modified.",
122
- "GetBulkPublishDetailsResponse$BulkPublishStartTime": "The date/time at which the last bulk publish was initiated.",
123
- "GetBulkPublishDetailsResponse$BulkPublishCompleteTime": "If BulkPublishStatus is SUCCEEDED, the time the last bulk publish operation completed.",
124
- "IdentityPoolUsage$LastModifiedDate": "Date on which the identity pool was last modified.",
125
- "IdentityUsage$LastModifiedDate": "Date on which the identity was last modified.",
126
- "Record$LastModifiedDate": "The date on which the record was last modified.",
127
- "Record$DeviceLastModifiedDate": "The last modified date of the client device.",
128
- "RecordPatch$DeviceLastModifiedDate": "The last modified date of the client device."
129
- }
130
- },
131
- "DeleteDatasetRequest": {
132
- "base": "A request to delete the specific dataset.",
133
- "refs": {
134
- }
135
- },
136
- "DeleteDatasetResponse": {
137
- "base": "Response to a successful DeleteDataset request.",
138
- "refs": {
139
- }
140
- },
141
- "DescribeDatasetRequest": {
142
- "base": "A request for meta data about a dataset (creation date, number of records, size) by owner and dataset name.",
143
- "refs": {
144
- }
145
- },
146
- "DescribeDatasetResponse": {
147
- "base": "Response to a successful DescribeDataset request.",
148
- "refs": {
149
- }
150
- },
151
- "DescribeIdentityPoolUsageRequest": {
152
- "base": "A request for usage information about the identity pool.",
153
- "refs": {
154
- }
155
- },
156
- "DescribeIdentityPoolUsageResponse": {
157
- "base": "Response to a successful DescribeIdentityPoolUsage request.",
158
- "refs": {
159
- }
160
- },
161
- "DescribeIdentityUsageRequest": {
162
- "base": "A request for information about the usage of an identity pool.",
163
- "refs": {
164
- }
165
- },
166
- "DescribeIdentityUsageResponse": {
167
- "base": "The response to a successful DescribeIdentityUsage request.",
168
- "refs": {
169
- }
170
- },
171
- "DeviceId": {
172
- "base": null,
173
- "refs": {
174
- "RegisterDeviceResponse$DeviceId": "<p>The unique ID generated for this device by Cognito.</p>",
175
- "SubscribeToDatasetRequest$DeviceId": "<p>The unique ID generated for this device by Cognito.</p>",
176
- "UnsubscribeFromDatasetRequest$DeviceId": "<p>The unique ID generated for this device by Cognito.</p>",
177
- "UpdateRecordsRequest$DeviceId": "<p>The unique ID generated for this device by Cognito.</p>"
178
- }
179
- },
180
- "DuplicateRequestException": {
181
- "base": "An exception thrown when there is an IN_PROGRESS bulk publish operation for the given identity pool.",
182
- "refs": {
183
- }
184
- },
185
- "Events": {
186
- "base": null,
187
- "refs": {
188
- "GetCognitoEventsResponse$Events": "<p>The Cognito Events returned from the GetCognitoEvents request</p>",
189
- "SetCognitoEventsRequest$Events": "<p>The events to configure</p>"
190
- }
191
- },
192
- "ExceptionMessage": {
193
- "base": null,
194
- "refs": {
195
- "AlreadyStreamedException$message": "The message associated with the AlreadyStreamedException exception.",
196
- "DuplicateRequestException$message": "The message associated with the DuplicateRequestException exception.",
197
- "InternalErrorException$message": "Message returned by InternalErrorException.",
198
- "InvalidConfigurationException$message": "Message returned by InvalidConfigurationException.",
199
- "InvalidLambdaFunctionOutputException$message": "<p>A message returned when an InvalidLambdaFunctionOutputException occurs</p>",
200
- "InvalidParameterException$message": "Message returned by InvalidParameterException.",
201
- "LambdaThrottledException$message": "<p>A message returned when an LambdaThrottledException is thrown</p>",
202
- "LimitExceededException$message": "Message returned by LimitExceededException.",
203
- "NotAuthorizedException$message": "The message returned by a NotAuthorizedException.",
204
- "ResourceConflictException$message": "The message returned by a ResourceConflictException.",
205
- "ResourceNotFoundException$message": "Message returned by a ResourceNotFoundException.",
206
- "TooManyRequestsException$message": "Message returned by a TooManyRequestsException."
207
- }
208
- },
209
- "GetBulkPublishDetailsRequest": {
210
- "base": "The input for the GetBulkPublishDetails operation.",
211
- "refs": {
212
- }
213
- },
214
- "GetBulkPublishDetailsResponse": {
215
- "base": "The output for the GetBulkPublishDetails operation.",
216
- "refs": {
217
- }
218
- },
219
- "GetCognitoEventsRequest": {
220
- "base": "<p>A request for a list of the configured Cognito Events</p>",
221
- "refs": {
222
- }
223
- },
224
- "GetCognitoEventsResponse": {
225
- "base": "<p>The response from the GetCognitoEvents request</p>",
226
- "refs": {
227
- }
228
- },
229
- "GetIdentityPoolConfigurationRequest": {
230
- "base": "<p>The input for the GetIdentityPoolConfiguration operation.</p>",
231
- "refs": {
232
- }
233
- },
234
- "GetIdentityPoolConfigurationResponse": {
235
- "base": "<p>The output for the GetIdentityPoolConfiguration operation.</p>",
236
- "refs": {
237
- }
238
- },
239
- "IdentityId": {
240
- "base": null,
241
- "refs": {
242
- "Dataset$IdentityId": "A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region.",
243
- "DeleteDatasetRequest$IdentityId": "A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region.",
244
- "DescribeDatasetRequest$IdentityId": "A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region.",
245
- "DescribeIdentityUsageRequest$IdentityId": "A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region.",
246
- "IdentityUsage$IdentityId": "A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region.",
247
- "ListDatasetsRequest$IdentityId": "A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region.",
248
- "ListRecordsRequest$IdentityId": "A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region.",
249
- "RegisterDeviceRequest$IdentityId": "<p>The unique ID for this identity.</p>",
250
- "SubscribeToDatasetRequest$IdentityId": "<p>Unique ID for this identity.</p>",
251
- "UnsubscribeFromDatasetRequest$IdentityId": "<p>Unique ID for this identity.</p>",
252
- "UpdateRecordsRequest$IdentityId": "A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region."
253
- }
254
- },
255
- "IdentityPoolId": {
256
- "base": null,
257
- "refs": {
258
- "BulkPublishRequest$IdentityPoolId": "A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region.",
259
- "BulkPublishResponse$IdentityPoolId": "A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region.",
260
- "DeleteDatasetRequest$IdentityPoolId": "A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region.",
261
- "DescribeDatasetRequest$IdentityPoolId": "A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region.",
262
- "DescribeIdentityPoolUsageRequest$IdentityPoolId": "A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region.",
263
- "DescribeIdentityUsageRequest$IdentityPoolId": "A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region.",
264
- "GetBulkPublishDetailsRequest$IdentityPoolId": "A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region.",
265
- "GetBulkPublishDetailsResponse$IdentityPoolId": "A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region.",
266
- "GetCognitoEventsRequest$IdentityPoolId": "<p>The Cognito Identity Pool ID for the request</p>",
267
- "GetIdentityPoolConfigurationRequest$IdentityPoolId": "<p>A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. This is the ID of the pool for which to return a configuration.</p>",
268
- "GetIdentityPoolConfigurationResponse$IdentityPoolId": "<p>A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito.</p>",
269
- "IdentityPoolUsage$IdentityPoolId": "A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region.",
270
- "IdentityUsage$IdentityPoolId": "A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region.",
271
- "ListDatasetsRequest$IdentityPoolId": "A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region.",
272
- "ListRecordsRequest$IdentityPoolId": "A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region.",
273
- "RegisterDeviceRequest$IdentityPoolId": "<p>A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. Here, the ID of the pool that the identity belongs to.</p>",
274
- "SetCognitoEventsRequest$IdentityPoolId": "<p>The Cognito Identity Pool to use when configuring Cognito Events</p>",
275
- "SetIdentityPoolConfigurationRequest$IdentityPoolId": "<p>A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. This is the ID of the pool to modify.</p>",
276
- "SetIdentityPoolConfigurationResponse$IdentityPoolId": "<p>A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito.</p>",
277
- "SubscribeToDatasetRequest$IdentityPoolId": "<p>A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. The ID of the pool to which the identity belongs.</p>",
278
- "UnsubscribeFromDatasetRequest$IdentityPoolId": "<p>A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. The ID of the pool to which this identity belongs.</p>",
279
- "UpdateRecordsRequest$IdentityPoolId": "A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. GUID generation is unique within a region."
280
- }
281
- },
282
- "IdentityPoolUsage": {
283
- "base": "Usage information for the identity pool.",
284
- "refs": {
285
- "DescribeIdentityPoolUsageResponse$IdentityPoolUsage": "Information about the usage of the identity pool.",
286
- "IdentityPoolUsageList$member": null
287
- }
288
- },
289
- "IdentityPoolUsageList": {
290
- "base": null,
291
- "refs": {
292
- "ListIdentityPoolUsageResponse$IdentityPoolUsages": "Usage information for the identity pools."
293
- }
294
- },
295
- "IdentityUsage": {
296
- "base": "Usage information for the identity.",
297
- "refs": {
298
- "DescribeIdentityUsageResponse$IdentityUsage": "Usage information for the identity."
299
- }
300
- },
301
- "Integer": {
302
- "base": null,
303
- "refs": {
304
- "IdentityUsage$DatasetCount": "Number of datasets for the identity.",
305
- "ListDatasetsResponse$Count": "Number of datasets returned.",
306
- "ListIdentityPoolUsageResponse$MaxResults": "The maximum number of results to be returned.",
307
- "ListIdentityPoolUsageResponse$Count": "Total number of identities for the identity pool.",
308
- "ListRecordsResponse$Count": "Total number of records."
309
- }
310
- },
311
- "IntegerString": {
312
- "base": null,
313
- "refs": {
314
- "ListDatasetsRequest$MaxResults": "The maximum number of results to be returned.",
315
- "ListIdentityPoolUsageRequest$MaxResults": "The maximum number of results to be returned.",
316
- "ListRecordsRequest$MaxResults": "The maximum number of results to be returned."
317
- }
318
- },
319
- "InternalErrorException": {
320
- "base": "Indicates an internal service error.",
321
- "refs": {
322
- }
323
- },
324
- "InvalidConfigurationException": {
325
- "base": null,
326
- "refs": {
327
- }
328
- },
329
- "InvalidLambdaFunctionOutputException": {
330
- "base": "<p>The AWS Lambda function returned invalid output or an exception.</p>",
331
- "refs": {
332
- }
333
- },
334
- "InvalidParameterException": {
335
- "base": "Thrown when a request parameter does not comply with the associated constraints.",
336
- "refs": {
337
- }
338
- },
339
- "LambdaFunctionArn": {
340
- "base": null,
341
- "refs": {
342
- "Events$value": null
343
- }
344
- },
345
- "LambdaThrottledException": {
346
- "base": "<p>AWS Lambda throttled your account, please contact AWS Support</p>",
347
- "refs": {
348
- }
349
- },
350
- "LimitExceededException": {
351
- "base": "Thrown when the limit on the number of objects or operations has been exceeded.",
352
- "refs": {
353
- }
354
- },
355
- "ListDatasetsRequest": {
356
- "base": "Request for a list of datasets for an identity.",
357
- "refs": {
358
- }
359
- },
360
- "ListDatasetsResponse": {
361
- "base": "Returned for a successful ListDatasets request.",
362
- "refs": {
363
- }
364
- },
365
- "ListIdentityPoolUsageRequest": {
366
- "base": "A request for usage information on an identity pool.",
367
- "refs": {
368
- }
369
- },
370
- "ListIdentityPoolUsageResponse": {
371
- "base": "Returned for a successful ListIdentityPoolUsage request.",
372
- "refs": {
373
- }
374
- },
375
- "ListRecordsRequest": {
376
- "base": "A request for a list of records.",
377
- "refs": {
378
- }
379
- },
380
- "ListRecordsResponse": {
381
- "base": "Returned for a successful ListRecordsRequest.",
382
- "refs": {
383
- }
384
- },
385
- "Long": {
386
- "base": null,
387
- "refs": {
388
- "Dataset$DataStorage": "Total size in bytes of the records in this dataset.",
389
- "Dataset$NumRecords": "Number of records in this dataset.",
390
- "IdentityPoolUsage$SyncSessionsCount": "Number of sync sessions for the identity pool.",
391
- "IdentityPoolUsage$DataStorage": "Data storage information for the identity pool.",
392
- "IdentityUsage$DataStorage": "Total data storage for this identity.",
393
- "ListRecordsRequest$LastSyncCount": "The last server sync count for this record.",
394
- "ListRecordsResponse$DatasetSyncCount": "Server sync count for this dataset.",
395
- "Record$SyncCount": "The server sync count for this record.",
396
- "RecordPatch$SyncCount": "Last known server sync count for this record. Set to 0 if unknown."
397
- }
398
- },
399
- "MergedDatasetNameList": {
400
- "base": null,
401
- "refs": {
402
- "ListRecordsResponse$MergedDatasetNames": "Names of merged datasets."
403
- }
404
- },
405
- "NotAuthorizedException": {
406
- "base": "Thrown when a user is not authorized to access the requested resource.",
407
- "refs": {
408
- }
409
- },
410
- "Operation": {
411
- "base": null,
412
- "refs": {
413
- "RecordPatch$Op": "An operation, either replace or remove."
414
- }
415
- },
416
- "Platform": {
417
- "base": null,
418
- "refs": {
419
- "RegisterDeviceRequest$Platform": "<p>The SNS platform type (e.g. GCM, SDM, APNS, APNS_SANDBOX).</p>"
420
- }
421
- },
422
- "PushSync": {
423
- "base": "<p>Configuration options to be applied to the identity pool.</p>",
424
- "refs": {
425
- "GetIdentityPoolConfigurationResponse$PushSync": "<p>Options to apply to this identity pool for push synchronization.</p>",
426
- "SetIdentityPoolConfigurationRequest$PushSync": "<p>Options to apply to this identity pool for push synchronization.</p>",
427
- "SetIdentityPoolConfigurationResponse$PushSync": "<p>Options to apply to this identity pool for push synchronization.</p>"
428
- }
429
- },
430
- "PushToken": {
431
- "base": null,
432
- "refs": {
433
- "RegisterDeviceRequest$Token": "<p>The push token.</p>"
434
- }
435
- },
436
- "Record": {
437
- "base": "The basic data structure of a dataset.",
438
- "refs": {
439
- "RecordList$member": null
440
- }
441
- },
442
- "RecordKey": {
443
- "base": null,
444
- "refs": {
445
- "Record$Key": "The key for the record.",
446
- "RecordPatch$Key": "The key associated with the record patch."
447
- }
448
- },
449
- "RecordList": {
450
- "base": null,
451
- "refs": {
452
- "ListRecordsResponse$Records": "A list of all records.",
453
- "UpdateRecordsResponse$Records": "A list of records that have been updated."
454
- }
455
- },
456
- "RecordPatch": {
457
- "base": "An update operation for a record.",
458
- "refs": {
459
- "RecordPatchList$member": null
460
- }
461
- },
462
- "RecordPatchList": {
463
- "base": null,
464
- "refs": {
465
- "UpdateRecordsRequest$RecordPatches": "A list of patch operations."
466
- }
467
- },
468
- "RecordValue": {
469
- "base": null,
470
- "refs": {
471
- "Record$Value": "The value for the record.",
472
- "RecordPatch$Value": "The value associated with the record patch."
473
- }
474
- },
475
- "RegisterDeviceRequest": {
476
- "base": "<p>A request to RegisterDevice.</p>",
477
- "refs": {
478
- }
479
- },
480
- "RegisterDeviceResponse": {
481
- "base": "<p>Response to a RegisterDevice request.</p>",
482
- "refs": {
483
- }
484
- },
485
- "ResourceConflictException": {
486
- "base": "Thrown if an update can't be applied because the resource was changed by another call and this would result in a conflict.",
487
- "refs": {
488
- }
489
- },
490
- "ResourceNotFoundException": {
491
- "base": "Thrown if the resource doesn't exist.",
492
- "refs": {
493
- }
494
- },
495
- "SetCognitoEventsRequest": {
496
- "base": "<p>A request to configure Cognito Events\"</p>\"",
497
- "refs": {
498
- }
499
- },
500
- "SetIdentityPoolConfigurationRequest": {
501
- "base": "<p>The input for the SetIdentityPoolConfiguration operation.</p>",
502
- "refs": {
503
- }
504
- },
505
- "SetIdentityPoolConfigurationResponse": {
506
- "base": "<p>The output for the SetIdentityPoolConfiguration operation</p>",
507
- "refs": {
508
- }
509
- },
510
- "StreamName": {
511
- "base": null,
512
- "refs": {
513
- "CognitoStreams$StreamName": "The name of the Cognito stream to receive updates. This stream must be in the developers account and in the same region as the identity pool."
514
- }
515
- },
516
- "StreamingStatus": {
517
- "base": null,
518
- "refs": {
519
- "CognitoStreams$StreamingStatus": "Status of the Cognito streams. Valid values are: <p>ENABLED - Streaming of updates to identity pool is enabled.</p> <p>DISABLED - Streaming of updates to identity pool is disabled. Bulk publish will also fail if StreamingStatus is DISABLED.</p>"
520
- }
521
- },
522
- "String": {
523
- "base": null,
524
- "refs": {
525
- "Dataset$LastModifiedBy": "The device that made the last change to this dataset.",
526
- "GetBulkPublishDetailsResponse$FailureMessage": "If BulkPublishStatus is FAILED this field will contain the error message that caused the bulk publish to fail.",
527
- "ListDatasetsRequest$NextToken": "A pagination token for obtaining the next page of results.",
528
- "ListDatasetsResponse$NextToken": "A pagination token for obtaining the next page of results.",
529
- "ListIdentityPoolUsageRequest$NextToken": "A pagination token for obtaining the next page of results.",
530
- "ListIdentityPoolUsageResponse$NextToken": "A pagination token for obtaining the next page of results.",
531
- "ListRecordsRequest$NextToken": "A pagination token for obtaining the next page of results.",
532
- "ListRecordsResponse$NextToken": "A pagination token for obtaining the next page of results.",
533
- "ListRecordsResponse$LastModifiedBy": "The user/device that made the last change to this record.",
534
- "ListRecordsResponse$SyncSessionToken": "A token containing a session ID, identity ID, and expiration.",
535
- "MergedDatasetNameList$member": null,
536
- "Record$LastModifiedBy": "The user/device that made the last change to this record."
537
- }
538
- },
539
- "SubscribeToDatasetRequest": {
540
- "base": "<p>A request to SubscribeToDatasetRequest.</p>",
541
- "refs": {
542
- }
543
- },
544
- "SubscribeToDatasetResponse": {
545
- "base": "<p>Response to a SubscribeToDataset request.</p>",
546
- "refs": {
547
- }
548
- },
549
- "SyncSessionToken": {
550
- "base": null,
551
- "refs": {
552
- "ListRecordsRequest$SyncSessionToken": "A token containing a session ID, identity ID, and expiration.",
553
- "UpdateRecordsRequest$SyncSessionToken": "The SyncSessionToken returned by a previous call to ListRecords for this dataset and identity."
554
- }
555
- },
556
- "TooManyRequestsException": {
557
- "base": "Thrown if the request is throttled.",
558
- "refs": {
559
- }
560
- },
561
- "UnsubscribeFromDatasetRequest": {
562
- "base": "<p>A request to UnsubscribeFromDataset.</p>",
563
- "refs": {
564
- }
565
- },
566
- "UnsubscribeFromDatasetResponse": {
567
- "base": "<p>Response to an UnsubscribeFromDataset request.</p>",
568
- "refs": {
569
- }
570
- },
571
- "UpdateRecordsRequest": {
572
- "base": "A request to post updates to records or add and delete records for a dataset and user.",
573
- "refs": {
574
- }
575
- },
576
- "UpdateRecordsResponse": {
577
- "base": "Returned for a successful UpdateRecordsRequest.",
578
- "refs": {
579
- }
580
- }
581
- }
582
- }