@aws-sdk/client-cognito-identity-provider 3.1078.0 → 3.1079.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.
Files changed (36) hide show
  1. package/README.md +14 -0
  2. package/dist-cjs/index.js +97 -5
  3. package/dist-es/CognitoIdentityProvider.js +4 -0
  4. package/dist-es/commands/GetProvisionedLimitCommand.js +4 -0
  5. package/dist-es/commands/UpdateProvisionedLimitCommand.js +4 -0
  6. package/dist-es/commands/index.js +2 -0
  7. package/dist-es/models/enums.js +3 -0
  8. package/dist-es/models/errors.js +12 -0
  9. package/dist-es/schemas/schemas_0.js +62 -5
  10. package/dist-types/CognitoIdentityProvider.d.ts +14 -0
  11. package/dist-types/CognitoIdentityProviderClient.d.ts +4 -2
  12. package/dist-types/commands/GetProvisionedLimitCommand.d.ts +152 -0
  13. package/dist-types/commands/StopUserImportJobCommand.d.ts +2 -1
  14. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  15. package/dist-types/commands/UntagResourceCommand.d.ts +1 -2
  16. package/dist-types/commands/UpdateProvisionedLimitCommand.d.ts +161 -0
  17. package/dist-types/commands/index.d.ts +2 -0
  18. package/dist-types/models/enums.d.ts +11 -0
  19. package/dist-types/models/errors.d.ts +12 -0
  20. package/dist-types/models/models_0.d.ts +64 -49
  21. package/dist-types/models/models_1.d.ts +75 -1
  22. package/dist-types/schemas/schemas_0.d.ts +9 -0
  23. package/dist-types/ts3.4/CognitoIdentityProvider.d.ts +34 -0
  24. package/dist-types/ts3.4/CognitoIdentityProviderClient.d.ts +12 -0
  25. package/dist-types/ts3.4/commands/GetProvisionedLimitCommand.d.ts +44 -0
  26. package/dist-types/ts3.4/commands/StopUserImportJobCommand.d.ts +2 -4
  27. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  28. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -2
  29. package/dist-types/ts3.4/commands/UpdateProvisionedLimitCommand.d.ts +44 -0
  30. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  31. package/dist-types/ts3.4/models/enums.d.ts +4 -0
  32. package/dist-types/ts3.4/models/errors.d.ts +7 -0
  33. package/dist-types/ts3.4/models/models_0.d.ts +16 -12
  34. package/dist-types/ts3.4/models/models_1.d.ts +22 -0
  35. package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -0
  36. package/package.json +3 -3
@@ -1,6 +1,54 @@
1
1
  import type { DocumentType as __DocumentType } from "@smithy/types";
2
2
  import type { DeletionProtectionType, DeviceRememberedStatusType, ExplicitAuthFlowsType, FeedbackValueType, OAuthFlowType, PreventUserExistenceErrorTypes, TermsEnforcementType, TermsSourceType, UpdateReplicaStatusType, UserPoolMfaType, UserPoolTierType, VerifiedAttributeType, VerifySoftwareTokenResponseType } from "./enums";
