@aws-sdk/client-cognito-sync 3.289.0 → 3.290.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/BulkPublishCommand.d.ts +23 -0
- package/dist-types/commands/DeleteDatasetCommand.d.ts +25 -0
- package/dist-types/commands/DescribeDatasetCommand.d.ts +21 -0
- package/dist-types/commands/DescribeIdentityPoolUsageCommand.d.ts +21 -0
- package/dist-types/commands/DescribeIdentityUsageCommand.d.ts +21 -0
- package/dist-types/commands/GetBulkPublishDetailsCommand.d.ts +17 -0
- package/dist-types/commands/GetCognitoEventsCommand.d.ts +21 -0
- package/dist-types/commands/GetIdentityPoolConfigurationCommand.d.ts +21 -0
- package/dist-types/commands/ListDatasetsCommand.d.ts +17 -0
- package/dist-types/commands/ListIdentityPoolUsageCommand.d.ts +17 -0
- package/dist-types/commands/ListRecordsCommand.d.ts +17 -0
- package/dist-types/commands/RegisterDeviceCommand.d.ts +23 -0
- package/dist-types/commands/SetCognitoEventsCommand.d.ts +21 -0
- package/dist-types/commands/SetIdentityPoolConfigurationCommand.d.ts +24 -0
- package/dist-types/commands/SubscribeToDatasetCommand.d.ts +23 -0
- package/dist-types/commands/UnsubscribeFromDatasetCommand.d.ts +23 -0
- package/dist-types/commands/UpdateRecordsCommand.d.ts +35 -0
- package/package.json +29 -29
|
@@ -29,6 +29,29 @@ export interface BulkPublishCommandOutput extends BulkPublishResponse, __Metadat
|
|
|
29
29
|
* @see {@link BulkPublishCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CognitoSyncClientResolvedConfig | config} for CognitoSyncClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AlreadyStreamedException} (client fault)
|
|
33
|
+
* An exception thrown when a bulk publish operation is requested less than 24 hours after a previous bulk publish operation completed successfully.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link DuplicateRequestException} (client fault)
|
|
36
|
+
* An exception thrown when there is an IN_PROGRESS bulk publish operation for the given identity pool.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
39
|
+
* Indicates an internal service
|
|
40
|
+
* error.
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
43
|
+
* Thrown when a request parameter does not comply
|
|
44
|
+
* with the associated constraints.
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link NotAuthorizedException} (client fault)
|
|
47
|
+
* Thrown when a user is not authorized to access the
|
|
48
|
+
* requested resource.
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
51
|
+
* Thrown if the resource doesn't
|
|
52
|
+
* exist.
|
|
53
|
+
*
|
|
54
|
+
*
|
|
32
55
|
*/
|
|
33
56
|
export declare class BulkPublishCommand extends $Command<BulkPublishCommandInput, BulkPublishCommandOutput, CognitoSyncClientResolvedConfig> {
|
|
34
57
|
readonly input: BulkPublishCommandInput;
|
|
@@ -33,6 +33,31 @@ export interface DeleteDatasetCommandOutput extends DeleteDatasetResponse, __Met
|
|
|
33
33
|
* @see {@link DeleteDatasetCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link CognitoSyncClientResolvedConfig | config} for CognitoSyncClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
37
|
+
* Indicates an internal service
|
|
38
|
+
* error.
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
41
|
+
* Thrown when a request parameter does not comply
|
|
42
|
+
* with the associated constraints.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link NotAuthorizedException} (client fault)
|
|
45
|
+
* Thrown when a user is not authorized to access the
|
|
46
|
+
* requested resource.
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ResourceConflictException} (client fault)
|
|
49
|
+
* Thrown if an update can't be applied because
|
|
50
|
+
* the resource was changed by another call and this would result in a conflict.
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
53
|
+
* Thrown if the resource doesn't
|
|
54
|
+
* exist.
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
57
|
+
* Thrown if the request is
|
|
58
|
+
* throttled.
|
|
59
|
+
*
|
|
60
|
+
*
|
|
36
61
|
*/
|
|
37
62
|
export declare class DeleteDatasetCommand extends $Command<DeleteDatasetCommandInput, DeleteDatasetCommandOutput, CognitoSyncClientResolvedConfig> {
|
|
38
63
|
readonly input: DeleteDatasetCommandInput;
|
|
@@ -32,6 +32,27 @@ export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, _
|
|
|
32
32
|
* @see {@link DescribeDatasetCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link CognitoSyncClientResolvedConfig | config} for CognitoSyncClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
36
|
+
* Indicates an internal service
|
|
37
|
+
* error.
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
40
|
+
* Thrown when a request parameter does not comply
|
|
41
|
+
* with the associated constraints.
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link NotAuthorizedException} (client fault)
|
|
44
|
+
* Thrown when a user is not authorized to access the
|
|
45
|
+
* requested resource.
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
48
|
+
* Thrown if the resource doesn't
|
|
49
|
+
* exist.
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
52
|
+
* Thrown if the request is
|
|
53
|
+
* throttled.
|
|
54
|
+
*
|
|
55
|
+
*
|
|
35
56
|
*/
|
|
36
57
|
export declare class DescribeDatasetCommand extends $Command<DescribeDatasetCommandInput, DescribeDatasetCommandOutput, CognitoSyncClientResolvedConfig> {
|
|
37
58
|
readonly input: DescribeDatasetCommandInput;
|
|
@@ -77,6 +77,27 @@ export interface DescribeIdentityPoolUsageCommandOutput extends DescribeIdentity
|
|
|
77
77
|
* @see {@link DescribeIdentityPoolUsageCommandOutput} for command's `response` shape.
|
|
78
78
|
* @see {@link CognitoSyncClientResolvedConfig | config} for CognitoSyncClient's `config` shape.
|
|
79
79
|
*
|
|
80
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
81
|
+
* Indicates an internal service
|
|
82
|
+
* error.
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
85
|
+
* Thrown when a request parameter does not comply
|
|
86
|
+
* with the associated constraints.
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link NotAuthorizedException} (client fault)
|
|
89
|
+
* Thrown when a user is not authorized to access the
|
|
90
|
+
* requested resource.
|
|
91
|
+
*
|
|
92
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
93
|
+
* Thrown if the resource doesn't
|
|
94
|
+
* exist.
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
97
|
+
* Thrown if the request is
|
|
98
|
+
* throttled.
|
|
99
|
+
*
|
|
100
|
+
*
|
|
80
101
|
*/
|
|
81
102
|
export declare class DescribeIdentityPoolUsageCommand extends $Command<DescribeIdentityPoolUsageCommandInput, DescribeIdentityPoolUsageCommandOutput, CognitoSyncClientResolvedConfig> {
|
|
82
103
|
readonly input: DescribeIdentityPoolUsageCommandInput;
|
|
@@ -78,6 +78,27 @@ export interface DescribeIdentityUsageCommandOutput extends DescribeIdentityUsag
|
|
|
78
78
|
* @see {@link DescribeIdentityUsageCommandOutput} for command's `response` shape.
|
|
79
79
|
* @see {@link CognitoSyncClientResolvedConfig | config} for CognitoSyncClient's `config` shape.
|
|
80
80
|
*
|
|
81
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
82
|
+
* Indicates an internal service
|
|
83
|
+
* error.
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
86
|
+
* Thrown when a request parameter does not comply
|
|
87
|
+
* with the associated constraints.
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link NotAuthorizedException} (client fault)
|
|
90
|
+
* Thrown when a user is not authorized to access the
|
|
91
|
+
* requested resource.
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
94
|
+
* Thrown if the resource doesn't
|
|
95
|
+
* exist.
|
|
96
|
+
*
|
|
97
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
98
|
+
* Thrown if the request is
|
|
99
|
+
* throttled.
|
|
100
|
+
*
|
|
101
|
+
*
|
|
81
102
|
*/
|
|
82
103
|
export declare class DescribeIdentityUsageCommand extends $Command<DescribeIdentityUsageCommandInput, DescribeIdentityUsageCommandOutput, CognitoSyncClientResolvedConfig> {
|
|
83
104
|
readonly input: DescribeIdentityUsageCommandInput;
|
|
@@ -29,6 +29,23 @@ export interface GetBulkPublishDetailsCommandOutput extends GetBulkPublishDetail
|
|
|
29
29
|
* @see {@link GetBulkPublishDetailsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CognitoSyncClientResolvedConfig | config} for CognitoSyncClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
33
|
+
* Indicates an internal service
|
|
34
|
+
* error.
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
37
|
+
* Thrown when a request parameter does not comply
|
|
38
|
+
* with the associated constraints.
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link NotAuthorizedException} (client fault)
|
|
41
|
+
* Thrown when a user is not authorized to access the
|
|
42
|
+
* requested resource.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* Thrown if the resource doesn't
|
|
46
|
+
* exist.
|
|
47
|
+
*
|
|
48
|
+
*
|
|
32
49
|
*/
|
|
33
50
|
export declare class GetBulkPublishDetailsCommand extends $Command<GetBulkPublishDetailsCommandInput, GetBulkPublishDetailsCommandOutput, CognitoSyncClientResolvedConfig> {
|
|
34
51
|
readonly input: GetBulkPublishDetailsCommandInput;
|
|
@@ -29,6 +29,27 @@ export interface GetCognitoEventsCommandOutput extends GetCognitoEventsResponse,
|
|
|
29
29
|
* @see {@link GetCognitoEventsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CognitoSyncClientResolvedConfig | config} for CognitoSyncClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
33
|
+
* Indicates an internal service
|
|
34
|
+
* error.
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
37
|
+
* Thrown when a request parameter does not comply
|
|
38
|
+
* with the associated constraints.
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link NotAuthorizedException} (client fault)
|
|
41
|
+
* Thrown when a user is not authorized to access the
|
|
42
|
+
* requested resource.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* Thrown if the resource doesn't
|
|
46
|
+
* exist.
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
49
|
+
* Thrown if the request is
|
|
50
|
+
* throttled.
|
|
51
|
+
*
|
|
52
|
+
*
|
|
32
53
|
*/
|
|
33
54
|
export declare class GetCognitoEventsCommand extends $Command<GetCognitoEventsCommandInput, GetCognitoEventsCommandOutput, CognitoSyncClientResolvedConfig> {
|
|
34
55
|
readonly input: GetCognitoEventsCommandInput;
|
|
@@ -75,6 +75,27 @@ export interface GetIdentityPoolConfigurationCommandOutput extends GetIdentityPo
|
|
|
75
75
|
* @see {@link GetIdentityPoolConfigurationCommandOutput} for command's `response` shape.
|
|
76
76
|
* @see {@link CognitoSyncClientResolvedConfig | config} for CognitoSyncClient's `config` shape.
|
|
77
77
|
*
|
|
78
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
79
|
+
* Indicates an internal service
|
|
80
|
+
* error.
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
83
|
+
* Thrown when a request parameter does not comply
|
|
84
|
+
* with the associated constraints.
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link NotAuthorizedException} (client fault)
|
|
87
|
+
* Thrown when a user is not authorized to access the
|
|
88
|
+
* requested resource.
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
91
|
+
* Thrown if the resource doesn't
|
|
92
|
+
* exist.
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
95
|
+
* Thrown if the request is
|
|
96
|
+
* throttled.
|
|
97
|
+
*
|
|
98
|
+
*
|
|
78
99
|
*/
|
|
79
100
|
export declare class GetIdentityPoolConfigurationCommand extends $Command<GetIdentityPoolConfigurationCommandInput, GetIdentityPoolConfigurationCommandOutput, CognitoSyncClientResolvedConfig> {
|
|
80
101
|
readonly input: GetIdentityPoolConfigurationCommandInput;
|
|
@@ -87,6 +87,23 @@ export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __Metad
|
|
|
87
87
|
* @see {@link ListDatasetsCommandOutput} for command's `response` shape.
|
|
88
88
|
* @see {@link CognitoSyncClientResolvedConfig | config} for CognitoSyncClient's `config` shape.
|
|
89
89
|
*
|
|
90
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
91
|
+
* Indicates an internal service
|
|
92
|
+
* error.
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
95
|
+
* Thrown when a request parameter does not comply
|
|
96
|
+
* with the associated constraints.
|
|
97
|
+
*
|
|
98
|
+
* @throws {@link NotAuthorizedException} (client fault)
|
|
99
|
+
* Thrown when a user is not authorized to access the
|
|
100
|
+
* requested resource.
|
|
101
|
+
*
|
|
102
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
103
|
+
* Thrown if the request is
|
|
104
|
+
* throttled.
|
|
105
|
+
*
|
|
106
|
+
*
|
|
90
107
|
*/
|
|
91
108
|
export declare class ListDatasetsCommand extends $Command<ListDatasetsCommandInput, ListDatasetsCommandOutput, CognitoSyncClientResolvedConfig> {
|
|
92
109
|
readonly input: ListDatasetsCommandInput;
|
|
@@ -87,6 +87,23 @@ export interface ListIdentityPoolUsageCommandOutput extends ListIdentityPoolUsag
|
|
|
87
87
|
* @see {@link ListIdentityPoolUsageCommandOutput} for command's `response` shape.
|
|
88
88
|
* @see {@link CognitoSyncClientResolvedConfig | config} for CognitoSyncClient's `config` shape.
|
|
89
89
|
*
|
|
90
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
91
|
+
* Indicates an internal service
|
|
92
|
+
* error.
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
95
|
+
* Thrown when a request parameter does not comply
|
|
96
|
+
* with the associated constraints.
|
|
97
|
+
*
|
|
98
|
+
* @throws {@link NotAuthorizedException} (client fault)
|
|
99
|
+
* Thrown when a user is not authorized to access the
|
|
100
|
+
* requested resource.
|
|
101
|
+
*
|
|
102
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
103
|
+
* Thrown if the request is
|
|
104
|
+
* throttled.
|
|
105
|
+
*
|
|
106
|
+
*
|
|
90
107
|
*/
|
|
91
108
|
export declare class ListIdentityPoolUsageCommand extends $Command<ListIdentityPoolUsageCommandInput, ListIdentityPoolUsageCommandOutput, CognitoSyncClientResolvedConfig> {
|
|
92
109
|
readonly input: ListIdentityPoolUsageCommandInput;
|
|
@@ -84,6 +84,23 @@ export interface ListRecordsCommandOutput extends ListRecordsResponse, __Metadat
|
|
|
84
84
|
* @see {@link ListRecordsCommandOutput} for command's `response` shape.
|
|
85
85
|
* @see {@link CognitoSyncClientResolvedConfig | config} for CognitoSyncClient's `config` shape.
|
|
86
86
|
*
|
|
87
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
88
|
+
* Indicates an internal service
|
|
89
|
+
* error.
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
92
|
+
* Thrown when a request parameter does not comply
|
|
93
|
+
* with the associated constraints.
|
|
94
|
+
*
|
|
95
|
+
* @throws {@link NotAuthorizedException} (client fault)
|
|
96
|
+
* Thrown when a user is not authorized to access the
|
|
97
|
+
* requested resource.
|
|
98
|
+
*
|
|
99
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
100
|
+
* Thrown if the request is
|
|
101
|
+
* throttled.
|
|
102
|
+
*
|
|
103
|
+
*
|
|
87
104
|
*/
|
|
88
105
|
export declare class ListRecordsCommand extends $Command<ListRecordsCommandInput, ListRecordsCommandOutput, CognitoSyncClientResolvedConfig> {
|
|
89
106
|
readonly input: ListRecordsCommandInput;
|
|
@@ -73,6 +73,29 @@ export interface RegisterDeviceCommandOutput extends RegisterDeviceResponse, __M
|
|
|
73
73
|
* @see {@link RegisterDeviceCommandOutput} for command's `response` shape.
|
|
74
74
|
* @see {@link CognitoSyncClientResolvedConfig | config} for CognitoSyncClient's `config` shape.
|
|
75
75
|
*
|
|
76
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
77
|
+
* Indicates an internal service
|
|
78
|
+
* error.
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link InvalidConfigurationException} (client fault)
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
83
|
+
* Thrown when a request parameter does not comply
|
|
84
|
+
* with the associated constraints.
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link NotAuthorizedException} (client fault)
|
|
87
|
+
* Thrown when a user is not authorized to access the
|
|
88
|
+
* requested resource.
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
91
|
+
* Thrown if the resource doesn't
|
|
92
|
+
* exist.
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
95
|
+
* Thrown if the request is
|
|
96
|
+
* throttled.
|
|
97
|
+
*
|
|
98
|
+
*
|
|
76
99
|
*/
|
|
77
100
|
export declare class RegisterDeviceCommand extends $Command<RegisterDeviceCommandInput, RegisterDeviceCommandOutput, CognitoSyncClientResolvedConfig> {
|
|
78
101
|
readonly input: RegisterDeviceCommandInput;
|
|
@@ -29,6 +29,27 @@ export interface SetCognitoEventsCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link SetCognitoEventsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CognitoSyncClientResolvedConfig | config} for CognitoSyncClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
33
|
+
* Indicates an internal service
|
|
34
|
+
* error.
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
37
|
+
* Thrown when a request parameter does not comply
|
|
38
|
+
* with the associated constraints.
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link NotAuthorizedException} (client fault)
|
|
41
|
+
* Thrown when a user is not authorized to access the
|
|
42
|
+
* requested resource.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* Thrown if the resource doesn't
|
|
46
|
+
* exist.
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
49
|
+
* Thrown if the request is
|
|
50
|
+
* throttled.
|
|
51
|
+
*
|
|
52
|
+
*
|
|
32
53
|
*/
|
|
33
54
|
export declare class SetCognitoEventsCommand extends $Command<SetCognitoEventsCommandInput, SetCognitoEventsCommandOutput, CognitoSyncClientResolvedConfig> {
|
|
34
55
|
readonly input: SetCognitoEventsCommandInput;
|
|
@@ -79,6 +79,30 @@ export interface SetIdentityPoolConfigurationCommandOutput extends SetIdentityPo
|
|
|
79
79
|
* @see {@link SetIdentityPoolConfigurationCommandOutput} for command's `response` shape.
|
|
80
80
|
* @see {@link CognitoSyncClientResolvedConfig | config} for CognitoSyncClient's `config` shape.
|
|
81
81
|
*
|
|
82
|
+
* @throws {@link ConcurrentModificationException} (client fault)
|
|
83
|
+
* <p>Thrown if there are parallel requests to modify a resource.</p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
86
|
+
* Indicates an internal service
|
|
87
|
+
* error.
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
90
|
+
* Thrown when a request parameter does not comply
|
|
91
|
+
* with the associated constraints.
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link NotAuthorizedException} (client fault)
|
|
94
|
+
* Thrown when a user is not authorized to access the
|
|
95
|
+
* requested resource.
|
|
96
|
+
*
|
|
97
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
98
|
+
* Thrown if the resource doesn't
|
|
99
|
+
* exist.
|
|
100
|
+
*
|
|
101
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
102
|
+
* Thrown if the request is
|
|
103
|
+
* throttled.
|
|
104
|
+
*
|
|
105
|
+
*
|
|
82
106
|
*/
|
|
83
107
|
export declare class SetIdentityPoolConfigurationCommand extends $Command<SetIdentityPoolConfigurationCommandInput, SetIdentityPoolConfigurationCommandOutput, CognitoSyncClientResolvedConfig> {
|
|
84
108
|
readonly input: SetIdentityPoolConfigurationCommandInput;
|
|
@@ -72,6 +72,29 @@ export interface SubscribeToDatasetCommandOutput extends SubscribeToDatasetRespo
|
|
|
72
72
|
* @see {@link SubscribeToDatasetCommandOutput} for command's `response` shape.
|
|
73
73
|
* @see {@link CognitoSyncClientResolvedConfig | config} for CognitoSyncClient's `config` shape.
|
|
74
74
|
*
|
|
75
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
76
|
+
* Indicates an internal service
|
|
77
|
+
* error.
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link InvalidConfigurationException} (client fault)
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
82
|
+
* Thrown when a request parameter does not comply
|
|
83
|
+
* with the associated constraints.
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link NotAuthorizedException} (client fault)
|
|
86
|
+
* Thrown when a user is not authorized to access the
|
|
87
|
+
* requested resource.
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
90
|
+
* Thrown if the resource doesn't
|
|
91
|
+
* exist.
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
94
|
+
* Thrown if the request is
|
|
95
|
+
* throttled.
|
|
96
|
+
*
|
|
97
|
+
*
|
|
75
98
|
*/
|
|
76
99
|
export declare class SubscribeToDatasetCommand extends $Command<SubscribeToDatasetCommandInput, SubscribeToDatasetCommandOutput, CognitoSyncClientResolvedConfig> {
|
|
77
100
|
readonly input: SubscribeToDatasetCommandInput;
|
|
@@ -73,6 +73,29 @@ export interface UnsubscribeFromDatasetCommandOutput extends UnsubscribeFromData
|
|
|
73
73
|
* @see {@link UnsubscribeFromDatasetCommandOutput} for command's `response` shape.
|
|
74
74
|
* @see {@link CognitoSyncClientResolvedConfig | config} for CognitoSyncClient's `config` shape.
|
|
75
75
|
*
|
|
76
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
77
|
+
* Indicates an internal service
|
|
78
|
+
* error.
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link InvalidConfigurationException} (client fault)
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
83
|
+
* Thrown when a request parameter does not comply
|
|
84
|
+
* with the associated constraints.
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link NotAuthorizedException} (client fault)
|
|
87
|
+
* Thrown when a user is not authorized to access the
|
|
88
|
+
* requested resource.
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
91
|
+
* Thrown if the resource doesn't
|
|
92
|
+
* exist.
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
95
|
+
* Thrown if the request is
|
|
96
|
+
* throttled.
|
|
97
|
+
*
|
|
98
|
+
*
|
|
76
99
|
*/
|
|
77
100
|
export declare class UnsubscribeFromDatasetCommand extends $Command<UnsubscribeFromDatasetCommandInput, UnsubscribeFromDatasetCommandOutput, CognitoSyncClientResolvedConfig> {
|
|
78
101
|
readonly input: UnsubscribeFromDatasetCommandInput;
|
|
@@ -31,6 +31,41 @@ export interface UpdateRecordsCommandOutput extends UpdateRecordsResponse, __Met
|
|
|
31
31
|
* @see {@link UpdateRecordsCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CognitoSyncClientResolvedConfig | config} for CognitoSyncClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
35
|
+
* Indicates an internal service
|
|
36
|
+
* error.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidLambdaFunctionOutputException} (client fault)
|
|
39
|
+
* <p>The AWS Lambda function returned invalid output or an exception.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
42
|
+
* Thrown when a request parameter does not comply
|
|
43
|
+
* with the associated constraints.
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link LambdaThrottledException} (client fault)
|
|
46
|
+
* <p>AWS Lambda throttled your account, please contact AWS Support</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
49
|
+
* Thrown when the limit on the number of objects or
|
|
50
|
+
* operations has been exceeded.
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link NotAuthorizedException} (client fault)
|
|
53
|
+
* Thrown when a user is not authorized to access the
|
|
54
|
+
* requested resource.
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link ResourceConflictException} (client fault)
|
|
57
|
+
* Thrown if an update can't be applied because
|
|
58
|
+
* the resource was changed by another call and this would result in a conflict.
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
61
|
+
* Thrown if the resource doesn't
|
|
62
|
+
* exist.
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
65
|
+
* Thrown if the request is
|
|
66
|
+
* throttled.
|
|
67
|
+
*
|
|
68
|
+
*
|
|
34
69
|
*/
|
|
35
70
|
export declare class UpdateRecordsCommand extends $Command<UpdateRecordsCommandInput, UpdateRecordsCommandOutput, CognitoSyncClientResolvedConfig> {
|
|
36
71
|
readonly input: UpdateRecordsCommandInput;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cognito-sync",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cognito Sync Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.290.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,37 +20,37 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.290.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.290.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.290.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.290.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.290.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.290.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.290.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.290.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.290.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.290.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.290.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.290.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.290.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.290.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.290.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.290.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.290.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.290.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.290.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.290.0",
|
|
43
|
+
"@aws-sdk/types": "3.290.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.290.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.290.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.290.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.290.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.290.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.290.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.290.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"tslib": "^2.3.1"
|
|
56
56
|
},
|