3
- import type { AccountRecoverySettingType, AdminCreateUserConfigType, AnalyticsConfigurationType, AssetType, AttributeType, CodeDeliveryDetailsType, CustomDomainConfigType, DeviceConfigurationType, EmailConfigurationType, GroupType, IdentityProviderType, IssuerConfigurationType, KeyConfigurationType, LambdaConfigType, ManagedLoginBrandingType, RefreshTokenRotationType, ResourceServerScopeType, ResourceServerType, RoutingType, SmsConfigurationType, TermsType, TokenValidityUnitsType, UserAttributeUpdateSettingsType, UserPoolAddOnsType, UserPoolClientType, UserPoolPolicyType, UserPoolReplicaType, VerificationMessageTemplateType } from "./models_0";
3
+ import type { AccountRecoverySettingType, AdminCreateUserConfigType, AnalyticsConfigurationType, AssetType, AttributeType, CodeDeliveryDetailsType, CustomDomainConfigType, DeviceConfigurationType, EmailConfigurationType, GroupType, IdentityProviderType, IssuerConfigurationType, KeyConfigurationType, LambdaConfigType, LimitDefinitionType, LimitType, ManagedLoginBrandingType, RefreshTokenRotationType, ResourceServerScopeType, ResourceServerType, RoutingType, SmsConfigurationType, TermsType, TokenValidityUnitsType, UserAttributeUpdateSettingsType, UserImportJobType, UserPoolAddOnsType, UserPoolClientType, UserPoolPolicyType, UserPoolReplicaType, VerificationMessageTemplateType } from "./models_0";
4
+ /**
5
+ * <p>Represents the response from the server to the request to stop the user import
6
+ * job.</p>
7
+ * @public
8
+ */
9
+ export interface StopUserImportJobResponse {
10
+ /**
11
+ * <p>The details of the user import job. Includes logging destination, status, and the Amazon S3
12
+ * pre-signed URL for CSV upload.</p>
13
+ * @public
14
+ */
15
+ UserImportJob?: UserImportJobType | undefined;
16
+ }
17
+ /**
18
+ * @public
19
+ */
20
+ export interface TagResourceRequest {
21
+ /**
22
+ * <p>The Amazon Resource Name (ARN) of the user pool to assign the tags to.</p>
23
+ * @public
24
+ */
25
+ ResourceArn: string | undefined;
26
+ /**
27
+ * <p>An array of tag keys and values that you want to assign to the user pool.</p>
28
+ * @public
29
+ */
30
+ Tags: Record<string, string> | undefined;
31
+ }
32
+ /**
33
+ * @public
34
+ */
35
+ export interface TagResourceResponse {
36
+ }
37
+ /**
38
+ * @public
39
+ */
40
+ export interface UntagResourceRequest {
41
+ /**
42
+ * <p>The Amazon Resource Name (ARN) of the user pool that the tags are assigned to.</p>
43
+ * @public
44
+ */
45
+ ResourceArn: string | undefined;
46
+ /**
47
+ * <p>An array of tag keys that you want to remove from the user pool.</p>
48
+ * @public
49
+ */
50
+ TagKeys: string[] | undefined;
51
+ }
4
52
  /**
5
53
  * @public
6
54
  */
@@ -374,6 +422,32 @@ export interface UpdateManagedLoginBrandingResponse {
374
422
  */
375
423
  ManagedLoginBranding?: ManagedLoginBrandingType | undefined;
376
424
  }
425
+ /**
426
+ * @public
427
+ */
428
+ export interface UpdateProvisionedLimitRequest {
429
+ /**
430
+ * <p>The limit to update. Specify the limit class and the attributes that identify the
431
+ * limit.</p>
432
+ * @public
433
+ */
434
+ LimitDefinition: LimitDefinitionType | undefined;
435
+ /**
436
+ * <p>The provisioned rate to set, in requests per second (RPS).</p>
437
+ * @public
438
+ */
439
+ RequestedLimitValue: number | undefined;
440
+ }
441
+ /**
442
+ * @public
443
+ */
444
+ export interface UpdateProvisionedLimitResponse {
445
+ /**
446
+ * <p>The updated provisioned and default limit values.</p>
447
+ * @public
448
+ */
449
+ Limit: LimitType | undefined;
450
+ }
377
451
  /**
378
452
  * @public
379
453
  */
@@ -34,6 +34,7 @@ export declare var PreconditionNotMetException$: StaticErrorSchema;
34
34
  export declare var RefreshTokenReuseException$: StaticErrorSchema;
35
35
  export declare var ResourceNotFoundException$: StaticErrorSchema;
36
36
  export declare var ScopeDoesNotExistException$: StaticErrorSchema;
37
+ export declare var ServiceQuotaExceededException$: StaticErrorSchema;
37
38
  export declare var SoftwareTokenMFANotFoundException$: StaticErrorSchema;
38
39
  export declare var TermsExistsException$: StaticErrorSchema;
39
40
  export declare var TierChangeNotAllowedException$: StaticErrorSchema;
@@ -234,6 +235,8 @@ export declare var GetIdentityProviderByIdentifierRequest$: StaticStructureSchem
234
235
  export declare var GetIdentityProviderByIdentifierResponse$: StaticStructureSchema;
235
236
  export declare var GetLogDeliveryConfigurationRequest$: StaticStructureSchema;
236
237
  export declare var GetLogDeliveryConfigurationResponse$: StaticStructureSchema;
238
+ export declare var GetProvisionedLimitRequest$: StaticStructureSchema;
239
+ export declare var GetProvisionedLimitResponse$: StaticStructureSchema;
237
240
  export declare var GetSigningCertificateRequest$: StaticStructureSchema;
238
241
  export declare var GetSigningCertificateResponse$: StaticStructureSchema;
239
242
  export declare var GetTokensFromRefreshTokenRequest$: StaticStructureSchema;
@@ -259,6 +262,8 @@ export declare var InitiateAuthResponse$: StaticStructureSchema;
259
262
  export declare var IssuerConfigurationType$: StaticStructureSchema;
260
263
  export declare var KeyConfigurationType$: StaticStructureSchema;
261
264
  export declare var LambdaConfigType$: StaticStructureSchema;
265
+ export declare var LimitDefinitionType$: StaticStructureSchema;
266
+ export declare var LimitType$: StaticStructureSchema;
262
267
  export declare var ListDevicesRequest$: StaticStructureSchema;
263
268
  export declare var ListDevicesResponse$: StaticStructureSchema;
264
269
  export declare var ListGroupsRequest$: StaticStructureSchema;
@@ -360,6 +365,8 @@ export declare var UpdateIdentityProviderRequest$: StaticStructureSchema;
360
365
  export declare var UpdateIdentityProviderResponse$: StaticStructureSchema;
361
366
  export declare var UpdateManagedLoginBrandingRequest$: StaticStructureSchema;
362
367
  export declare var UpdateManagedLoginBrandingResponse$: StaticStructureSchema;
368
+ export declare var UpdateProvisionedLimitRequest$: StaticStructureSchema;
369
+ export declare var UpdateProvisionedLimitResponse$: StaticStructureSchema;
363
370
  export declare var UpdateResourceServerRequest$: StaticStructureSchema;
364
371
  export declare var UpdateResourceServerResponse$: StaticStructureSchema;
365
372
  export declare var UpdateTermsRequest$: StaticStructureSchema;
@@ -468,6 +475,7 @@ export declare var GetDevice$: StaticOperationSchema;
468
475
  export declare var GetGroup$: StaticOperationSchema;
469
476
  export declare var GetIdentityProviderByIdentifier$: StaticOperationSchema;
470
477
  export declare var GetLogDeliveryConfiguration$: StaticOperationSchema;
478
+ export declare var GetProvisionedLimit$: StaticOperationSchema;
471
479
  export declare var GetSigningCertificate$: StaticOperationSchema;
472
480
  export declare var GetTokensFromRefreshToken$: StaticOperationSchema;
473
481
  export declare var GetUICustomization$: StaticOperationSchema;
@@ -511,6 +519,7 @@ export declare var UpdateDeviceStatus$: StaticOperationSchema;
511
519
  export declare var UpdateGroup$: StaticOperationSchema;
512
520
  export declare var UpdateIdentityProvider$: StaticOperationSchema;
513
521
  export declare var UpdateManagedLoginBranding$: StaticOperationSchema;
522
+ export declare var UpdateProvisionedLimit$: StaticOperationSchema;
514
523
  export declare var UpdateResourceServer$: StaticOperationSchema;
515
524
  export declare var UpdateTerms$: StaticOperationSchema;
516
525
  export declare var UpdateUserAttributes$: StaticOperationSchema;
@@ -300,6 +300,10 @@ import {
300
300
  GetLogDeliveryConfigurationCommandInput,
301
301
  GetLogDeliveryConfigurationCommandOutput,
302
302
  } from "./commands/GetLogDeliveryConfigurationCommand";
303
+ import {
304
+ GetProvisionedLimitCommandInput,
305
+ GetProvisionedLimitCommandOutput,
306
+ } from "./commands/GetProvisionedLimitCommand";
303
307
  import {
304
308
  GetSigningCertificateCommandInput,
305
309
  GetSigningCertificateCommandOutput,
@@ -472,6 +476,10 @@ import {
472
476
  UpdateManagedLoginBrandingCommandInput,
473
477
  UpdateManagedLoginBrandingCommandOutput,
474
478
  } from "./commands/UpdateManagedLoginBrandingCommand";
479
+ import {
480
+ UpdateProvisionedLimitCommandInput,
481
+ UpdateProvisionedLimitCommandOutput,
482
+ } from "./commands/UpdateProvisionedLimitCommand";
475
483
  import {
476
484
  UpdateResourceServerCommandInput,
477
485
  UpdateResourceServerCommandOutput,
@@ -1478,6 +1486,19 @@ export interface CognitoIdentityProvider {
1478
1486
  options: __HttpHandlerOptions,
1479
1487
  cb: (err: any, data?: GetLogDeliveryConfigurationCommandOutput) => void
1480
1488
  ): void;
1489
+ getProvisionedLimit(
1490
+ args: GetProvisionedLimitCommandInput,
1491
+ options?: __HttpHandlerOptions
1492
+ ): Promise<GetProvisionedLimitCommandOutput>;
1493
+ getProvisionedLimit(
1494
+ args: GetProvisionedLimitCommandInput,
1495
+ cb: (err: any, data?: GetProvisionedLimitCommandOutput) => void
1496
+ ): void;
1497
+ getProvisionedLimit(
1498
+ args: GetProvisionedLimitCommandInput,
1499
+ options: __HttpHandlerOptions,
1500
+ cb: (err: any, data?: GetProvisionedLimitCommandOutput) => void
1501
+ ): void;
1481
1502
  getSigningCertificate(
1482
1503
  args: GetSigningCertificateCommandInput,
1483
1504
  options?: __HttpHandlerOptions
@@ -2038,6 +2059,19 @@ export interface CognitoIdentityProvider {
2038
2059
  options: __HttpHandlerOptions,
2039
2060
  cb: (err: any, data?: UpdateManagedLoginBrandingCommandOutput) => void
2040
2061
  ): void;
2062
+ updateProvisionedLimit(
2063
+ args: UpdateProvisionedLimitCommandInput,
2064
+ options?: __HttpHandlerOptions
2065
+ ): Promise<UpdateProvisionedLimitCommandOutput>;
2066
+ updateProvisionedLimit(
2067
+ args: UpdateProvisionedLimitCommandInput,
2068
+ cb: (err: any, data?: UpdateProvisionedLimitCommandOutput) => void
2069
+ ): void;
2070
+ updateProvisionedLimit(
2071
+ args: UpdateProvisionedLimitCommandInput,
2072
+ options: __HttpHandlerOptions,
2073
+ cb: (err: any, data?: UpdateProvisionedLimitCommandOutput) => void
2074
+ ): void;
2041
2075
  updateResourceServer(
2042
2076
  args: UpdateResourceServerCommandInput,
2043
2077
  options?: __HttpHandlerOptions
@@ -332,6 +332,10 @@ import {
332
332
  GetLogDeliveryConfigurationCommandInput,
333
333
  GetLogDeliveryConfigurationCommandOutput,
334
334
  } from "./commands/GetLogDeliveryConfigurationCommand";
335
+ import {
336
+ GetProvisionedLimitCommandInput,
337
+ GetProvisionedLimitCommandOutput,
338
+ } from "./commands/GetProvisionedLimitCommand";
335
339
  import {
336
340
  GetSigningCertificateCommandInput,
337
341
  GetSigningCertificateCommandOutput,
@@ -504,6 +508,10 @@ import {
504
508
  UpdateManagedLoginBrandingCommandInput,
505
509
  UpdateManagedLoginBrandingCommandOutput,
506
510
  } from "./commands/UpdateManagedLoginBrandingCommand";
511
+ import {
512
+ UpdateProvisionedLimitCommandInput,
513
+ UpdateProvisionedLimitCommandOutput,
514
+ } from "./commands/UpdateProvisionedLimitCommand";
507
515
  import {
508
516
  UpdateResourceServerCommandInput,
509
517
  UpdateResourceServerCommandOutput,
@@ -622,6 +630,7 @@ export type ServiceInputTypes =
622
630
  | GetGroupCommandInput
623
631
  | GetIdentityProviderByIdentifierCommandInput
624
632
  | GetLogDeliveryConfigurationCommandInput
633
+ | GetProvisionedLimitCommandInput
625
634
  | GetSigningCertificateCommandInput
626
635
  | GetTokensFromRefreshTokenCommandInput
627
636
  | GetUICustomizationCommandInput
@@ -665,6 +674,7 @@ export type ServiceInputTypes =
665
674
  | UpdateGroupCommandInput
666
675
  | UpdateIdentityProviderCommandInput
667
676
  | UpdateManagedLoginBrandingCommandInput
677
+ | UpdateProvisionedLimitCommandInput
668
678
  | UpdateResourceServerCommandInput
669
679
  | UpdateTermsCommandInput
670
680
  | UpdateUserAttributesCommandInput
@@ -749,6 +759,7 @@ export type ServiceOutputTypes =
749
759
  | GetGroupCommandOutput
750
760
  | GetIdentityProviderByIdentifierCommandOutput
751
761
  | GetLogDeliveryConfigurationCommandOutput
762
+ | GetProvisionedLimitCommandOutput
752
763
  | GetSigningCertificateCommandOutput
753
764
  | GetTokensFromRefreshTokenCommandOutput
754
765
  | GetUICustomizationCommandOutput
@@ -792,6 +803,7 @@ export type ServiceOutputTypes =
792
803
  | UpdateGroupCommandOutput
793
804
  | UpdateIdentityProviderCommandOutput
794
805
  | UpdateManagedLoginBrandingCommandOutput
806
+ | UpdateProvisionedLimitCommandOutput
795
807
  | UpdateResourceServerCommandOutput
796
808
  | UpdateTermsCommandOutput
797
809
  | UpdateUserAttributesCommandOutput
@@ -0,0 +1,44 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ GetProvisionedLimitRequest,
4
+ GetProvisionedLimitResponse,
5
+ } from "../models/models_0";
6
+ export { __MetadataBearer };
7
+ export interface GetProvisionedLimitCommandInput
8
+ extends GetProvisionedLimitRequest {}
9
+ export interface GetProvisionedLimitCommandOutput
10
+ extends GetProvisionedLimitResponse,
11
+ __MetadataBearer {}
12
+ declare const GetProvisionedLimitCommand_base: {
13
+ new (
14
+ input: GetProvisionedLimitCommandInput
15
+ ): import("@smithy/core/client").CommandImpl<
16
+ GetProvisionedLimitCommandInput,
17
+ GetProvisionedLimitCommandOutput,
18
+ import("..").CognitoIdentityProviderClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
21
+ >;
22
+ new (
23
+ input: GetProvisionedLimitCommandInput
24
+ ): import("@smithy/core/client").CommandImpl<
25
+ GetProvisionedLimitCommandInput,
26
+ GetProvisionedLimitCommandOutput,
27
+ import("..").CognitoIdentityProviderClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
30
+ >;
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
32
+ };
33
+ export declare class GetProvisionedLimitCommand extends GetProvisionedLimitCommand_base {
34
+ protected static __types: {
35
+ api: {
36
+ input: GetProvisionedLimitRequest;
37
+ output: GetProvisionedLimitResponse;
38
+ };
39
+ sdk: {
40
+ input: GetProvisionedLimitCommandInput;
41
+ output: GetProvisionedLimitCommandOutput;
42
+ };
43
+ };
44
+ }
@@ -1,8 +1,6 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- StopUserImportJobRequest,
4
- StopUserImportJobResponse,
5
- } from "../models/models_0";
2
+ import { StopUserImportJobRequest } from "../models/models_0";
3
+ import { StopUserImportJobResponse } from "../models/models_1";
6
4
  export { __MetadataBearer };
7
5
  export interface StopUserImportJobCommandInput
8
6
  extends StopUserImportJobRequest {}
@@ -1,5 +1,5 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
2
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_1";
3
3
  export { __MetadataBearer };
4
4
  export interface TagResourceCommandInput extends TagResourceRequest {}
5
5
  export interface TagResourceCommandOutput
@@ -1,6 +1,8 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { UntagResourceRequest } from "../models/models_0";
3
- import { UntagResourceResponse } from "../models/models_1";
2
+ import {
3
+ UntagResourceRequest,
4
+ UntagResourceResponse,
5
+ } from "../models/models_1";
4
6
  export { __MetadataBearer };
5
7
  export interface UntagResourceCommandInput extends UntagResourceRequest {}
6
8
  export interface UntagResourceCommandOutput
@@ -0,0 +1,44 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ UpdateProvisionedLimitRequest,
4
+ UpdateProvisionedLimitResponse,
5
+ } from "../models/models_1";
6
+ export { __MetadataBearer };
7
+ export interface UpdateProvisionedLimitCommandInput
8
+ extends UpdateProvisionedLimitRequest {}
9
+ export interface UpdateProvisionedLimitCommandOutput
10
+ extends UpdateProvisionedLimitResponse,
11
+ __MetadataBearer {}
12
+ declare const UpdateProvisionedLimitCommand_base: {
13
+ new (
14
+ input: UpdateProvisionedLimitCommandInput
15
+ ): import("@smithy/core/client").CommandImpl<
16
+ UpdateProvisionedLimitCommandInput,
17
+ UpdateProvisionedLimitCommandOutput,
18
+ import("..").CognitoIdentityProviderClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
21
+ >;
22
+ new (
23
+ input: UpdateProvisionedLimitCommandInput
24
+ ): import("@smithy/core/client").CommandImpl<
25
+ UpdateProvisionedLimitCommandInput,
26
+ UpdateProvisionedLimitCommandOutput,
27
+ import("..").CognitoIdentityProviderClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
30
+ >;
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
32
+ };
33
+ export declare class UpdateProvisionedLimitCommand extends UpdateProvisionedLimitCommand_base {
34
+ protected static __types: {
35
+ api: {
36
+ input: UpdateProvisionedLimitRequest;
37
+ output: UpdateProvisionedLimitResponse;
38
+ };
39
+ sdk: {
40
+ input: UpdateProvisionedLimitCommandInput;
41
+ output: UpdateProvisionedLimitCommandOutput;
42
+ };
43
+ };
44
+ }
@@ -72,6 +72,7 @@ export * from "./GetDeviceCommand";
72
72
  export * from "./GetGroupCommand";
73
73
  export * from "./GetIdentityProviderByIdentifierCommand";
74
74
  export * from "./GetLogDeliveryConfigurationCommand";
75
+ export * from "./GetProvisionedLimitCommand";
75
76
  export * from "./GetSigningCertificateCommand";
76
77
  export * from "./GetTokensFromRefreshTokenCommand";
77
78
  export * from "./GetUICustomizationCommand";
@@ -115,6 +116,7 @@ export * from "./UpdateDeviceStatusCommand";
115
116
  export * from "./UpdateGroupCommand";
116
117
  export * from "./UpdateIdentityProviderCommand";
117
118
  export * from "./UpdateManagedLoginBrandingCommand";
119
+ export * from "./UpdateProvisionedLimitCommand";
118
120
  export * from "./UpdateResourceServerCommand";
119
121
  export * from "./UpdateTermsCommand";
120
122
  export * from "./UpdateUserAttributesCommand";
@@ -395,6 +395,10 @@ export declare const LogLevel: {
395
395
  readonly INFO: "INFO";
396
396
  };
397
397
  export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
398
+ export declare const LimitClass: {
399
+ readonly API_CATEGORY: "API_CATEGORY";
400
+ };
401
+ export type LimitClass = (typeof LimitClass)[keyof typeof LimitClass];
398
402
  export declare const WebAuthnFactorConfigurationType: {
399
403
  readonly MULTI_FACTOR_WITH_USER_VERIFICATION: "MULTI_FACTOR_WITH_USER_VERIFICATION";
400
404
  readonly SINGLE_FACTOR: "SINGLE_FACTOR";
@@ -449,6 +449,13 @@ export declare class WebAuthnConfigurationMissingException extends __BaseExcepti
449
449
  >
450
450
  );
451
451
  }
452
+ export declare class ServiceQuotaExceededException extends __BaseException {
453
+ readonly name: "ServiceQuotaExceededException";
454
+ readonly $fault: "client";
455
+ constructor(
456
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
457
+ );
458
+ }
452
459
  export declare class EnableSoftwareTokenMFAException extends __BaseException {
453
460
  readonly name: "EnableSoftwareTokenMFAException";
454
461
  readonly $fault: "client";
@@ -33,6 +33,7 @@ import {
33
33
  IdentityProviderTypeType,
34
34
  InboundFederationLambdaVersionType,
35
35
  IssuerType,
36
+ LimitClass,
36
37
  LogLevel,
37
38
  MessageActionType,
38
39
  OAuthFlowType,
@@ -1146,6 +1147,21 @@ export interface LogDeliveryConfigurationType {
1146
1147
  export interface GetLogDeliveryConfigurationResponse {
1147
1148
  LogDeliveryConfiguration?: LogDeliveryConfigurationType | undefined;
1148
1149
  }
1150
+ export interface LimitDefinitionType {
1151
+ LimitClass: LimitClass | undefined;
1152
+ Attributes: Record<string, string> | undefined;
1153
+ }
1154
+ export interface GetProvisionedLimitRequest {
1155
+ LimitDefinition: LimitDefinitionType | undefined;
1156
+ }
1157
+ export interface LimitType {
1158
+ LimitDefinition: LimitDefinitionType | undefined;
1159
+ ProvisionedLimitValue: number | undefined;
1160
+ FreeLimitValue: number | undefined;
1161
+ }
1162
+ export interface GetProvisionedLimitResponse {
1163
+ Limit: LimitType | undefined;
1164
+ }
1149
1165
  export interface GetSigningCertificateRequest {
1150
1166
  UserPoolId: string | undefined;
1151
1167
  }
@@ -1534,15 +1550,3 @@ export interface StopUserImportJobRequest {
1534
1550
  UserPoolId: string | undefined;
1535
1551
  JobId: string | undefined;
1536
1552
  }
1537
- export interface StopUserImportJobResponse {
1538
- UserImportJob?: UserImportJobType | undefined;
1539
- }
1540
- export interface TagResourceRequest {
1541
- ResourceArn: string | undefined;
1542
- Tags: Record<string, string> | undefined;
1543
- }
1544
- export interface TagResourceResponse {}
1545
- export interface UntagResourceRequest {
1546
- ResourceArn: string | undefined;
1547
- TagKeys: string[] | undefined;
1548
- }
@@ -29,6 +29,8 @@ import {
29
29
  IssuerConfigurationType,
30
30
  KeyConfigurationType,
31
31
  LambdaConfigType,
32
+ LimitDefinitionType,
33
+ LimitType,
32
34
  ManagedLoginBrandingType,
33
35
  RefreshTokenRotationType,
34
36
  ResourceServerScopeType,
@@ -38,12 +40,25 @@ import {
38
40
  TermsType,
39
41
  TokenValidityUnitsType,
40
42
  UserAttributeUpdateSettingsType,
43
+ UserImportJobType,
41
44
  UserPoolAddOnsType,
42
45
  UserPoolClientType,
43
46
  UserPoolPolicyType,
44
47
  UserPoolReplicaType,
45
48
  VerificationMessageTemplateType,
46
49
  } from "./models_0";
50
+ export interface StopUserImportJobResponse {
51
+ UserImportJob?: UserImportJobType | undefined;
52
+ }
53
+ export interface TagResourceRequest {
54
+ ResourceArn: string | undefined;
55
+ Tags: Record<string, string> | undefined;
56
+ }
57
+ export interface TagResourceResponse {}
58
+ export interface UntagResourceRequest {
59
+ ResourceArn: string | undefined;
60
+ TagKeys: string[] | undefined;
61
+ }
47
62
  export interface UntagResourceResponse {}
48
63
  export interface UpdateAuthEventFeedbackRequest {
49
64
  UserPoolId: string | undefined;
@@ -89,6 +104,13 @@ export interface UpdateManagedLoginBrandingRequest {
89
104
  export interface UpdateManagedLoginBrandingResponse {
90
105
  ManagedLoginBranding?: ManagedLoginBrandingType | undefined;
91
106
  }
107
+ export interface UpdateProvisionedLimitRequest {
108
+ LimitDefinition: LimitDefinitionType | undefined;
109
+ RequestedLimitValue: number | undefined;
110
+ }
111
+ export interface UpdateProvisionedLimitResponse {
112
+ Limit: LimitType | undefined;
113
+ }
92
114
  export interface UpdateResourceServerRequest {
93
115
  UserPoolId: string | undefined;
94
116
  Identifier: string | undefined;
@@ -38,6 +38,7 @@ export declare var PreconditionNotMetException$: StaticErrorSchema;
38
38
  export declare var RefreshTokenReuseException$: StaticErrorSchema;
39
39
  export declare var ResourceNotFoundException$: StaticErrorSchema;
40
40
  export declare var ScopeDoesNotExistException$: StaticErrorSchema;
41
+ export declare var ServiceQuotaExceededException$: StaticErrorSchema;
41
42
  export declare var SoftwareTokenMFANotFoundException$: StaticErrorSchema;
42
43
  export declare var TermsExistsException$: StaticErrorSchema;
43
44
  export declare var TierChangeNotAllowedException$: StaticErrorSchema;
@@ -233,6 +234,8 @@ export declare var GetIdentityProviderByIdentifierRequest$: StaticStructureSchem
233
234
  export declare var GetIdentityProviderByIdentifierResponse$: StaticStructureSchema;
234
235
  export declare var GetLogDeliveryConfigurationRequest$: StaticStructureSchema;
235
236
  export declare var GetLogDeliveryConfigurationResponse$: StaticStructureSchema;
237
+ export declare var GetProvisionedLimitRequest$: StaticStructureSchema;
238
+ export declare var GetProvisionedLimitResponse$: StaticStructureSchema;
236
239
  export declare var GetSigningCertificateRequest$: StaticStructureSchema;
237
240
  export declare var GetSigningCertificateResponse$: StaticStructureSchema;
238
241
  export declare var GetTokensFromRefreshTokenRequest$: StaticStructureSchema;
@@ -258,6 +261,8 @@ export declare var InitiateAuthResponse$: StaticStructureSchema;
258
261
  export declare var IssuerConfigurationType$: StaticStructureSchema;
259
262
  export declare var KeyConfigurationType$: StaticStructureSchema;
260
263
  export declare var LambdaConfigType$: StaticStructureSchema;
264
+ export declare var LimitDefinitionType$: StaticStructureSchema;
265
+ export declare var LimitType$: StaticStructureSchema;
261
266
  export declare var ListDevicesRequest$: StaticStructureSchema;
262
267
  export declare var ListDevicesResponse$: StaticStructureSchema;
263
268
  export declare var ListGroupsRequest$: StaticStructureSchema;
@@ -359,6 +364,8 @@ export declare var UpdateIdentityProviderRequest$: StaticStructureSchema;
359
364
  export declare var UpdateIdentityProviderResponse$: StaticStructureSchema;
360
365
  export declare var UpdateManagedLoginBrandingRequest$: StaticStructureSchema;
361
366
  export declare var UpdateManagedLoginBrandingResponse$: StaticStructureSchema;
367
+ export declare var UpdateProvisionedLimitRequest$: StaticStructureSchema;
368
+ export declare var UpdateProvisionedLimitResponse$: StaticStructureSchema;
362
369
  export declare var UpdateResourceServerRequest$: StaticStructureSchema;
363
370
  export declare var UpdateResourceServerResponse$: StaticStructureSchema;
364
371
  export declare var UpdateTermsRequest$: StaticStructureSchema;
@@ -467,6 +474,7 @@ export declare var GetDevice$: StaticOperationSchema;
467
474
  export declare var GetGroup$: StaticOperationSchema;
468
475
  export declare var GetIdentityProviderByIdentifier$: StaticOperationSchema;
469
476
  export declare var GetLogDeliveryConfiguration$: StaticOperationSchema;
477
+ export declare var GetProvisionedLimit$: StaticOperationSchema;
470
478
  export declare var GetSigningCertificate$: StaticOperationSchema;
471
479
  export declare var GetTokensFromRefreshToken$: StaticOperationSchema;
472
480
  export declare var GetUICustomization$: StaticOperationSchema;
@@ -510,6 +518,7 @@ export declare var UpdateDeviceStatus$: StaticOperationSchema;
510
518
  export declare var UpdateGroup$: StaticOperationSchema;
511
519
  export declare var UpdateIdentityProvider$: StaticOperationSchema;
512
520
  export declare var UpdateManagedLoginBranding$: StaticOperationSchema;
521
+ export declare var UpdateProvisionedLimit$: StaticOperationSchema;
513
522
  export declare var UpdateResourceServer$: StaticOperationSchema;
514
523
  export declare var UpdateTerms$: StaticOperationSchema;
515
524
  export declare var UpdateUserAttributes$: StaticOperationSchema;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cognito-identity-provider",
3
3
  "description": "AWS SDK for JavaScript Cognito Identity Provider Client for Node.js, Browser and React Native",
4
- "version": "3.1078.0",
4
+ "version": "3.1079.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline",
@@ -19,8 +19,8 @@
19
19
  "module": "./dist-es/index.js",
20
20
  "sideEffects": false,
21
21
  "dependencies": {
22
- "@aws-sdk/core": "^3.974.26",
23
- "@aws-sdk/credential-provider-node": "^3.972.61",
22
+ "@aws-sdk/core": "^3.974.27",
23
+ "@aws-sdk/credential-provider-node": "^3.972.62",
24
24
  "@aws-sdk/types": "^3.973.15",
25
25
  "@smithy/core": "^3.29.0",
26
26
  "@smithy/fetch-http-handler": "^5.6.2",