@aws-sdk/client-cognito-identity-provider 3.721.0 → 3.726.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-cjs/index.js +786 -609
- package/dist-es/CognitoIdentityProviderClient.js +1 -0
- package/dist-es/models/models_0.js +95 -94
- package/dist-es/models/models_1.js +10 -10
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -444,7 +444,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
444
444
|
}, "resolveRuntimeExtensions");
|
|
445
445
|
|
|
446
446
|
// src/CognitoIdentityProviderClient.ts
|
|
447
|
-
var
|
|
447
|
+
var CognitoIdentityProviderClient = class extends import_smithy_client.Client {
|
|
448
|
+
static {
|
|
449
|
+
__name(this, "CognitoIdentityProviderClient");
|
|
450
|
+
}
|
|
451
|
+
/**
|
|
452
|
+
* The resolved configuration of CognitoIdentityProviderClient class. This is resolved and normalized from the {@link CognitoIdentityProviderClientConfig | constructor configuration interface}.
|
|
453
|
+
*/
|
|
454
|
+
config;
|
|
448
455
|
constructor(...[configuration]) {
|
|
449
456
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
450
457
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -454,7 +461,7 @@ var _CognitoIdentityProviderClient = class _CognitoIdentityProviderClient extend
|
|
|
454
461
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
455
462
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
456
463
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
457
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
464
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
458
465
|
super(_config_8);
|
|
459
466
|
this.config = _config_8;
|
|
460
467
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -482,8 +489,6 @@ var _CognitoIdentityProviderClient = class _CognitoIdentityProviderClient extend
|
|
|
482
489
|
super.destroy();
|
|
483
490
|
}
|
|
484
491
|
};
|
|
485
|
-
__name(_CognitoIdentityProviderClient, "CognitoIdentityProviderClient");
|
|
486
|
-
var CognitoIdentityProviderClient = _CognitoIdentityProviderClient;
|
|
487
492
|
|
|
488
493
|
// src/CognitoIdentityProvider.ts
|
|
489
494
|
|
|
@@ -500,7 +505,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
500
505
|
|
|
501
506
|
// src/models/CognitoIdentityProviderServiceException.ts
|
|
502
507
|
|
|
503
|
-
var
|
|
508
|
+
var CognitoIdentityProviderServiceException = class _CognitoIdentityProviderServiceException extends import_smithy_client.ServiceException {
|
|
509
|
+
static {
|
|
510
|
+
__name(this, "CognitoIdentityProviderServiceException");
|
|
511
|
+
}
|
|
504
512
|
/**
|
|
505
513
|
* @internal
|
|
506
514
|
*/
|
|
@@ -509,8 +517,6 @@ var _CognitoIdentityProviderServiceException = class _CognitoIdentityProviderSer
|
|
|
509
517
|
Object.setPrototypeOf(this, _CognitoIdentityProviderServiceException.prototype);
|
|
510
518
|
}
|
|
511
519
|
};
|
|
512
|
-
__name(_CognitoIdentityProviderServiceException, "CognitoIdentityProviderServiceException");
|
|
513
|
-
var CognitoIdentityProviderServiceException = _CognitoIdentityProviderServiceException;
|
|
514
520
|
|
|
515
521
|
// src/models/models_0.ts
|
|
516
522
|
|
|
@@ -531,7 +537,12 @@ var AttributeDataType = {
|
|
|
531
537
|
NUMBER: "Number",
|
|
532
538
|
STRING: "String"
|
|
533
539
|
};
|
|
534
|
-
var
|
|
540
|
+
var InternalErrorException = class _InternalErrorException extends CognitoIdentityProviderServiceException {
|
|
541
|
+
static {
|
|
542
|
+
__name(this, "InternalErrorException");
|
|
543
|
+
}
|
|
544
|
+
name = "InternalErrorException";
|
|
545
|
+
$fault = "server";
|
|
535
546
|
/**
|
|
536
547
|
* @internal
|
|
537
548
|
*/
|
|
@@ -541,14 +552,20 @@ var _InternalErrorException = class _InternalErrorException extends CognitoIdent
|
|
|
541
552
|
$fault: "server",
|
|
542
553
|
...opts
|
|
543
554
|
});
|
|
544
|
-
this.name = "InternalErrorException";
|
|
545
|
-
this.$fault = "server";
|
|
546
555
|
Object.setPrototypeOf(this, _InternalErrorException.prototype);
|
|
547
556
|
}
|
|
548
557
|
};
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
558
|
+
var InvalidParameterException = class _InvalidParameterException extends CognitoIdentityProviderServiceException {
|
|
559
|
+
static {
|
|
560
|
+
__name(this, "InvalidParameterException");
|
|
561
|
+
}
|
|
562
|
+
name = "InvalidParameterException";
|
|
563
|
+
$fault = "client";
|
|
564
|
+
/**
|
|
565
|
+
* <p>The reason code of the exception.</p>
|
|
566
|
+
* @public
|
|
567
|
+
*/
|
|
568
|
+
reasonCode;
|
|
552
569
|
/**
|
|
553
570
|
* @internal
|
|
554
571
|
*/
|
|
@@ -558,15 +575,16 @@ var _InvalidParameterException = class _InvalidParameterException extends Cognit
|
|
|
558
575
|
$fault: "client",
|
|
559
576
|
...opts
|
|
560
577
|
});
|
|
561
|
-
this.name = "InvalidParameterException";
|
|
562
|
-
this.$fault = "client";
|
|
563
578
|
Object.setPrototypeOf(this, _InvalidParameterException.prototype);
|
|
564
579
|
this.reasonCode = opts.reasonCode;
|
|
565
580
|
}
|
|
566
581
|
};
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
582
|
+
var NotAuthorizedException = class _NotAuthorizedException extends CognitoIdentityProviderServiceException {
|
|
583
|
+
static {
|
|
584
|
+
__name(this, "NotAuthorizedException");
|
|
585
|
+
}
|
|
586
|
+
name = "NotAuthorizedException";
|
|
587
|
+
$fault = "client";
|
|
570
588
|
/**
|
|
571
589
|
* @internal
|
|
572
590
|
*/
|
|
@@ -576,14 +594,15 @@ var _NotAuthorizedException = class _NotAuthorizedException extends CognitoIdent
|
|
|
576
594
|
$fault: "client",
|
|
577
595
|
...opts
|
|
578
596
|
});
|
|
579
|
-
this.name = "NotAuthorizedException";
|
|
580
|
-
this.$fault = "client";
|
|
581
597
|
Object.setPrototypeOf(this, _NotAuthorizedException.prototype);
|
|
582
598
|
}
|
|
583
599
|
};
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
600
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends CognitoIdentityProviderServiceException {
|
|
601
|
+
static {
|
|
602
|
+
__name(this, "ResourceNotFoundException");
|
|
603
|
+
}
|
|
604
|
+
name = "ResourceNotFoundException";
|
|
605
|
+
$fault = "client";
|
|
587
606
|
/**
|
|
588
607
|
* @internal
|
|
589
608
|
*/
|
|
@@ -593,14 +612,15 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Cognit
|
|
|
593
612
|
$fault: "client",
|
|
594
613
|
...opts
|
|
595
614
|
});
|
|
596
|
-
this.name = "ResourceNotFoundException";
|
|
597
|
-
this.$fault = "client";
|
|
598
615
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
599
616
|
}
|
|
600
617
|
};
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
618
|
+
var TooManyRequestsException = class _TooManyRequestsException extends CognitoIdentityProviderServiceException {
|
|
619
|
+
static {
|
|
620
|
+
__name(this, "TooManyRequestsException");
|
|
621
|
+
}
|
|
622
|
+
name = "TooManyRequestsException";
|
|
623
|
+
$fault = "client";
|
|
604
624
|
/**
|
|
605
625
|
* @internal
|
|
606
626
|
*/
|
|
@@ -610,14 +630,15 @@ var _TooManyRequestsException = class _TooManyRequestsException extends CognitoI
|
|
|
610
630
|
$fault: "client",
|
|
611
631
|
...opts
|
|
612
632
|
});
|
|
613
|
-
this.name = "TooManyRequestsException";
|
|
614
|
-
this.$fault = "client";
|
|
615
633
|
Object.setPrototypeOf(this, _TooManyRequestsException.prototype);
|
|
616
634
|
}
|
|
617
635
|
};
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
636
|
+
var UserImportInProgressException = class _UserImportInProgressException extends CognitoIdentityProviderServiceException {
|
|
637
|
+
static {
|
|
638
|
+
__name(this, "UserImportInProgressException");
|
|
639
|
+
}
|
|
640
|
+
name = "UserImportInProgressException";
|
|
641
|
+
$fault = "client";
|
|
621
642
|
/**
|
|
622
643
|
* @internal
|
|
623
644
|
*/
|
|
@@ -627,14 +648,15 @@ var _UserImportInProgressException = class _UserImportInProgressException extend
|
|
|
627
648
|
$fault: "client",
|
|
628
649
|
...opts
|
|
629
650
|
});
|
|
630
|
-
this.name = "UserImportInProgressException";
|
|
631
|
-
this.$fault = "client";
|
|
632
651
|
Object.setPrototypeOf(this, _UserImportInProgressException.prototype);
|
|
633
652
|
}
|
|
634
653
|
};
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
654
|
+
var UserNotFoundException = class _UserNotFoundException extends CognitoIdentityProviderServiceException {
|
|
655
|
+
static {
|
|
656
|
+
__name(this, "UserNotFoundException");
|
|
657
|
+
}
|
|
658
|
+
name = "UserNotFoundException";
|
|
659
|
+
$fault = "client";
|
|
638
660
|
/**
|
|
639
661
|
* @internal
|
|
640
662
|
*/
|
|
@@ -644,14 +666,15 @@ var _UserNotFoundException = class _UserNotFoundException extends CognitoIdentit
|
|
|
644
666
|
$fault: "client",
|
|
645
667
|
...opts
|
|
646
668
|
});
|
|
647
|
-
this.name = "UserNotFoundException";
|
|
648
|
-
this.$fault = "client";
|
|
649
669
|
Object.setPrototypeOf(this, _UserNotFoundException.prototype);
|
|
650
670
|
}
|
|
651
671
|
};
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
672
|
+
var InvalidLambdaResponseException = class _InvalidLambdaResponseException extends CognitoIdentityProviderServiceException {
|
|
673
|
+
static {
|
|
674
|
+
__name(this, "InvalidLambdaResponseException");
|
|
675
|
+
}
|
|
676
|
+
name = "InvalidLambdaResponseException";
|
|
677
|
+
$fault = "client";
|
|
655
678
|
/**
|
|
656
679
|
* @internal
|
|
657
680
|
*/
|
|
@@ -661,14 +684,15 @@ var _InvalidLambdaResponseException = class _InvalidLambdaResponseException exte
|
|
|
661
684
|
$fault: "client",
|
|
662
685
|
...opts
|
|
663
686
|
});
|
|
664
|
-
this.name = "InvalidLambdaResponseException";
|
|
665
|
-
this.$fault = "client";
|
|
666
687
|
Object.setPrototypeOf(this, _InvalidLambdaResponseException.prototype);
|
|
667
688
|
}
|
|
668
689
|
};
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
690
|
+
var LimitExceededException = class _LimitExceededException extends CognitoIdentityProviderServiceException {
|
|
691
|
+
static {
|
|
692
|
+
__name(this, "LimitExceededException");
|
|
693
|
+
}
|
|
694
|
+
name = "LimitExceededException";
|
|
695
|
+
$fault = "client";
|
|
672
696
|
/**
|
|
673
697
|
* @internal
|
|
674
698
|
*/
|
|
@@ -678,14 +702,15 @@ var _LimitExceededException = class _LimitExceededException extends CognitoIdent
|
|
|
678
702
|
$fault: "client",
|
|
679
703
|
...opts
|
|
680
704
|
});
|
|
681
|
-
this.name = "LimitExceededException";
|
|
682
|
-
this.$fault = "client";
|
|
683
705
|
Object.setPrototypeOf(this, _LimitExceededException.prototype);
|
|
684
706
|
}
|
|
685
707
|
};
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
708
|
+
var TooManyFailedAttemptsException = class _TooManyFailedAttemptsException extends CognitoIdentityProviderServiceException {
|
|
709
|
+
static {
|
|
710
|
+
__name(this, "TooManyFailedAttemptsException");
|
|
711
|
+
}
|
|
712
|
+
name = "TooManyFailedAttemptsException";
|
|
713
|
+
$fault = "client";
|
|
689
714
|
/**
|
|
690
715
|
* @internal
|
|
691
716
|
*/
|
|
@@ -695,14 +720,15 @@ var _TooManyFailedAttemptsException = class _TooManyFailedAttemptsException exte
|
|
|
695
720
|
$fault: "client",
|
|
696
721
|
...opts
|
|
697
722
|
});
|
|
698
|
-
this.name = "TooManyFailedAttemptsException";
|
|
699
|
-
this.$fault = "client";
|
|
700
723
|
Object.setPrototypeOf(this, _TooManyFailedAttemptsException.prototype);
|
|
701
724
|
}
|
|
702
725
|
};
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
726
|
+
var UnexpectedLambdaException = class _UnexpectedLambdaException extends CognitoIdentityProviderServiceException {
|
|
727
|
+
static {
|
|
728
|
+
__name(this, "UnexpectedLambdaException");
|
|
729
|
+
}
|
|
730
|
+
name = "UnexpectedLambdaException";
|
|
731
|
+
$fault = "client";
|
|
706
732
|
/**
|
|
707
733
|
* @internal
|
|
708
734
|
*/
|
|
@@ -712,14 +738,15 @@ var _UnexpectedLambdaException = class _UnexpectedLambdaException extends Cognit
|
|
|
712
738
|
$fault: "client",
|
|
713
739
|
...opts
|
|
714
740
|
});
|
|
715
|
-
this.name = "UnexpectedLambdaException";
|
|
716
|
-
this.$fault = "client";
|
|
717
741
|
Object.setPrototypeOf(this, _UnexpectedLambdaException.prototype);
|
|
718
742
|
}
|
|
719
743
|
};
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
744
|
+
var UserLambdaValidationException = class _UserLambdaValidationException extends CognitoIdentityProviderServiceException {
|
|
745
|
+
static {
|
|
746
|
+
__name(this, "UserLambdaValidationException");
|
|
747
|
+
}
|
|
748
|
+
name = "UserLambdaValidationException";
|
|
749
|
+
$fault = "client";
|
|
723
750
|
/**
|
|
724
751
|
* @internal
|
|
725
752
|
*/
|
|
@@ -729,13 +756,9 @@ var _UserLambdaValidationException = class _UserLambdaValidationException extend
|
|
|
729
756
|
$fault: "client",
|
|
730
757
|
...opts
|
|
731
758
|
});
|
|
732
|
-
this.name = "UserLambdaValidationException";
|
|
733
|
-
this.$fault = "client";
|
|
734
759
|
Object.setPrototypeOf(this, _UserLambdaValidationException.prototype);
|
|
735
760
|
}
|
|
736
761
|
};
|
|
737
|
-
__name(_UserLambdaValidationException, "UserLambdaValidationException");
|
|
738
|
-
var UserLambdaValidationException = _UserLambdaValidationException;
|
|
739
762
|
var DeliveryMediumType = {
|
|
740
763
|
EMAIL: "EMAIL",
|
|
741
764
|
SMS: "SMS"
|
|
@@ -754,7 +777,12 @@ var UserStatusType = {
|
|
|
754
777
|
UNCONFIRMED: "UNCONFIRMED",
|
|
755
778
|
UNKNOWN: "UNKNOWN"
|
|
756
779
|
};
|
|
757
|
-
var
|
|
780
|
+
var CodeDeliveryFailureException = class _CodeDeliveryFailureException extends CognitoIdentityProviderServiceException {
|
|
781
|
+
static {
|
|
782
|
+
__name(this, "CodeDeliveryFailureException");
|
|
783
|
+
}
|
|
784
|
+
name = "CodeDeliveryFailureException";
|
|
785
|
+
$fault = "client";
|
|
758
786
|
/**
|
|
759
787
|
* @internal
|
|
760
788
|
*/
|
|
@@ -764,14 +792,15 @@ var _CodeDeliveryFailureException = class _CodeDeliveryFailureException extends
|
|
|
764
792
|
$fault: "client",
|
|
765
793
|
...opts
|
|
766
794
|
});
|
|
767
|
-
this.name = "CodeDeliveryFailureException";
|
|
768
|
-
this.$fault = "client";
|
|
769
795
|
Object.setPrototypeOf(this, _CodeDeliveryFailureException.prototype);
|
|
770
796
|
}
|
|
771
797
|
};
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
798
|
+
var InvalidPasswordException = class _InvalidPasswordException extends CognitoIdentityProviderServiceException {
|
|
799
|
+
static {
|
|
800
|
+
__name(this, "InvalidPasswordException");
|
|
801
|
+
}
|
|
802
|
+
name = "InvalidPasswordException";
|
|
803
|
+
$fault = "client";
|
|
775
804
|
/**
|
|
776
805
|
* @internal
|
|
777
806
|
*/
|
|
@@ -781,14 +810,15 @@ var _InvalidPasswordException = class _InvalidPasswordException extends CognitoI
|
|
|
781
810
|
$fault: "client",
|
|
782
811
|
...opts
|
|
783
812
|
});
|
|
784
|
-
this.name = "InvalidPasswordException";
|
|
785
|
-
this.$fault = "client";
|
|
786
813
|
Object.setPrototypeOf(this, _InvalidPasswordException.prototype);
|
|
787
814
|
}
|
|
788
815
|
};
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
816
|
+
var InvalidSmsRoleAccessPolicyException = class _InvalidSmsRoleAccessPolicyException extends CognitoIdentityProviderServiceException {
|
|
817
|
+
static {
|
|
818
|
+
__name(this, "InvalidSmsRoleAccessPolicyException");
|
|
819
|
+
}
|
|
820
|
+
name = "InvalidSmsRoleAccessPolicyException";
|
|
821
|
+
$fault = "client";
|
|
792
822
|
/**
|
|
793
823
|
* @internal
|
|
794
824
|
*/
|
|
@@ -798,14 +828,15 @@ var _InvalidSmsRoleAccessPolicyException = class _InvalidSmsRoleAccessPolicyExce
|
|
|
798
828
|
$fault: "client",
|
|
799
829
|
...opts
|
|
800
830
|
});
|
|
801
|
-
this.name = "InvalidSmsRoleAccessPolicyException";
|
|
802
|
-
this.$fault = "client";
|
|
803
831
|
Object.setPrototypeOf(this, _InvalidSmsRoleAccessPolicyException.prototype);
|
|
804
832
|
}
|
|
805
833
|
};
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
834
|
+
var InvalidSmsRoleTrustRelationshipException = class _InvalidSmsRoleTrustRelationshipException extends CognitoIdentityProviderServiceException {
|
|
835
|
+
static {
|
|
836
|
+
__name(this, "InvalidSmsRoleTrustRelationshipException");
|
|
837
|
+
}
|
|
838
|
+
name = "InvalidSmsRoleTrustRelationshipException";
|
|
839
|
+
$fault = "client";
|
|
809
840
|
/**
|
|
810
841
|
* @internal
|
|
811
842
|
*/
|
|
@@ -815,14 +846,15 @@ var _InvalidSmsRoleTrustRelationshipException = class _InvalidSmsRoleTrustRelati
|
|
|
815
846
|
$fault: "client",
|
|
816
847
|
...opts
|
|
817
848
|
});
|
|
818
|
-
this.name = "InvalidSmsRoleTrustRelationshipException";
|
|
819
|
-
this.$fault = "client";
|
|
820
849
|
Object.setPrototypeOf(this, _InvalidSmsRoleTrustRelationshipException.prototype);
|
|
821
850
|
}
|
|
822
851
|
};
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
852
|
+
var PreconditionNotMetException = class _PreconditionNotMetException extends CognitoIdentityProviderServiceException {
|
|
853
|
+
static {
|
|
854
|
+
__name(this, "PreconditionNotMetException");
|
|
855
|
+
}
|
|
856
|
+
name = "PreconditionNotMetException";
|
|
857
|
+
$fault = "client";
|
|
826
858
|
/**
|
|
827
859
|
* @internal
|
|
828
860
|
*/
|
|
@@ -832,14 +864,15 @@ var _PreconditionNotMetException = class _PreconditionNotMetException extends Co
|
|
|
832
864
|
$fault: "client",
|
|
833
865
|
...opts
|
|
834
866
|
});
|
|
835
|
-
this.name = "PreconditionNotMetException";
|
|
836
|
-
this.$fault = "client";
|
|
837
867
|
Object.setPrototypeOf(this, _PreconditionNotMetException.prototype);
|
|
838
868
|
}
|
|
839
869
|
};
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
870
|
+
var UnsupportedUserStateException = class _UnsupportedUserStateException extends CognitoIdentityProviderServiceException {
|
|
871
|
+
static {
|
|
872
|
+
__name(this, "UnsupportedUserStateException");
|
|
873
|
+
}
|
|
874
|
+
name = "UnsupportedUserStateException";
|
|
875
|
+
$fault = "client";
|
|
843
876
|
/**
|
|
844
877
|
* @internal
|
|
845
878
|
*/
|
|
@@ -849,14 +882,15 @@ var _UnsupportedUserStateException = class _UnsupportedUserStateException extend
|
|
|
849
882
|
$fault: "client",
|
|
850
883
|
...opts
|
|
851
884
|
});
|
|
852
|
-
this.name = "UnsupportedUserStateException";
|
|
853
|
-
this.$fault = "client";
|
|
854
885
|
Object.setPrototypeOf(this, _UnsupportedUserStateException.prototype);
|
|
855
886
|
}
|
|
856
887
|
};
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
888
|
+
var UsernameExistsException = class _UsernameExistsException extends CognitoIdentityProviderServiceException {
|
|
889
|
+
static {
|
|
890
|
+
__name(this, "UsernameExistsException");
|
|
891
|
+
}
|
|
892
|
+
name = "UsernameExistsException";
|
|
893
|
+
$fault = "client";
|
|
860
894
|
/**
|
|
861
895
|
* @internal
|
|
862
896
|
*/
|
|
@@ -866,14 +900,15 @@ var _UsernameExistsException = class _UsernameExistsException extends CognitoIde
|
|
|
866
900
|
$fault: "client",
|
|
867
901
|
...opts
|
|
868
902
|
});
|
|
869
|
-
this.name = "UsernameExistsException";
|
|
870
|
-
this.$fault = "client";
|
|
871
903
|
Object.setPrototypeOf(this, _UsernameExistsException.prototype);
|
|
872
904
|
}
|
|
873
905
|
};
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
906
|
+
var AliasExistsException = class _AliasExistsException extends CognitoIdentityProviderServiceException {
|
|
907
|
+
static {
|
|
908
|
+
__name(this, "AliasExistsException");
|
|
909
|
+
}
|
|
910
|
+
name = "AliasExistsException";
|
|
911
|
+
$fault = "client";
|
|
877
912
|
/**
|
|
878
913
|
* @internal
|
|
879
914
|
*/
|
|
@@ -883,14 +918,15 @@ var _AliasExistsException = class _AliasExistsException extends CognitoIdentityP
|
|
|
883
918
|
$fault: "client",
|
|
884
919
|
...opts
|
|
885
920
|
});
|
|
886
|
-
this.name = "AliasExistsException";
|
|
887
|
-
this.$fault = "client";
|
|
888
921
|
Object.setPrototypeOf(this, _AliasExistsException.prototype);
|
|
889
922
|
}
|
|
890
923
|
};
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
924
|
+
var InvalidUserPoolConfigurationException = class _InvalidUserPoolConfigurationException extends CognitoIdentityProviderServiceException {
|
|
925
|
+
static {
|
|
926
|
+
__name(this, "InvalidUserPoolConfigurationException");
|
|
927
|
+
}
|
|
928
|
+
name = "InvalidUserPoolConfigurationException";
|
|
929
|
+
$fault = "client";
|
|
894
930
|
/**
|
|
895
931
|
* @internal
|
|
896
932
|
*/
|
|
@@ -900,13 +936,9 @@ var _InvalidUserPoolConfigurationException = class _InvalidUserPoolConfiguration
|
|
|
900
936
|
$fault: "client",
|
|
901
937
|
...opts
|
|
902
938
|
});
|
|
903
|
-
this.name = "InvalidUserPoolConfigurationException";
|
|
904
|
-
this.$fault = "client";
|
|
905
939
|
Object.setPrototypeOf(this, _InvalidUserPoolConfigurationException.prototype);
|
|
906
940
|
}
|
|
907
941
|
};
|
|
908
|
-
__name(_InvalidUserPoolConfigurationException, "InvalidUserPoolConfigurationException");
|
|
909
|
-
var InvalidUserPoolConfigurationException = _InvalidUserPoolConfigurationException;
|
|
910
942
|
var AuthFlowType = {
|
|
911
943
|
ADMIN_NO_SRP_AUTH: "ADMIN_NO_SRP_AUTH",
|
|
912
944
|
ADMIN_USER_PASSWORD_AUTH: "ADMIN_USER_PASSWORD_AUTH",
|
|
@@ -935,7 +967,12 @@ var ChallengeNameType = {
|
|
|
935
967
|
SOFTWARE_TOKEN_MFA: "SOFTWARE_TOKEN_MFA",
|
|
936
968
|
WEB_AUTHN: "WEB_AUTHN"
|
|
937
969
|
};
|
|
938
|
-
var
|
|
970
|
+
var InvalidEmailRoleAccessPolicyException = class _InvalidEmailRoleAccessPolicyException extends CognitoIdentityProviderServiceException {
|
|
971
|
+
static {
|
|
972
|
+
__name(this, "InvalidEmailRoleAccessPolicyException");
|
|
973
|
+
}
|
|
974
|
+
name = "InvalidEmailRoleAccessPolicyException";
|
|
975
|
+
$fault = "client";
|
|
939
976
|
/**
|
|
940
977
|
* @internal
|
|
941
978
|
*/
|
|
@@ -945,14 +982,15 @@ var _InvalidEmailRoleAccessPolicyException = class _InvalidEmailRoleAccessPolicy
|
|
|
945
982
|
$fault: "client",
|
|
946
983
|
...opts
|
|
947
984
|
});
|
|
948
|
-
this.name = "InvalidEmailRoleAccessPolicyException";
|
|
949
|
-
this.$fault = "client";
|
|
950
985
|
Object.setPrototypeOf(this, _InvalidEmailRoleAccessPolicyException.prototype);
|
|
951
986
|
}
|
|
952
987
|
};
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
988
|
+
var MFAMethodNotFoundException = class _MFAMethodNotFoundException extends CognitoIdentityProviderServiceException {
|
|
989
|
+
static {
|
|
990
|
+
__name(this, "MFAMethodNotFoundException");
|
|
991
|
+
}
|
|
992
|
+
name = "MFAMethodNotFoundException";
|
|
993
|
+
$fault = "client";
|
|
956
994
|
/**
|
|
957
995
|
* @internal
|
|
958
996
|
*/
|
|
@@ -962,14 +1000,15 @@ var _MFAMethodNotFoundException = class _MFAMethodNotFoundException extends Cogn
|
|
|
962
1000
|
$fault: "client",
|
|
963
1001
|
...opts
|
|
964
1002
|
});
|
|
965
|
-
this.name = "MFAMethodNotFoundException";
|
|
966
|
-
this.$fault = "client";
|
|
967
1003
|
Object.setPrototypeOf(this, _MFAMethodNotFoundException.prototype);
|
|
968
1004
|
}
|
|
969
1005
|
};
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
1006
|
+
var PasswordResetRequiredException = class _PasswordResetRequiredException extends CognitoIdentityProviderServiceException {
|
|
1007
|
+
static {
|
|
1008
|
+
__name(this, "PasswordResetRequiredException");
|
|
1009
|
+
}
|
|
1010
|
+
name = "PasswordResetRequiredException";
|
|
1011
|
+
$fault = "client";
|
|
973
1012
|
/**
|
|
974
1013
|
* @internal
|
|
975
1014
|
*/
|
|
@@ -979,14 +1018,15 @@ var _PasswordResetRequiredException = class _PasswordResetRequiredException exte
|
|
|
979
1018
|
$fault: "client",
|
|
980
1019
|
...opts
|
|
981
1020
|
});
|
|
982
|
-
this.name = "PasswordResetRequiredException";
|
|
983
|
-
this.$fault = "client";
|
|
984
1021
|
Object.setPrototypeOf(this, _PasswordResetRequiredException.prototype);
|
|
985
1022
|
}
|
|
986
1023
|
};
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
1024
|
+
var UserNotConfirmedException = class _UserNotConfirmedException extends CognitoIdentityProviderServiceException {
|
|
1025
|
+
static {
|
|
1026
|
+
__name(this, "UserNotConfirmedException");
|
|
1027
|
+
}
|
|
1028
|
+
name = "UserNotConfirmedException";
|
|
1029
|
+
$fault = "client";
|
|
990
1030
|
/**
|
|
991
1031
|
* @internal
|
|
992
1032
|
*/
|
|
@@ -996,13 +1036,9 @@ var _UserNotConfirmedException = class _UserNotConfirmedException extends Cognit
|
|
|
996
1036
|
$fault: "client",
|
|
997
1037
|
...opts
|
|
998
1038
|
});
|
|
999
|
-
this.name = "UserNotConfirmedException";
|
|
1000
|
-
this.$fault = "client";
|
|
1001
1039
|
Object.setPrototypeOf(this, _UserNotConfirmedException.prototype);
|
|
1002
1040
|
}
|
|
1003
1041
|
};
|
|
1004
|
-
__name(_UserNotConfirmedException, "UserNotConfirmedException");
|
|
1005
|
-
var UserNotConfirmedException = _UserNotConfirmedException;
|
|
1006
1042
|
var ChallengeName = {
|
|
1007
1043
|
Mfa: "Mfa",
|
|
1008
1044
|
Password: "Password"
|
|
@@ -1037,7 +1073,12 @@ var EventType = {
|
|
|
1037
1073
|
SignIn: "SignIn",
|
|
1038
1074
|
SignUp: "SignUp"
|
|
1039
1075
|
};
|
|
1040
|
-
var
|
|
1076
|
+
var UserPoolAddOnNotEnabledException = class _UserPoolAddOnNotEnabledException extends CognitoIdentityProviderServiceException {
|
|
1077
|
+
static {
|
|
1078
|
+
__name(this, "UserPoolAddOnNotEnabledException");
|
|
1079
|
+
}
|
|
1080
|
+
name = "UserPoolAddOnNotEnabledException";
|
|
1081
|
+
$fault = "client";
|
|
1041
1082
|
/**
|
|
1042
1083
|
* @internal
|
|
1043
1084
|
*/
|
|
@@ -1047,14 +1088,15 @@ var _UserPoolAddOnNotEnabledException = class _UserPoolAddOnNotEnabledException
|
|
|
1047
1088
|
$fault: "client",
|
|
1048
1089
|
...opts
|
|
1049
1090
|
});
|
|
1050
|
-
this.name = "UserPoolAddOnNotEnabledException";
|
|
1051
|
-
this.$fault = "client";
|
|
1052
1091
|
Object.setPrototypeOf(this, _UserPoolAddOnNotEnabledException.prototype);
|
|
1053
1092
|
}
|
|
1054
1093
|
};
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1094
|
+
var CodeMismatchException = class _CodeMismatchException extends CognitoIdentityProviderServiceException {
|
|
1095
|
+
static {
|
|
1096
|
+
__name(this, "CodeMismatchException");
|
|
1097
|
+
}
|
|
1098
|
+
name = "CodeMismatchException";
|
|
1099
|
+
$fault = "client";
|
|
1058
1100
|
/**
|
|
1059
1101
|
* @internal
|
|
1060
1102
|
*/
|
|
@@ -1064,14 +1106,15 @@ var _CodeMismatchException = class _CodeMismatchException extends CognitoIdentit
|
|
|
1064
1106
|
$fault: "client",
|
|
1065
1107
|
...opts
|
|
1066
1108
|
});
|
|
1067
|
-
this.name = "CodeMismatchException";
|
|
1068
|
-
this.$fault = "client";
|
|
1069
1109
|
Object.setPrototypeOf(this, _CodeMismatchException.prototype);
|
|
1070
1110
|
}
|
|
1071
1111
|
};
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1112
|
+
var ExpiredCodeException = class _ExpiredCodeException extends CognitoIdentityProviderServiceException {
|
|
1113
|
+
static {
|
|
1114
|
+
__name(this, "ExpiredCodeException");
|
|
1115
|
+
}
|
|
1116
|
+
name = "ExpiredCodeException";
|
|
1117
|
+
$fault = "client";
|
|
1075
1118
|
/**
|
|
1076
1119
|
* @internal
|
|
1077
1120
|
*/
|
|
@@ -1081,14 +1124,15 @@ var _ExpiredCodeException = class _ExpiredCodeException extends CognitoIdentityP
|
|
|
1081
1124
|
$fault: "client",
|
|
1082
1125
|
...opts
|
|
1083
1126
|
});
|
|
1084
|
-
this.name = "ExpiredCodeException";
|
|
1085
|
-
this.$fault = "client";
|
|
1086
1127
|
Object.setPrototypeOf(this, _ExpiredCodeException.prototype);
|
|
1087
1128
|
}
|
|
1088
1129
|
};
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1130
|
+
var PasswordHistoryPolicyViolationException = class _PasswordHistoryPolicyViolationException extends CognitoIdentityProviderServiceException {
|
|
1131
|
+
static {
|
|
1132
|
+
__name(this, "PasswordHistoryPolicyViolationException");
|
|
1133
|
+
}
|
|
1134
|
+
name = "PasswordHistoryPolicyViolationException";
|
|
1135
|
+
$fault = "client";
|
|
1092
1136
|
/**
|
|
1093
1137
|
* @internal
|
|
1094
1138
|
*/
|
|
@@ -1098,14 +1142,15 @@ var _PasswordHistoryPolicyViolationException = class _PasswordHistoryPolicyViola
|
|
|
1098
1142
|
$fault: "client",
|
|
1099
1143
|
...opts
|
|
1100
1144
|
});
|
|
1101
|
-
this.name = "PasswordHistoryPolicyViolationException";
|
|
1102
|
-
this.$fault = "client";
|
|
1103
1145
|
Object.setPrototypeOf(this, _PasswordHistoryPolicyViolationException.prototype);
|
|
1104
1146
|
}
|
|
1105
1147
|
};
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1148
|
+
var SoftwareTokenMFANotFoundException = class _SoftwareTokenMFANotFoundException extends CognitoIdentityProviderServiceException {
|
|
1149
|
+
static {
|
|
1150
|
+
__name(this, "SoftwareTokenMFANotFoundException");
|
|
1151
|
+
}
|
|
1152
|
+
name = "SoftwareTokenMFANotFoundException";
|
|
1153
|
+
$fault = "client";
|
|
1109
1154
|
/**
|
|
1110
1155
|
* @internal
|
|
1111
1156
|
*/
|
|
@@ -1115,13 +1160,9 @@ var _SoftwareTokenMFANotFoundException = class _SoftwareTokenMFANotFoundExceptio
|
|
|
1115
1160
|
$fault: "client",
|
|
1116
1161
|
...opts
|
|
1117
1162
|
});
|
|
1118
|
-
this.name = "SoftwareTokenMFANotFoundException";
|
|
1119
|
-
this.$fault = "client";
|
|
1120
1163
|
Object.setPrototypeOf(this, _SoftwareTokenMFANotFoundException.prototype);
|
|
1121
1164
|
}
|
|
1122
1165
|
};
|
|
1123
|
-
__name(_SoftwareTokenMFANotFoundException, "SoftwareTokenMFANotFoundException");
|
|
1124
|
-
var SoftwareTokenMFANotFoundException = _SoftwareTokenMFANotFoundException;
|
|
1125
1166
|
var DeviceRememberedStatusType = {
|
|
1126
1167
|
NOT_REMEMBERED: "not_remembered",
|
|
1127
1168
|
REMEMBERED: "remembered"
|
|
@@ -1175,7 +1216,12 @@ var ColorSchemeModeType = {
|
|
|
1175
1216
|
DYNAMIC: "DYNAMIC",
|
|
1176
1217
|
LIGHT: "LIGHT"
|
|
1177
1218
|
};
|
|
1178
|
-
var
|
|
1219
|
+
var ConcurrentModificationException = class _ConcurrentModificationException extends CognitoIdentityProviderServiceException {
|
|
1220
|
+
static {
|
|
1221
|
+
__name(this, "ConcurrentModificationException");
|
|
1222
|
+
}
|
|
1223
|
+
name = "ConcurrentModificationException";
|
|
1224
|
+
$fault = "client";
|
|
1179
1225
|
/**
|
|
1180
1226
|
* @internal
|
|
1181
1227
|
*/
|
|
@@ -1185,14 +1231,15 @@ var _ConcurrentModificationException = class _ConcurrentModificationException ex
|
|
|
1185
1231
|
$fault: "client",
|
|
1186
1232
|
...opts
|
|
1187
1233
|
});
|
|
1188
|
-
this.name = "ConcurrentModificationException";
|
|
1189
|
-
this.$fault = "client";
|
|
1190
1234
|
Object.setPrototypeOf(this, _ConcurrentModificationException.prototype);
|
|
1191
1235
|
}
|
|
1192
1236
|
};
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1237
|
+
var ForbiddenException = class _ForbiddenException extends CognitoIdentityProviderServiceException {
|
|
1238
|
+
static {
|
|
1239
|
+
__name(this, "ForbiddenException");
|
|
1240
|
+
}
|
|
1241
|
+
name = "ForbiddenException";
|
|
1242
|
+
$fault = "client";
|
|
1196
1243
|
/**
|
|
1197
1244
|
* @internal
|
|
1198
1245
|
*/
|
|
@@ -1202,18 +1249,19 @@ var _ForbiddenException = class _ForbiddenException extends CognitoIdentityProvi
|
|
|
1202
1249
|
$fault: "client",
|
|
1203
1250
|
...opts
|
|
1204
1251
|
});
|
|
1205
|
-
this.name = "ForbiddenException";
|
|
1206
|
-
this.$fault = "client";
|
|
1207
1252
|
Object.setPrototypeOf(this, _ForbiddenException.prototype);
|
|
1208
1253
|
}
|
|
1209
1254
|
};
|
|
1210
|
-
__name(_ForbiddenException, "ForbiddenException");
|
|
1211
|
-
var ForbiddenException = _ForbiddenException;
|
|
1212
1255
|
var VerifiedAttributeType = {
|
|
1213
1256
|
EMAIL: "email",
|
|
1214
1257
|
PHONE_NUMBER: "phone_number"
|
|
1215
1258
|
};
|
|
1216
|
-
var
|
|
1259
|
+
var WebAuthnChallengeNotFoundException = class _WebAuthnChallengeNotFoundException extends CognitoIdentityProviderServiceException {
|
|
1260
|
+
static {
|
|
1261
|
+
__name(this, "WebAuthnChallengeNotFoundException");
|
|
1262
|
+
}
|
|
1263
|
+
name = "WebAuthnChallengeNotFoundException";
|
|
1264
|
+
$fault = "client";
|
|
1217
1265
|
/**
|
|
1218
1266
|
* @internal
|
|
1219
1267
|
*/
|
|
@@ -1223,14 +1271,15 @@ var _WebAuthnChallengeNotFoundException = class _WebAuthnChallengeNotFoundExcept
|
|
|
1223
1271
|
$fault: "client",
|
|
1224
1272
|
...opts
|
|
1225
1273
|
});
|
|
1226
|
-
this.name = "WebAuthnChallengeNotFoundException";
|
|
1227
|
-
this.$fault = "client";
|
|
1228
1274
|
Object.setPrototypeOf(this, _WebAuthnChallengeNotFoundException.prototype);
|
|
1229
1275
|
}
|
|
1230
1276
|
};
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1277
|
+
var WebAuthnClientMismatchException = class _WebAuthnClientMismatchException extends CognitoIdentityProviderServiceException {
|
|
1278
|
+
static {
|
|
1279
|
+
__name(this, "WebAuthnClientMismatchException");
|
|
1280
|
+
}
|
|
1281
|
+
name = "WebAuthnClientMismatchException";
|
|
1282
|
+
$fault = "client";
|
|
1234
1283
|
/**
|
|
1235
1284
|
* @internal
|
|
1236
1285
|
*/
|
|
@@ -1240,14 +1289,15 @@ var _WebAuthnClientMismatchException = class _WebAuthnClientMismatchException ex
|
|
|
1240
1289
|
$fault: "client",
|
|
1241
1290
|
...opts
|
|
1242
1291
|
});
|
|
1243
|
-
this.name = "WebAuthnClientMismatchException";
|
|
1244
|
-
this.$fault = "client";
|
|
1245
1292
|
Object.setPrototypeOf(this, _WebAuthnClientMismatchException.prototype);
|
|
1246
1293
|
}
|
|
1247
1294
|
};
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1295
|
+
var WebAuthnCredentialNotSupportedException = class _WebAuthnCredentialNotSupportedException extends CognitoIdentityProviderServiceException {
|
|
1296
|
+
static {
|
|
1297
|
+
__name(this, "WebAuthnCredentialNotSupportedException");
|
|
1298
|
+
}
|
|
1299
|
+
name = "WebAuthnCredentialNotSupportedException";
|
|
1300
|
+
$fault = "client";
|
|
1251
1301
|
/**
|
|
1252
1302
|
* @internal
|
|
1253
1303
|
*/
|
|
@@ -1257,14 +1307,15 @@ var _WebAuthnCredentialNotSupportedException = class _WebAuthnCredentialNotSuppo
|
|
|
1257
1307
|
$fault: "client",
|
|
1258
1308
|
...opts
|
|
1259
1309
|
});
|
|
1260
|
-
this.name = "WebAuthnCredentialNotSupportedException";
|
|
1261
|
-
this.$fault = "client";
|
|
1262
1310
|
Object.setPrototypeOf(this, _WebAuthnCredentialNotSupportedException.prototype);
|
|
1263
1311
|
}
|
|
1264
1312
|
};
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1313
|
+
var WebAuthnNotEnabledException = class _WebAuthnNotEnabledException extends CognitoIdentityProviderServiceException {
|
|
1314
|
+
static {
|
|
1315
|
+
__name(this, "WebAuthnNotEnabledException");
|
|
1316
|
+
}
|
|
1317
|
+
name = "WebAuthnNotEnabledException";
|
|
1318
|
+
$fault = "client";
|
|
1268
1319
|
/**
|
|
1269
1320
|
* @internal
|
|
1270
1321
|
*/
|
|
@@ -1274,14 +1325,15 @@ var _WebAuthnNotEnabledException = class _WebAuthnNotEnabledException extends Co
|
|
|
1274
1325
|
$fault: "client",
|
|
1275
1326
|
...opts
|
|
1276
1327
|
});
|
|
1277
|
-
this.name = "WebAuthnNotEnabledException";
|
|
1278
|
-
this.$fault = "client";
|
|
1279
1328
|
Object.setPrototypeOf(this, _WebAuthnNotEnabledException.prototype);
|
|
1280
1329
|
}
|
|
1281
1330
|
};
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1331
|
+
var WebAuthnOriginNotAllowedException = class _WebAuthnOriginNotAllowedException extends CognitoIdentityProviderServiceException {
|
|
1332
|
+
static {
|
|
1333
|
+
__name(this, "WebAuthnOriginNotAllowedException");
|
|
1334
|
+
}
|
|
1335
|
+
name = "WebAuthnOriginNotAllowedException";
|
|
1336
|
+
$fault = "client";
|
|
1285
1337
|
/**
|
|
1286
1338
|
* @internal
|
|
1287
1339
|
*/
|
|
@@ -1291,14 +1343,15 @@ var _WebAuthnOriginNotAllowedException = class _WebAuthnOriginNotAllowedExceptio
|
|
|
1291
1343
|
$fault: "client",
|
|
1292
1344
|
...opts
|
|
1293
1345
|
});
|
|
1294
|
-
this.name = "WebAuthnOriginNotAllowedException";
|
|
1295
|
-
this.$fault = "client";
|
|
1296
1346
|
Object.setPrototypeOf(this, _WebAuthnOriginNotAllowedException.prototype);
|
|
1297
1347
|
}
|
|
1298
1348
|
};
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1349
|
+
var WebAuthnRelyingPartyMismatchException = class _WebAuthnRelyingPartyMismatchException extends CognitoIdentityProviderServiceException {
|
|
1350
|
+
static {
|
|
1351
|
+
__name(this, "WebAuthnRelyingPartyMismatchException");
|
|
1352
|
+
}
|
|
1353
|
+
name = "WebAuthnRelyingPartyMismatchException";
|
|
1354
|
+
$fault = "client";
|
|
1302
1355
|
/**
|
|
1303
1356
|
* @internal
|
|
1304
1357
|
*/
|
|
@@ -1308,14 +1361,15 @@ var _WebAuthnRelyingPartyMismatchException = class _WebAuthnRelyingPartyMismatch
|
|
|
1308
1361
|
$fault: "client",
|
|
1309
1362
|
...opts
|
|
1310
1363
|
});
|
|
1311
|
-
this.name = "WebAuthnRelyingPartyMismatchException";
|
|
1312
|
-
this.$fault = "client";
|
|
1313
1364
|
Object.setPrototypeOf(this, _WebAuthnRelyingPartyMismatchException.prototype);
|
|
1314
1365
|
}
|
|
1315
1366
|
};
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1367
|
+
var GroupExistsException = class _GroupExistsException extends CognitoIdentityProviderServiceException {
|
|
1368
|
+
static {
|
|
1369
|
+
__name(this, "GroupExistsException");
|
|
1370
|
+
}
|
|
1371
|
+
name = "GroupExistsException";
|
|
1372
|
+
$fault = "client";
|
|
1319
1373
|
/**
|
|
1320
1374
|
* @internal
|
|
1321
1375
|
*/
|
|
@@ -1325,13 +1379,9 @@ var _GroupExistsException = class _GroupExistsException extends CognitoIdentityP
|
|
|
1325
1379
|
$fault: "client",
|
|
1326
1380
|
...opts
|
|
1327
1381
|
});
|
|
1328
|
-
this.name = "GroupExistsException";
|
|
1329
|
-
this.$fault = "client";
|
|
1330
1382
|
Object.setPrototypeOf(this, _GroupExistsException.prototype);
|
|
1331
1383
|
}
|
|
1332
1384
|
};
|
|
1333
|
-
__name(_GroupExistsException, "GroupExistsException");
|
|
1334
|
-
var GroupExistsException = _GroupExistsException;
|
|
1335
1385
|
var IdentityProviderTypeType = {
|
|
1336
1386
|
Facebook: "Facebook",
|
|
1337
1387
|
Google: "Google",
|
|
@@ -1340,7 +1390,12 @@ var IdentityProviderTypeType = {
|
|
|
1340
1390
|
SAML: "SAML",
|
|
1341
1391
|
SignInWithApple: "SignInWithApple"
|
|
1342
1392
|
};
|
|
1343
|
-
var
|
|
1393
|
+
var DuplicateProviderException = class _DuplicateProviderException extends CognitoIdentityProviderServiceException {
|
|
1394
|
+
static {
|
|
1395
|
+
__name(this, "DuplicateProviderException");
|
|
1396
|
+
}
|
|
1397
|
+
name = "DuplicateProviderException";
|
|
1398
|
+
$fault = "client";
|
|
1344
1399
|
/**
|
|
1345
1400
|
* @internal
|
|
1346
1401
|
*/
|
|
@@ -1350,14 +1405,15 @@ var _DuplicateProviderException = class _DuplicateProviderException extends Cogn
|
|
|
1350
1405
|
$fault: "client",
|
|
1351
1406
|
...opts
|
|
1352
1407
|
});
|
|
1353
|
-
this.name = "DuplicateProviderException";
|
|
1354
|
-
this.$fault = "client";
|
|
1355
1408
|
Object.setPrototypeOf(this, _DuplicateProviderException.prototype);
|
|
1356
1409
|
}
|
|
1357
1410
|
};
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1411
|
+
var ManagedLoginBrandingExistsException = class _ManagedLoginBrandingExistsException extends CognitoIdentityProviderServiceException {
|
|
1412
|
+
static {
|
|
1413
|
+
__name(this, "ManagedLoginBrandingExistsException");
|
|
1414
|
+
}
|
|
1415
|
+
name = "ManagedLoginBrandingExistsException";
|
|
1416
|
+
$fault = "client";
|
|
1361
1417
|
/**
|
|
1362
1418
|
* @internal
|
|
1363
1419
|
*/
|
|
@@ -1367,13 +1423,9 @@ var _ManagedLoginBrandingExistsException = class _ManagedLoginBrandingExistsExce
|
|
|
1367
1423
|
$fault: "client",
|
|
1368
1424
|
...opts
|
|
1369
1425
|
});
|
|
1370
|
-
this.name = "ManagedLoginBrandingExistsException";
|
|
1371
|
-
this.$fault = "client";
|
|
1372
1426
|
Object.setPrototypeOf(this, _ManagedLoginBrandingExistsException.prototype);
|
|
1373
1427
|
}
|
|
1374
1428
|
};
|
|
1375
|
-
__name(_ManagedLoginBrandingExistsException, "ManagedLoginBrandingExistsException");
|
|
1376
|
-
var ManagedLoginBrandingExistsException = _ManagedLoginBrandingExistsException;
|
|
1377
1429
|
var UserImportJobStatusType = {
|
|
1378
1430
|
Created: "Created",
|
|
1379
1431
|
Expired: "Expired",
|
|
@@ -1424,7 +1476,12 @@ var StatusType = {
|
|
|
1424
1476
|
Disabled: "Disabled",
|
|
1425
1477
|
Enabled: "Enabled"
|
|
1426
1478
|
};
|
|
1427
|
-
var
|
|
1479
|
+
var FeatureUnavailableInTierException = class _FeatureUnavailableInTierException extends CognitoIdentityProviderServiceException {
|
|
1480
|
+
static {
|
|
1481
|
+
__name(this, "FeatureUnavailableInTierException");
|
|
1482
|
+
}
|
|
1483
|
+
name = "FeatureUnavailableInTierException";
|
|
1484
|
+
$fault = "client";
|
|
1428
1485
|
/**
|
|
1429
1486
|
* @internal
|
|
1430
1487
|
*/
|
|
@@ -1434,14 +1491,15 @@ var _FeatureUnavailableInTierException = class _FeatureUnavailableInTierExceptio
|
|
|
1434
1491
|
$fault: "client",
|
|
1435
1492
|
...opts
|
|
1436
1493
|
});
|
|
1437
|
-
this.name = "FeatureUnavailableInTierException";
|
|
1438
|
-
this.$fault = "client";
|
|
1439
1494
|
Object.setPrototypeOf(this, _FeatureUnavailableInTierException.prototype);
|
|
1440
1495
|
}
|
|
1441
1496
|
};
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1497
|
+
var TierChangeNotAllowedException = class _TierChangeNotAllowedException extends CognitoIdentityProviderServiceException {
|
|
1498
|
+
static {
|
|
1499
|
+
__name(this, "TierChangeNotAllowedException");
|
|
1500
|
+
}
|
|
1501
|
+
name = "TierChangeNotAllowedException";
|
|
1502
|
+
$fault = "client";
|
|
1445
1503
|
/**
|
|
1446
1504
|
* @internal
|
|
1447
1505
|
*/
|
|
@@ -1451,14 +1509,15 @@ var _TierChangeNotAllowedException = class _TierChangeNotAllowedException extend
|
|
|
1451
1509
|
$fault: "client",
|
|
1452
1510
|
...opts
|
|
1453
1511
|
});
|
|
1454
|
-
this.name = "TierChangeNotAllowedException";
|
|
1455
|
-
this.$fault = "client";
|
|
1456
1512
|
Object.setPrototypeOf(this, _TierChangeNotAllowedException.prototype);
|
|
1457
1513
|
}
|
|
1458
1514
|
};
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1515
|
+
var UserPoolTaggingException = class _UserPoolTaggingException extends CognitoIdentityProviderServiceException {
|
|
1516
|
+
static {
|
|
1517
|
+
__name(this, "UserPoolTaggingException");
|
|
1518
|
+
}
|
|
1519
|
+
name = "UserPoolTaggingException";
|
|
1520
|
+
$fault = "client";
|
|
1462
1521
|
/**
|
|
1463
1522
|
* @internal
|
|
1464
1523
|
*/
|
|
@@ -1468,13 +1527,9 @@ var _UserPoolTaggingException = class _UserPoolTaggingException extends CognitoI
|
|
|
1468
1527
|
$fault: "client",
|
|
1469
1528
|
...opts
|
|
1470
1529
|
});
|
|
1471
|
-
this.name = "UserPoolTaggingException";
|
|
1472
|
-
this.$fault = "client";
|
|
1473
1530
|
Object.setPrototypeOf(this, _UserPoolTaggingException.prototype);
|
|
1474
1531
|
}
|
|
1475
1532
|
};
|
|
1476
|
-
__name(_UserPoolTaggingException, "UserPoolTaggingException");
|
|
1477
|
-
var UserPoolTaggingException = _UserPoolTaggingException;
|
|
1478
1533
|
var OAuthFlowType = {
|
|
1479
1534
|
client_credentials: "client_credentials",
|
|
1480
1535
|
code: "code",
|
|
@@ -1501,7 +1556,12 @@ var TimeUnitsType = {
|
|
|
1501
1556
|
MINUTES: "minutes",
|
|
1502
1557
|
SECONDS: "seconds"
|
|
1503
1558
|
};
|
|
1504
|
-
var
|
|
1559
|
+
var InvalidOAuthFlowException = class _InvalidOAuthFlowException extends CognitoIdentityProviderServiceException {
|
|
1560
|
+
static {
|
|
1561
|
+
__name(this, "InvalidOAuthFlowException");
|
|
1562
|
+
}
|
|
1563
|
+
name = "InvalidOAuthFlowException";
|
|
1564
|
+
$fault = "client";
|
|
1505
1565
|
/**
|
|
1506
1566
|
* @internal
|
|
1507
1567
|
*/
|
|
@@ -1511,14 +1571,15 @@ var _InvalidOAuthFlowException = class _InvalidOAuthFlowException extends Cognit
|
|
|
1511
1571
|
$fault: "client",
|
|
1512
1572
|
...opts
|
|
1513
1573
|
});
|
|
1514
|
-
this.name = "InvalidOAuthFlowException";
|
|
1515
|
-
this.$fault = "client";
|
|
1516
1574
|
Object.setPrototypeOf(this, _InvalidOAuthFlowException.prototype);
|
|
1517
1575
|
}
|
|
1518
1576
|
};
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1577
|
+
var ScopeDoesNotExistException = class _ScopeDoesNotExistException extends CognitoIdentityProviderServiceException {
|
|
1578
|
+
static {
|
|
1579
|
+
__name(this, "ScopeDoesNotExistException");
|
|
1580
|
+
}
|
|
1581
|
+
name = "ScopeDoesNotExistException";
|
|
1582
|
+
$fault = "client";
|
|
1522
1583
|
/**
|
|
1523
1584
|
* @internal
|
|
1524
1585
|
*/
|
|
@@ -1528,14 +1589,15 @@ var _ScopeDoesNotExistException = class _ScopeDoesNotExistException extends Cogn
|
|
|
1528
1589
|
$fault: "client",
|
|
1529
1590
|
...opts
|
|
1530
1591
|
});
|
|
1531
|
-
this.name = "ScopeDoesNotExistException";
|
|
1532
|
-
this.$fault = "client";
|
|
1533
1592
|
Object.setPrototypeOf(this, _ScopeDoesNotExistException.prototype);
|
|
1534
1593
|
}
|
|
1535
1594
|
};
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1595
|
+
var UnsupportedIdentityProviderException = class _UnsupportedIdentityProviderException extends CognitoIdentityProviderServiceException {
|
|
1596
|
+
static {
|
|
1597
|
+
__name(this, "UnsupportedIdentityProviderException");
|
|
1598
|
+
}
|
|
1599
|
+
name = "UnsupportedIdentityProviderException";
|
|
1600
|
+
$fault = "client";
|
|
1539
1601
|
/**
|
|
1540
1602
|
* @internal
|
|
1541
1603
|
*/
|
|
@@ -1545,13 +1607,9 @@ var _UnsupportedIdentityProviderException = class _UnsupportedIdentityProviderEx
|
|
|
1545
1607
|
$fault: "client",
|
|
1546
1608
|
...opts
|
|
1547
1609
|
});
|
|
1548
|
-
this.name = "UnsupportedIdentityProviderException";
|
|
1549
|
-
this.$fault = "client";
|
|
1550
1610
|
Object.setPrototypeOf(this, _UnsupportedIdentityProviderException.prototype);
|
|
1551
1611
|
}
|
|
1552
1612
|
};
|
|
1553
|
-
__name(_UnsupportedIdentityProviderException, "UnsupportedIdentityProviderException");
|
|
1554
|
-
var UnsupportedIdentityProviderException = _UnsupportedIdentityProviderException;
|
|
1555
1613
|
var CompromisedCredentialsEventActionType = {
|
|
1556
1614
|
BLOCK: "BLOCK",
|
|
1557
1615
|
NO_ACTION: "NO_ACTION"
|
|
@@ -1901,7 +1959,12 @@ var GetUserAuthFactorsResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj)
|
|
|
1901
1959
|
|
|
1902
1960
|
// src/models/models_1.ts
|
|
1903
1961
|
|
|
1904
|
-
var
|
|
1962
|
+
var UnauthorizedException = class _UnauthorizedException extends CognitoIdentityProviderServiceException {
|
|
1963
|
+
static {
|
|
1964
|
+
__name(this, "UnauthorizedException");
|
|
1965
|
+
}
|
|
1966
|
+
name = "UnauthorizedException";
|
|
1967
|
+
$fault = "client";
|
|
1905
1968
|
/**
|
|
1906
1969
|
* @internal
|
|
1907
1970
|
*/
|
|
@@ -1911,14 +1974,15 @@ var _UnauthorizedException = class _UnauthorizedException extends CognitoIdentit
|
|
|
1911
1974
|
$fault: "client",
|
|
1912
1975
|
...opts
|
|
1913
1976
|
});
|
|
1914
|
-
this.name = "UnauthorizedException";
|
|
1915
|
-
this.$fault = "client";
|
|
1916
1977
|
Object.setPrototypeOf(this, _UnauthorizedException.prototype);
|
|
1917
1978
|
}
|
|
1918
1979
|
};
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1980
|
+
var UnsupportedOperationException = class _UnsupportedOperationException extends CognitoIdentityProviderServiceException {
|
|
1981
|
+
static {
|
|
1982
|
+
__name(this, "UnsupportedOperationException");
|
|
1983
|
+
}
|
|
1984
|
+
name = "UnsupportedOperationException";
|
|
1985
|
+
$fault = "client";
|
|
1922
1986
|
/**
|
|
1923
1987
|
* @internal
|
|
1924
1988
|
*/
|
|
@@ -1928,14 +1992,15 @@ var _UnsupportedOperationException = class _UnsupportedOperationException extend
|
|
|
1928
1992
|
$fault: "client",
|
|
1929
1993
|
...opts
|
|
1930
1994
|
});
|
|
1931
|
-
this.name = "UnsupportedOperationException";
|
|
1932
|
-
this.$fault = "client";
|
|
1933
1995
|
Object.setPrototypeOf(this, _UnsupportedOperationException.prototype);
|
|
1934
1996
|
}
|
|
1935
1997
|
};
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1998
|
+
var UnsupportedTokenTypeException = class _UnsupportedTokenTypeException extends CognitoIdentityProviderServiceException {
|
|
1999
|
+
static {
|
|
2000
|
+
__name(this, "UnsupportedTokenTypeException");
|
|
2001
|
+
}
|
|
2002
|
+
name = "UnsupportedTokenTypeException";
|
|
2003
|
+
$fault = "client";
|
|
1939
2004
|
/**
|
|
1940
2005
|
* @internal
|
|
1941
2006
|
*/
|
|
@@ -1945,14 +2010,15 @@ var _UnsupportedTokenTypeException = class _UnsupportedTokenTypeException extend
|
|
|
1945
2010
|
$fault: "client",
|
|
1946
2011
|
...opts
|
|
1947
2012
|
});
|
|
1948
|
-
this.name = "UnsupportedTokenTypeException";
|
|
1949
|
-
this.$fault = "client";
|
|
1950
2013
|
Object.setPrototypeOf(this, _UnsupportedTokenTypeException.prototype);
|
|
1951
2014
|
}
|
|
1952
2015
|
};
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
2016
|
+
var WebAuthnConfigurationMissingException = class _WebAuthnConfigurationMissingException extends CognitoIdentityProviderServiceException {
|
|
2017
|
+
static {
|
|
2018
|
+
__name(this, "WebAuthnConfigurationMissingException");
|
|
2019
|
+
}
|
|
2020
|
+
name = "WebAuthnConfigurationMissingException";
|
|
2021
|
+
$fault = "client";
|
|
1956
2022
|
/**
|
|
1957
2023
|
* @internal
|
|
1958
2024
|
*/
|
|
@@ -1962,14 +2028,15 @@ var _WebAuthnConfigurationMissingException = class _WebAuthnConfigurationMissing
|
|
|
1962
2028
|
$fault: "client",
|
|
1963
2029
|
...opts
|
|
1964
2030
|
});
|
|
1965
|
-
this.name = "WebAuthnConfigurationMissingException";
|
|
1966
|
-
this.$fault = "client";
|
|
1967
2031
|
Object.setPrototypeOf(this, _WebAuthnConfigurationMissingException.prototype);
|
|
1968
2032
|
}
|
|
1969
2033
|
};
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
2034
|
+
var EnableSoftwareTokenMFAException = class _EnableSoftwareTokenMFAException extends CognitoIdentityProviderServiceException {
|
|
2035
|
+
static {
|
|
2036
|
+
__name(this, "EnableSoftwareTokenMFAException");
|
|
2037
|
+
}
|
|
2038
|
+
name = "EnableSoftwareTokenMFAException";
|
|
2039
|
+
$fault = "client";
|
|
1973
2040
|
/**
|
|
1974
2041
|
* @internal
|
|
1975
2042
|
*/
|
|
@@ -1979,13 +2046,9 @@ var _EnableSoftwareTokenMFAException = class _EnableSoftwareTokenMFAException ex
|
|
|
1979
2046
|
$fault: "client",
|
|
1980
2047
|
...opts
|
|
1981
2048
|
});
|
|
1982
|
-
this.name = "EnableSoftwareTokenMFAException";
|
|
1983
|
-
this.$fault = "client";
|
|
1984
2049
|
Object.setPrototypeOf(this, _EnableSoftwareTokenMFAException.prototype);
|
|
1985
2050
|
}
|
|
1986
2051
|
};
|
|
1987
|
-
__name(_EnableSoftwareTokenMFAException, "EnableSoftwareTokenMFAException");
|
|
1988
|
-
var EnableSoftwareTokenMFAException = _EnableSoftwareTokenMFAException;
|
|
1989
2052
|
var VerifySoftwareTokenResponseType = {
|
|
1990
2053
|
ERROR: "ERROR",
|
|
1991
2054
|
SUCCESS: "SUCCESS"
|
|
@@ -5475,1583 +5538,1696 @@ function sharedHeaders(operation) {
|
|
|
5475
5538
|
__name(sharedHeaders, "sharedHeaders");
|
|
5476
5539
|
|
|
5477
5540
|
// src/commands/AddCustomAttributesCommand.ts
|
|
5478
|
-
var
|
|
5541
|
+
var AddCustomAttributesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5479
5542
|
return [
|
|
5480
5543
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5481
5544
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5482
5545
|
];
|
|
5483
5546
|
}).s("AWSCognitoIdentityProviderService", "AddCustomAttributes", {}).n("CognitoIdentityProviderClient", "AddCustomAttributesCommand").f(void 0, void 0).ser(se_AddCustomAttributesCommand).de(de_AddCustomAttributesCommand).build() {
|
|
5547
|
+
static {
|
|
5548
|
+
__name(this, "AddCustomAttributesCommand");
|
|
5549
|
+
}
|
|
5484
5550
|
};
|
|
5485
|
-
__name(_AddCustomAttributesCommand, "AddCustomAttributesCommand");
|
|
5486
|
-
var AddCustomAttributesCommand = _AddCustomAttributesCommand;
|
|
5487
5551
|
|
|
5488
5552
|
// src/commands/AdminAddUserToGroupCommand.ts
|
|
5489
5553
|
|
|
5490
5554
|
|
|
5491
5555
|
|
|
5492
|
-
var
|
|
5556
|
+
var AdminAddUserToGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5493
5557
|
return [
|
|
5494
5558
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5495
5559
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5496
5560
|
];
|
|
5497
5561
|
}).s("AWSCognitoIdentityProviderService", "AdminAddUserToGroup", {}).n("CognitoIdentityProviderClient", "AdminAddUserToGroupCommand").f(AdminAddUserToGroupRequestFilterSensitiveLog, void 0).ser(se_AdminAddUserToGroupCommand).de(de_AdminAddUserToGroupCommand).build() {
|
|
5562
|
+
static {
|
|
5563
|
+
__name(this, "AdminAddUserToGroupCommand");
|
|
5564
|
+
}
|
|
5498
5565
|
};
|
|
5499
|
-
__name(_AdminAddUserToGroupCommand, "AdminAddUserToGroupCommand");
|
|
5500
|
-
var AdminAddUserToGroupCommand = _AdminAddUserToGroupCommand;
|
|
5501
5566
|
|
|
5502
5567
|
// src/commands/AdminConfirmSignUpCommand.ts
|
|
5503
5568
|
|
|
5504
5569
|
|
|
5505
5570
|
|
|
5506
|
-
var
|
|
5571
|
+
var AdminConfirmSignUpCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5507
5572
|
return [
|
|
5508
5573
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5509
5574
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5510
5575
|
];
|
|
5511
5576
|
}).s("AWSCognitoIdentityProviderService", "AdminConfirmSignUp", {}).n("CognitoIdentityProviderClient", "AdminConfirmSignUpCommand").f(AdminConfirmSignUpRequestFilterSensitiveLog, void 0).ser(se_AdminConfirmSignUpCommand).de(de_AdminConfirmSignUpCommand).build() {
|
|
5577
|
+
static {
|
|
5578
|
+
__name(this, "AdminConfirmSignUpCommand");
|
|
5579
|
+
}
|
|
5512
5580
|
};
|
|
5513
|
-
__name(_AdminConfirmSignUpCommand, "AdminConfirmSignUpCommand");
|
|
5514
|
-
var AdminConfirmSignUpCommand = _AdminConfirmSignUpCommand;
|
|
5515
5581
|
|
|
5516
5582
|
// src/commands/AdminCreateUserCommand.ts
|
|
5517
5583
|
|
|
5518
5584
|
|
|
5519
5585
|
|
|
5520
|
-
var
|
|
5586
|
+
var AdminCreateUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5521
5587
|
return [
|
|
5522
5588
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5523
5589
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5524
5590
|
];
|
|
5525
5591
|
}).s("AWSCognitoIdentityProviderService", "AdminCreateUser", {}).n("CognitoIdentityProviderClient", "AdminCreateUserCommand").f(AdminCreateUserRequestFilterSensitiveLog, AdminCreateUserResponseFilterSensitiveLog).ser(se_AdminCreateUserCommand).de(de_AdminCreateUserCommand).build() {
|
|
5592
|
+
static {
|
|
5593
|
+
__name(this, "AdminCreateUserCommand");
|
|
5594
|
+
}
|
|
5526
5595
|
};
|
|
5527
|
-
__name(_AdminCreateUserCommand, "AdminCreateUserCommand");
|
|
5528
|
-
var AdminCreateUserCommand = _AdminCreateUserCommand;
|
|
5529
5596
|
|
|
5530
5597
|
// src/commands/AdminDeleteUserAttributesCommand.ts
|
|
5531
5598
|
|
|
5532
5599
|
|
|
5533
5600
|
|
|
5534
|
-
var
|
|
5601
|
+
var AdminDeleteUserAttributesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5535
5602
|
return [
|
|
5536
5603
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5537
5604
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5538
5605
|
];
|
|
5539
5606
|
}).s("AWSCognitoIdentityProviderService", "AdminDeleteUserAttributes", {}).n("CognitoIdentityProviderClient", "AdminDeleteUserAttributesCommand").f(AdminDeleteUserAttributesRequestFilterSensitiveLog, void 0).ser(se_AdminDeleteUserAttributesCommand).de(de_AdminDeleteUserAttributesCommand).build() {
|
|
5607
|
+
static {
|
|
5608
|
+
__name(this, "AdminDeleteUserAttributesCommand");
|
|
5609
|
+
}
|
|
5540
5610
|
};
|
|
5541
|
-
__name(_AdminDeleteUserAttributesCommand, "AdminDeleteUserAttributesCommand");
|
|
5542
|
-
var AdminDeleteUserAttributesCommand = _AdminDeleteUserAttributesCommand;
|
|
5543
5611
|
|
|
5544
5612
|
// src/commands/AdminDeleteUserCommand.ts
|
|
5545
5613
|
|
|
5546
5614
|
|
|
5547
5615
|
|
|
5548
|
-
var
|
|
5616
|
+
var AdminDeleteUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5549
5617
|
return [
|
|
5550
5618
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5551
5619
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5552
5620
|
];
|
|
5553
5621
|
}).s("AWSCognitoIdentityProviderService", "AdminDeleteUser", {}).n("CognitoIdentityProviderClient", "AdminDeleteUserCommand").f(AdminDeleteUserRequestFilterSensitiveLog, void 0).ser(se_AdminDeleteUserCommand).de(de_AdminDeleteUserCommand).build() {
|
|
5622
|
+
static {
|
|
5623
|
+
__name(this, "AdminDeleteUserCommand");
|
|
5624
|
+
}
|
|
5554
5625
|
};
|
|
5555
|
-
__name(_AdminDeleteUserCommand, "AdminDeleteUserCommand");
|
|
5556
|
-
var AdminDeleteUserCommand = _AdminDeleteUserCommand;
|
|
5557
5626
|
|
|
5558
5627
|
// src/commands/AdminDisableProviderForUserCommand.ts
|
|
5559
5628
|
|
|
5560
5629
|
|
|
5561
5630
|
|
|
5562
|
-
var
|
|
5631
|
+
var AdminDisableProviderForUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5563
5632
|
return [
|
|
5564
5633
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5565
5634
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5566
5635
|
];
|
|
5567
5636
|
}).s("AWSCognitoIdentityProviderService", "AdminDisableProviderForUser", {}).n("CognitoIdentityProviderClient", "AdminDisableProviderForUserCommand").f(void 0, void 0).ser(se_AdminDisableProviderForUserCommand).de(de_AdminDisableProviderForUserCommand).build() {
|
|
5637
|
+
static {
|
|
5638
|
+
__name(this, "AdminDisableProviderForUserCommand");
|
|
5639
|
+
}
|
|
5568
5640
|
};
|
|
5569
|
-
__name(_AdminDisableProviderForUserCommand, "AdminDisableProviderForUserCommand");
|
|
5570
|
-
var AdminDisableProviderForUserCommand = _AdminDisableProviderForUserCommand;
|
|
5571
5641
|
|
|
5572
5642
|
// src/commands/AdminDisableUserCommand.ts
|
|
5573
5643
|
|
|
5574
5644
|
|
|
5575
5645
|
|
|
5576
|
-
var
|
|
5646
|
+
var AdminDisableUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5577
5647
|
return [
|
|
5578
5648
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5579
5649
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5580
5650
|
];
|
|
5581
5651
|
}).s("AWSCognitoIdentityProviderService", "AdminDisableUser", {}).n("CognitoIdentityProviderClient", "AdminDisableUserCommand").f(AdminDisableUserRequestFilterSensitiveLog, void 0).ser(se_AdminDisableUserCommand).de(de_AdminDisableUserCommand).build() {
|
|
5652
|
+
static {
|
|
5653
|
+
__name(this, "AdminDisableUserCommand");
|
|
5654
|
+
}
|
|
5582
5655
|
};
|
|
5583
|
-
__name(_AdminDisableUserCommand, "AdminDisableUserCommand");
|
|
5584
|
-
var AdminDisableUserCommand = _AdminDisableUserCommand;
|
|
5585
5656
|
|
|
5586
5657
|
// src/commands/AdminEnableUserCommand.ts
|
|
5587
5658
|
|
|
5588
5659
|
|
|
5589
5660
|
|
|
5590
|
-
var
|
|
5661
|
+
var AdminEnableUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5591
5662
|
return [
|
|
5592
5663
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5593
5664
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5594
5665
|
];
|
|
5595
5666
|
}).s("AWSCognitoIdentityProviderService", "AdminEnableUser", {}).n("CognitoIdentityProviderClient", "AdminEnableUserCommand").f(AdminEnableUserRequestFilterSensitiveLog, void 0).ser(se_AdminEnableUserCommand).de(de_AdminEnableUserCommand).build() {
|
|
5667
|
+
static {
|
|
5668
|
+
__name(this, "AdminEnableUserCommand");
|
|
5669
|
+
}
|
|
5596
5670
|
};
|
|
5597
|
-
__name(_AdminEnableUserCommand, "AdminEnableUserCommand");
|
|
5598
|
-
var AdminEnableUserCommand = _AdminEnableUserCommand;
|
|
5599
5671
|
|
|
5600
5672
|
// src/commands/AdminForgetDeviceCommand.ts
|
|
5601
5673
|
|
|
5602
5674
|
|
|
5603
5675
|
|
|
5604
|
-
var
|
|
5676
|
+
var AdminForgetDeviceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5605
5677
|
return [
|
|
5606
5678
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5607
5679
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5608
5680
|
];
|
|
5609
5681
|
}).s("AWSCognitoIdentityProviderService", "AdminForgetDevice", {}).n("CognitoIdentityProviderClient", "AdminForgetDeviceCommand").f(AdminForgetDeviceRequestFilterSensitiveLog, void 0).ser(se_AdminForgetDeviceCommand).de(de_AdminForgetDeviceCommand).build() {
|
|
5682
|
+
static {
|
|
5683
|
+
__name(this, "AdminForgetDeviceCommand");
|
|
5684
|
+
}
|
|
5610
5685
|
};
|
|
5611
|
-
__name(_AdminForgetDeviceCommand, "AdminForgetDeviceCommand");
|
|
5612
|
-
var AdminForgetDeviceCommand = _AdminForgetDeviceCommand;
|
|
5613
5686
|
|
|
5614
5687
|
// src/commands/AdminGetDeviceCommand.ts
|
|
5615
5688
|
|
|
5616
5689
|
|
|
5617
5690
|
|
|
5618
|
-
var
|
|
5691
|
+
var AdminGetDeviceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5619
5692
|
return [
|
|
5620
5693
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5621
5694
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5622
5695
|
];
|
|
5623
5696
|
}).s("AWSCognitoIdentityProviderService", "AdminGetDevice", {}).n("CognitoIdentityProviderClient", "AdminGetDeviceCommand").f(AdminGetDeviceRequestFilterSensitiveLog, AdminGetDeviceResponseFilterSensitiveLog).ser(se_AdminGetDeviceCommand).de(de_AdminGetDeviceCommand).build() {
|
|
5697
|
+
static {
|
|
5698
|
+
__name(this, "AdminGetDeviceCommand");
|
|
5699
|
+
}
|
|
5624
5700
|
};
|
|
5625
|
-
__name(_AdminGetDeviceCommand, "AdminGetDeviceCommand");
|
|
5626
|
-
var AdminGetDeviceCommand = _AdminGetDeviceCommand;
|
|
5627
5701
|
|
|
5628
5702
|
// src/commands/AdminGetUserCommand.ts
|
|
5629
5703
|
|
|
5630
5704
|
|
|
5631
5705
|
|
|
5632
|
-
var
|
|
5706
|
+
var AdminGetUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5633
5707
|
return [
|
|
5634
5708
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5635
5709
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5636
5710
|
];
|
|
5637
5711
|
}).s("AWSCognitoIdentityProviderService", "AdminGetUser", {}).n("CognitoIdentityProviderClient", "AdminGetUserCommand").f(AdminGetUserRequestFilterSensitiveLog, AdminGetUserResponseFilterSensitiveLog).ser(se_AdminGetUserCommand).de(de_AdminGetUserCommand).build() {
|
|
5712
|
+
static {
|
|
5713
|
+
__name(this, "AdminGetUserCommand");
|
|
5714
|
+
}
|
|
5638
5715
|
};
|
|
5639
|
-
__name(_AdminGetUserCommand, "AdminGetUserCommand");
|
|
5640
|
-
var AdminGetUserCommand = _AdminGetUserCommand;
|
|
5641
5716
|
|
|
5642
5717
|
// src/commands/AdminInitiateAuthCommand.ts
|
|
5643
5718
|
|
|
5644
5719
|
|
|
5645
5720
|
|
|
5646
|
-
var
|
|
5721
|
+
var AdminInitiateAuthCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5647
5722
|
return [
|
|
5648
5723
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5649
5724
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5650
5725
|
];
|
|
5651
5726
|
}).s("AWSCognitoIdentityProviderService", "AdminInitiateAuth", {}).n("CognitoIdentityProviderClient", "AdminInitiateAuthCommand").f(AdminInitiateAuthRequestFilterSensitiveLog, AdminInitiateAuthResponseFilterSensitiveLog).ser(se_AdminInitiateAuthCommand).de(de_AdminInitiateAuthCommand).build() {
|
|
5727
|
+
static {
|
|
5728
|
+
__name(this, "AdminInitiateAuthCommand");
|
|
5729
|
+
}
|
|
5652
5730
|
};
|
|
5653
|
-
__name(_AdminInitiateAuthCommand, "AdminInitiateAuthCommand");
|
|
5654
|
-
var AdminInitiateAuthCommand = _AdminInitiateAuthCommand;
|
|
5655
5731
|
|
|
5656
5732
|
// src/commands/AdminLinkProviderForUserCommand.ts
|
|
5657
5733
|
|
|
5658
5734
|
|
|
5659
5735
|
|
|
5660
|
-
var
|
|
5736
|
+
var AdminLinkProviderForUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5661
5737
|
return [
|
|
5662
5738
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5663
5739
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5664
5740
|
];
|
|
5665
5741
|
}).s("AWSCognitoIdentityProviderService", "AdminLinkProviderForUser", {}).n("CognitoIdentityProviderClient", "AdminLinkProviderForUserCommand").f(void 0, void 0).ser(se_AdminLinkProviderForUserCommand).de(de_AdminLinkProviderForUserCommand).build() {
|
|
5742
|
+
static {
|
|
5743
|
+
__name(this, "AdminLinkProviderForUserCommand");
|
|
5744
|
+
}
|
|
5666
5745
|
};
|
|
5667
|
-
__name(_AdminLinkProviderForUserCommand, "AdminLinkProviderForUserCommand");
|
|
5668
|
-
var AdminLinkProviderForUserCommand = _AdminLinkProviderForUserCommand;
|
|
5669
5746
|
|
|
5670
5747
|
// src/commands/AdminListDevicesCommand.ts
|
|
5671
5748
|
|
|
5672
5749
|
|
|
5673
5750
|
|
|
5674
|
-
var
|
|
5751
|
+
var AdminListDevicesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5675
5752
|
return [
|
|
5676
5753
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5677
5754
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5678
5755
|
];
|
|
5679
5756
|
}).s("AWSCognitoIdentityProviderService", "AdminListDevices", {}).n("CognitoIdentityProviderClient", "AdminListDevicesCommand").f(AdminListDevicesRequestFilterSensitiveLog, AdminListDevicesResponseFilterSensitiveLog).ser(se_AdminListDevicesCommand).de(de_AdminListDevicesCommand).build() {
|
|
5757
|
+
static {
|
|
5758
|
+
__name(this, "AdminListDevicesCommand");
|
|
5759
|
+
}
|
|
5680
5760
|
};
|
|
5681
|
-
__name(_AdminListDevicesCommand, "AdminListDevicesCommand");
|
|
5682
|
-
var AdminListDevicesCommand = _AdminListDevicesCommand;
|
|
5683
5761
|
|
|
5684
5762
|
// src/commands/AdminListGroupsForUserCommand.ts
|
|
5685
5763
|
|
|
5686
5764
|
|
|
5687
5765
|
|
|
5688
|
-
var
|
|
5766
|
+
var AdminListGroupsForUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5689
5767
|
return [
|
|
5690
5768
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5691
5769
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5692
5770
|
];
|
|
5693
5771
|
}).s("AWSCognitoIdentityProviderService", "AdminListGroupsForUser", {}).n("CognitoIdentityProviderClient", "AdminListGroupsForUserCommand").f(AdminListGroupsForUserRequestFilterSensitiveLog, void 0).ser(se_AdminListGroupsForUserCommand).de(de_AdminListGroupsForUserCommand).build() {
|
|
5772
|
+
static {
|
|
5773
|
+
__name(this, "AdminListGroupsForUserCommand");
|
|
5774
|
+
}
|
|
5694
5775
|
};
|
|
5695
|
-
__name(_AdminListGroupsForUserCommand, "AdminListGroupsForUserCommand");
|
|
5696
|
-
var AdminListGroupsForUserCommand = _AdminListGroupsForUserCommand;
|
|
5697
5776
|
|
|
5698
5777
|
// src/commands/AdminListUserAuthEventsCommand.ts
|
|
5699
5778
|
|
|
5700
5779
|
|
|
5701
5780
|
|
|
5702
|
-
var
|
|
5781
|
+
var AdminListUserAuthEventsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5703
5782
|
return [
|
|
5704
5783
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5705
5784
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5706
5785
|
];
|
|
5707
5786
|
}).s("AWSCognitoIdentityProviderService", "AdminListUserAuthEvents", {}).n("CognitoIdentityProviderClient", "AdminListUserAuthEventsCommand").f(AdminListUserAuthEventsRequestFilterSensitiveLog, void 0).ser(se_AdminListUserAuthEventsCommand).de(de_AdminListUserAuthEventsCommand).build() {
|
|
5787
|
+
static {
|
|
5788
|
+
__name(this, "AdminListUserAuthEventsCommand");
|
|
5789
|
+
}
|
|
5708
5790
|
};
|
|
5709
|
-
__name(_AdminListUserAuthEventsCommand, "AdminListUserAuthEventsCommand");
|
|
5710
|
-
var AdminListUserAuthEventsCommand = _AdminListUserAuthEventsCommand;
|
|
5711
5791
|
|
|
5712
5792
|
// src/commands/AdminRemoveUserFromGroupCommand.ts
|
|
5713
5793
|
|
|
5714
5794
|
|
|
5715
5795
|
|
|
5716
|
-
var
|
|
5796
|
+
var AdminRemoveUserFromGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5717
5797
|
return [
|
|
5718
5798
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5719
5799
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5720
5800
|
];
|
|
5721
5801
|
}).s("AWSCognitoIdentityProviderService", "AdminRemoveUserFromGroup", {}).n("CognitoIdentityProviderClient", "AdminRemoveUserFromGroupCommand").f(AdminRemoveUserFromGroupRequestFilterSensitiveLog, void 0).ser(se_AdminRemoveUserFromGroupCommand).de(de_AdminRemoveUserFromGroupCommand).build() {
|
|
5802
|
+
static {
|
|
5803
|
+
__name(this, "AdminRemoveUserFromGroupCommand");
|
|
5804
|
+
}
|
|
5722
5805
|
};
|
|
5723
|
-
__name(_AdminRemoveUserFromGroupCommand, "AdminRemoveUserFromGroupCommand");
|
|
5724
|
-
var AdminRemoveUserFromGroupCommand = _AdminRemoveUserFromGroupCommand;
|
|
5725
5806
|
|
|
5726
5807
|
// src/commands/AdminResetUserPasswordCommand.ts
|
|
5727
5808
|
|
|
5728
5809
|
|
|
5729
5810
|
|
|
5730
|
-
var
|
|
5811
|
+
var AdminResetUserPasswordCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5731
5812
|
return [
|
|
5732
5813
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5733
5814
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5734
5815
|
];
|
|
5735
5816
|
}).s("AWSCognitoIdentityProviderService", "AdminResetUserPassword", {}).n("CognitoIdentityProviderClient", "AdminResetUserPasswordCommand").f(AdminResetUserPasswordRequestFilterSensitiveLog, void 0).ser(se_AdminResetUserPasswordCommand).de(de_AdminResetUserPasswordCommand).build() {
|
|
5817
|
+
static {
|
|
5818
|
+
__name(this, "AdminResetUserPasswordCommand");
|
|
5819
|
+
}
|
|
5736
5820
|
};
|
|
5737
|
-
__name(_AdminResetUserPasswordCommand, "AdminResetUserPasswordCommand");
|
|
5738
|
-
var AdminResetUserPasswordCommand = _AdminResetUserPasswordCommand;
|
|
5739
5821
|
|
|
5740
5822
|
// src/commands/AdminRespondToAuthChallengeCommand.ts
|
|
5741
5823
|
|
|
5742
5824
|
|
|
5743
5825
|
|
|
5744
|
-
var
|
|
5826
|
+
var AdminRespondToAuthChallengeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5745
5827
|
return [
|
|
5746
5828
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5747
5829
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5748
5830
|
];
|
|
5749
5831
|
}).s("AWSCognitoIdentityProviderService", "AdminRespondToAuthChallenge", {}).n("CognitoIdentityProviderClient", "AdminRespondToAuthChallengeCommand").f(AdminRespondToAuthChallengeRequestFilterSensitiveLog, AdminRespondToAuthChallengeResponseFilterSensitiveLog).ser(se_AdminRespondToAuthChallengeCommand).de(de_AdminRespondToAuthChallengeCommand).build() {
|
|
5832
|
+
static {
|
|
5833
|
+
__name(this, "AdminRespondToAuthChallengeCommand");
|
|
5834
|
+
}
|
|
5750
5835
|
};
|
|
5751
|
-
__name(_AdminRespondToAuthChallengeCommand, "AdminRespondToAuthChallengeCommand");
|
|
5752
|
-
var AdminRespondToAuthChallengeCommand = _AdminRespondToAuthChallengeCommand;
|
|
5753
5836
|
|
|
5754
5837
|
// src/commands/AdminSetUserMFAPreferenceCommand.ts
|
|
5755
5838
|
|
|
5756
5839
|
|
|
5757
5840
|
|
|
5758
|
-
var
|
|
5841
|
+
var AdminSetUserMFAPreferenceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5759
5842
|
return [
|
|
5760
5843
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5761
5844
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5762
5845
|
];
|
|
5763
5846
|
}).s("AWSCognitoIdentityProviderService", "AdminSetUserMFAPreference", {}).n("CognitoIdentityProviderClient", "AdminSetUserMFAPreferenceCommand").f(AdminSetUserMFAPreferenceRequestFilterSensitiveLog, void 0).ser(se_AdminSetUserMFAPreferenceCommand).de(de_AdminSetUserMFAPreferenceCommand).build() {
|
|
5847
|
+
static {
|
|
5848
|
+
__name(this, "AdminSetUserMFAPreferenceCommand");
|
|
5849
|
+
}
|
|
5764
5850
|
};
|
|
5765
|
-
__name(_AdminSetUserMFAPreferenceCommand, "AdminSetUserMFAPreferenceCommand");
|
|
5766
|
-
var AdminSetUserMFAPreferenceCommand = _AdminSetUserMFAPreferenceCommand;
|
|
5767
5851
|
|
|
5768
5852
|
// src/commands/AdminSetUserPasswordCommand.ts
|
|
5769
5853
|
|
|
5770
5854
|
|
|
5771
5855
|
|
|
5772
|
-
var
|
|
5856
|
+
var AdminSetUserPasswordCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5773
5857
|
return [
|
|
5774
5858
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5775
5859
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5776
5860
|
];
|
|
5777
5861
|
}).s("AWSCognitoIdentityProviderService", "AdminSetUserPassword", {}).n("CognitoIdentityProviderClient", "AdminSetUserPasswordCommand").f(AdminSetUserPasswordRequestFilterSensitiveLog, void 0).ser(se_AdminSetUserPasswordCommand).de(de_AdminSetUserPasswordCommand).build() {
|
|
5862
|
+
static {
|
|
5863
|
+
__name(this, "AdminSetUserPasswordCommand");
|
|
5864
|
+
}
|
|
5778
5865
|
};
|
|
5779
|
-
__name(_AdminSetUserPasswordCommand, "AdminSetUserPasswordCommand");
|
|
5780
|
-
var AdminSetUserPasswordCommand = _AdminSetUserPasswordCommand;
|
|
5781
5866
|
|
|
5782
5867
|
// src/commands/AdminSetUserSettingsCommand.ts
|
|
5783
5868
|
|
|
5784
5869
|
|
|
5785
5870
|
|
|
5786
|
-
var
|
|
5871
|
+
var AdminSetUserSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5787
5872
|
return [
|
|
5788
5873
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5789
5874
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5790
5875
|
];
|
|
5791
5876
|
}).s("AWSCognitoIdentityProviderService", "AdminSetUserSettings", {}).n("CognitoIdentityProviderClient", "AdminSetUserSettingsCommand").f(AdminSetUserSettingsRequestFilterSensitiveLog, void 0).ser(se_AdminSetUserSettingsCommand).de(de_AdminSetUserSettingsCommand).build() {
|
|
5877
|
+
static {
|
|
5878
|
+
__name(this, "AdminSetUserSettingsCommand");
|
|
5879
|
+
}
|
|
5792
5880
|
};
|
|
5793
|
-
__name(_AdminSetUserSettingsCommand, "AdminSetUserSettingsCommand");
|
|
5794
|
-
var AdminSetUserSettingsCommand = _AdminSetUserSettingsCommand;
|
|
5795
5881
|
|
|
5796
5882
|
// src/commands/AdminUpdateAuthEventFeedbackCommand.ts
|
|
5797
5883
|
|
|
5798
5884
|
|
|
5799
5885
|
|
|
5800
|
-
var
|
|
5886
|
+
var AdminUpdateAuthEventFeedbackCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5801
5887
|
return [
|
|
5802
5888
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5803
5889
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5804
5890
|
];
|
|
5805
5891
|
}).s("AWSCognitoIdentityProviderService", "AdminUpdateAuthEventFeedback", {}).n("CognitoIdentityProviderClient", "AdminUpdateAuthEventFeedbackCommand").f(AdminUpdateAuthEventFeedbackRequestFilterSensitiveLog, void 0).ser(se_AdminUpdateAuthEventFeedbackCommand).de(de_AdminUpdateAuthEventFeedbackCommand).build() {
|
|
5892
|
+
static {
|
|
5893
|
+
__name(this, "AdminUpdateAuthEventFeedbackCommand");
|
|
5894
|
+
}
|
|
5806
5895
|
};
|
|
5807
|
-
__name(_AdminUpdateAuthEventFeedbackCommand, "AdminUpdateAuthEventFeedbackCommand");
|
|
5808
|
-
var AdminUpdateAuthEventFeedbackCommand = _AdminUpdateAuthEventFeedbackCommand;
|
|
5809
5896
|
|
|
5810
5897
|
// src/commands/AdminUpdateDeviceStatusCommand.ts
|
|
5811
5898
|
|
|
5812
5899
|
|
|
5813
5900
|
|
|
5814
|
-
var
|
|
5901
|
+
var AdminUpdateDeviceStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5815
5902
|
return [
|
|
5816
5903
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5817
5904
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5818
5905
|
];
|
|
5819
5906
|
}).s("AWSCognitoIdentityProviderService", "AdminUpdateDeviceStatus", {}).n("CognitoIdentityProviderClient", "AdminUpdateDeviceStatusCommand").f(AdminUpdateDeviceStatusRequestFilterSensitiveLog, void 0).ser(se_AdminUpdateDeviceStatusCommand).de(de_AdminUpdateDeviceStatusCommand).build() {
|
|
5907
|
+
static {
|
|
5908
|
+
__name(this, "AdminUpdateDeviceStatusCommand");
|
|
5909
|
+
}
|
|
5820
5910
|
};
|
|
5821
|
-
__name(_AdminUpdateDeviceStatusCommand, "AdminUpdateDeviceStatusCommand");
|
|
5822
|
-
var AdminUpdateDeviceStatusCommand = _AdminUpdateDeviceStatusCommand;
|
|
5823
5911
|
|
|
5824
5912
|
// src/commands/AdminUpdateUserAttributesCommand.ts
|
|
5825
5913
|
|
|
5826
5914
|
|
|
5827
5915
|
|
|
5828
|
-
var
|
|
5916
|
+
var AdminUpdateUserAttributesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5829
5917
|
return [
|
|
5830
5918
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5831
5919
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5832
5920
|
];
|
|
5833
5921
|
}).s("AWSCognitoIdentityProviderService", "AdminUpdateUserAttributes", {}).n("CognitoIdentityProviderClient", "AdminUpdateUserAttributesCommand").f(AdminUpdateUserAttributesRequestFilterSensitiveLog, void 0).ser(se_AdminUpdateUserAttributesCommand).de(de_AdminUpdateUserAttributesCommand).build() {
|
|
5922
|
+
static {
|
|
5923
|
+
__name(this, "AdminUpdateUserAttributesCommand");
|
|
5924
|
+
}
|
|
5834
5925
|
};
|
|
5835
|
-
__name(_AdminUpdateUserAttributesCommand, "AdminUpdateUserAttributesCommand");
|
|
5836
|
-
var AdminUpdateUserAttributesCommand = _AdminUpdateUserAttributesCommand;
|
|
5837
5926
|
|
|
5838
5927
|
// src/commands/AdminUserGlobalSignOutCommand.ts
|
|
5839
5928
|
|
|
5840
5929
|
|
|
5841
5930
|
|
|
5842
|
-
var
|
|
5931
|
+
var AdminUserGlobalSignOutCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5843
5932
|
return [
|
|
5844
5933
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5845
5934
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5846
5935
|
];
|
|
5847
5936
|
}).s("AWSCognitoIdentityProviderService", "AdminUserGlobalSignOut", {}).n("CognitoIdentityProviderClient", "AdminUserGlobalSignOutCommand").f(AdminUserGlobalSignOutRequestFilterSensitiveLog, void 0).ser(se_AdminUserGlobalSignOutCommand).de(de_AdminUserGlobalSignOutCommand).build() {
|
|
5937
|
+
static {
|
|
5938
|
+
__name(this, "AdminUserGlobalSignOutCommand");
|
|
5939
|
+
}
|
|
5848
5940
|
};
|
|
5849
|
-
__name(_AdminUserGlobalSignOutCommand, "AdminUserGlobalSignOutCommand");
|
|
5850
|
-
var AdminUserGlobalSignOutCommand = _AdminUserGlobalSignOutCommand;
|
|
5851
5941
|
|
|
5852
5942
|
// src/commands/AssociateSoftwareTokenCommand.ts
|
|
5853
5943
|
|
|
5854
5944
|
|
|
5855
5945
|
|
|
5856
|
-
var
|
|
5946
|
+
var AssociateSoftwareTokenCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5857
5947
|
return [
|
|
5858
5948
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5859
5949
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5860
5950
|
];
|
|
5861
5951
|
}).s("AWSCognitoIdentityProviderService", "AssociateSoftwareToken", {}).n("CognitoIdentityProviderClient", "AssociateSoftwareTokenCommand").f(AssociateSoftwareTokenRequestFilterSensitiveLog, AssociateSoftwareTokenResponseFilterSensitiveLog).ser(se_AssociateSoftwareTokenCommand).de(de_AssociateSoftwareTokenCommand).build() {
|
|
5952
|
+
static {
|
|
5953
|
+
__name(this, "AssociateSoftwareTokenCommand");
|
|
5954
|
+
}
|
|
5862
5955
|
};
|
|
5863
|
-
__name(_AssociateSoftwareTokenCommand, "AssociateSoftwareTokenCommand");
|
|
5864
|
-
var AssociateSoftwareTokenCommand = _AssociateSoftwareTokenCommand;
|
|
5865
5956
|
|
|
5866
5957
|
// src/commands/ChangePasswordCommand.ts
|
|
5867
5958
|
|
|
5868
5959
|
|
|
5869
5960
|
|
|
5870
|
-
var
|
|
5961
|
+
var ChangePasswordCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5871
5962
|
return [
|
|
5872
5963
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5873
5964
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5874
5965
|
];
|
|
5875
5966
|
}).s("AWSCognitoIdentityProviderService", "ChangePassword", {}).n("CognitoIdentityProviderClient", "ChangePasswordCommand").f(ChangePasswordRequestFilterSensitiveLog, void 0).ser(se_ChangePasswordCommand).de(de_ChangePasswordCommand).build() {
|
|
5967
|
+
static {
|
|
5968
|
+
__name(this, "ChangePasswordCommand");
|
|
5969
|
+
}
|
|
5876
5970
|
};
|
|
5877
|
-
__name(_ChangePasswordCommand, "ChangePasswordCommand");
|
|
5878
|
-
var ChangePasswordCommand = _ChangePasswordCommand;
|
|
5879
5971
|
|
|
5880
5972
|
// src/commands/CompleteWebAuthnRegistrationCommand.ts
|
|
5881
5973
|
|
|
5882
5974
|
|
|
5883
5975
|
|
|
5884
|
-
var
|
|
5976
|
+
var CompleteWebAuthnRegistrationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5885
5977
|
return [
|
|
5886
5978
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5887
5979
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5888
5980
|
];
|
|
5889
5981
|
}).s("AWSCognitoIdentityProviderService", "CompleteWebAuthnRegistration", {}).n("CognitoIdentityProviderClient", "CompleteWebAuthnRegistrationCommand").f(CompleteWebAuthnRegistrationRequestFilterSensitiveLog, void 0).ser(se_CompleteWebAuthnRegistrationCommand).de(de_CompleteWebAuthnRegistrationCommand).build() {
|
|
5982
|
+
static {
|
|
5983
|
+
__name(this, "CompleteWebAuthnRegistrationCommand");
|
|
5984
|
+
}
|
|
5890
5985
|
};
|
|
5891
|
-
__name(_CompleteWebAuthnRegistrationCommand, "CompleteWebAuthnRegistrationCommand");
|
|
5892
|
-
var CompleteWebAuthnRegistrationCommand = _CompleteWebAuthnRegistrationCommand;
|
|
5893
5986
|
|
|
5894
5987
|
// src/commands/ConfirmDeviceCommand.ts
|
|
5895
5988
|
|
|
5896
5989
|
|
|
5897
5990
|
|
|
5898
|
-
var
|
|
5991
|
+
var ConfirmDeviceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5899
5992
|
return [
|
|
5900
5993
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5901
5994
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5902
5995
|
];
|
|
5903
5996
|
}).s("AWSCognitoIdentityProviderService", "ConfirmDevice", {}).n("CognitoIdentityProviderClient", "ConfirmDeviceCommand").f(ConfirmDeviceRequestFilterSensitiveLog, void 0).ser(se_ConfirmDeviceCommand).de(de_ConfirmDeviceCommand).build() {
|
|
5997
|
+
static {
|
|
5998
|
+
__name(this, "ConfirmDeviceCommand");
|
|
5999
|
+
}
|
|
5904
6000
|
};
|
|
5905
|
-
__name(_ConfirmDeviceCommand, "ConfirmDeviceCommand");
|
|
5906
|
-
var ConfirmDeviceCommand = _ConfirmDeviceCommand;
|
|
5907
6001
|
|
|
5908
6002
|
// src/commands/ConfirmForgotPasswordCommand.ts
|
|
5909
6003
|
|
|
5910
6004
|
|
|
5911
6005
|
|
|
5912
|
-
var
|
|
6006
|
+
var ConfirmForgotPasswordCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5913
6007
|
return [
|
|
5914
6008
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5915
6009
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5916
6010
|
];
|
|
5917
6011
|
}).s("AWSCognitoIdentityProviderService", "ConfirmForgotPassword", {}).n("CognitoIdentityProviderClient", "ConfirmForgotPasswordCommand").f(ConfirmForgotPasswordRequestFilterSensitiveLog, void 0).ser(se_ConfirmForgotPasswordCommand).de(de_ConfirmForgotPasswordCommand).build() {
|
|
6012
|
+
static {
|
|
6013
|
+
__name(this, "ConfirmForgotPasswordCommand");
|
|
6014
|
+
}
|
|
5918
6015
|
};
|
|
5919
|
-
__name(_ConfirmForgotPasswordCommand, "ConfirmForgotPasswordCommand");
|
|
5920
|
-
var ConfirmForgotPasswordCommand = _ConfirmForgotPasswordCommand;
|
|
5921
6016
|
|
|
5922
6017
|
// src/commands/ConfirmSignUpCommand.ts
|
|
5923
6018
|
|
|
5924
6019
|
|
|
5925
6020
|
|
|
5926
|
-
var
|
|
6021
|
+
var ConfirmSignUpCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5927
6022
|
return [
|
|
5928
6023
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5929
6024
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5930
6025
|
];
|
|
5931
6026
|
}).s("AWSCognitoIdentityProviderService", "ConfirmSignUp", {}).n("CognitoIdentityProviderClient", "ConfirmSignUpCommand").f(ConfirmSignUpRequestFilterSensitiveLog, ConfirmSignUpResponseFilterSensitiveLog).ser(se_ConfirmSignUpCommand).de(de_ConfirmSignUpCommand).build() {
|
|
6027
|
+
static {
|
|
6028
|
+
__name(this, "ConfirmSignUpCommand");
|
|
6029
|
+
}
|
|
5932
6030
|
};
|
|
5933
|
-
__name(_ConfirmSignUpCommand, "ConfirmSignUpCommand");
|
|
5934
|
-
var ConfirmSignUpCommand = _ConfirmSignUpCommand;
|
|
5935
6031
|
|
|
5936
6032
|
// src/commands/CreateGroupCommand.ts
|
|
5937
6033
|
|
|
5938
6034
|
|
|
5939
6035
|
|
|
5940
|
-
var
|
|
6036
|
+
var CreateGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5941
6037
|
return [
|
|
5942
6038
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5943
6039
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5944
6040
|
];
|
|
5945
6041
|
}).s("AWSCognitoIdentityProviderService", "CreateGroup", {}).n("CognitoIdentityProviderClient", "CreateGroupCommand").f(void 0, void 0).ser(se_CreateGroupCommand).de(de_CreateGroupCommand).build() {
|
|
6042
|
+
static {
|
|
6043
|
+
__name(this, "CreateGroupCommand");
|
|
6044
|
+
}
|
|
5946
6045
|
};
|
|
5947
|
-
__name(_CreateGroupCommand, "CreateGroupCommand");
|
|
5948
|
-
var CreateGroupCommand = _CreateGroupCommand;
|
|
5949
6046
|
|
|
5950
6047
|
// src/commands/CreateIdentityProviderCommand.ts
|
|
5951
6048
|
|
|
5952
6049
|
|
|
5953
6050
|
|
|
5954
|
-
var
|
|
6051
|
+
var CreateIdentityProviderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5955
6052
|
return [
|
|
5956
6053
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5957
6054
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5958
6055
|
];
|
|
5959
6056
|
}).s("AWSCognitoIdentityProviderService", "CreateIdentityProvider", {}).n("CognitoIdentityProviderClient", "CreateIdentityProviderCommand").f(void 0, void 0).ser(se_CreateIdentityProviderCommand).de(de_CreateIdentityProviderCommand).build() {
|
|
6057
|
+
static {
|
|
6058
|
+
__name(this, "CreateIdentityProviderCommand");
|
|
6059
|
+
}
|
|
5960
6060
|
};
|
|
5961
|
-
__name(_CreateIdentityProviderCommand, "CreateIdentityProviderCommand");
|
|
5962
|
-
var CreateIdentityProviderCommand = _CreateIdentityProviderCommand;
|
|
5963
6061
|
|
|
5964
6062
|
// src/commands/CreateManagedLoginBrandingCommand.ts
|
|
5965
6063
|
|
|
5966
6064
|
|
|
5967
6065
|
|
|
5968
|
-
var
|
|
6066
|
+
var CreateManagedLoginBrandingCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5969
6067
|
return [
|
|
5970
6068
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5971
6069
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5972
6070
|
];
|
|
5973
6071
|
}).s("AWSCognitoIdentityProviderService", "CreateManagedLoginBranding", {}).n("CognitoIdentityProviderClient", "CreateManagedLoginBrandingCommand").f(CreateManagedLoginBrandingRequestFilterSensitiveLog, void 0).ser(se_CreateManagedLoginBrandingCommand).de(de_CreateManagedLoginBrandingCommand).build() {
|
|
6072
|
+
static {
|
|
6073
|
+
__name(this, "CreateManagedLoginBrandingCommand");
|
|
6074
|
+
}
|
|
5974
6075
|
};
|
|
5975
|
-
__name(_CreateManagedLoginBrandingCommand, "CreateManagedLoginBrandingCommand");
|
|
5976
|
-
var CreateManagedLoginBrandingCommand = _CreateManagedLoginBrandingCommand;
|
|
5977
6076
|
|
|
5978
6077
|
// src/commands/CreateResourceServerCommand.ts
|
|
5979
6078
|
|
|
5980
6079
|
|
|
5981
6080
|
|
|
5982
|
-
var
|
|
6081
|
+
var CreateResourceServerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5983
6082
|
return [
|
|
5984
6083
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5985
6084
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5986
6085
|
];
|
|
5987
6086
|
}).s("AWSCognitoIdentityProviderService", "CreateResourceServer", {}).n("CognitoIdentityProviderClient", "CreateResourceServerCommand").f(void 0, void 0).ser(se_CreateResourceServerCommand).de(de_CreateResourceServerCommand).build() {
|
|
6087
|
+
static {
|
|
6088
|
+
__name(this, "CreateResourceServerCommand");
|
|
6089
|
+
}
|
|
5988
6090
|
};
|
|
5989
|
-
__name(_CreateResourceServerCommand, "CreateResourceServerCommand");
|
|
5990
|
-
var CreateResourceServerCommand = _CreateResourceServerCommand;
|
|
5991
6091
|
|
|
5992
6092
|
// src/commands/CreateUserImportJobCommand.ts
|
|
5993
6093
|
|
|
5994
6094
|
|
|
5995
6095
|
|
|
5996
|
-
var
|
|
6096
|
+
var CreateUserImportJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5997
6097
|
return [
|
|
5998
6098
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5999
6099
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6000
6100
|
];
|
|
6001
6101
|
}).s("AWSCognitoIdentityProviderService", "CreateUserImportJob", {}).n("CognitoIdentityProviderClient", "CreateUserImportJobCommand").f(void 0, void 0).ser(se_CreateUserImportJobCommand).de(de_CreateUserImportJobCommand).build() {
|
|
6102
|
+
static {
|
|
6103
|
+
__name(this, "CreateUserImportJobCommand");
|
|
6104
|
+
}
|
|
6002
6105
|
};
|
|
6003
|
-
__name(_CreateUserImportJobCommand, "CreateUserImportJobCommand");
|
|
6004
|
-
var CreateUserImportJobCommand = _CreateUserImportJobCommand;
|
|
6005
6106
|
|
|
6006
6107
|
// src/commands/CreateUserPoolClientCommand.ts
|
|
6007
6108
|
|
|
6008
6109
|
|
|
6009
6110
|
|
|
6010
|
-
var
|
|
6111
|
+
var CreateUserPoolClientCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6011
6112
|
return [
|
|
6012
6113
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6013
6114
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6014
6115
|
];
|
|
6015
6116
|
}).s("AWSCognitoIdentityProviderService", "CreateUserPoolClient", {}).n("CognitoIdentityProviderClient", "CreateUserPoolClientCommand").f(void 0, CreateUserPoolClientResponseFilterSensitiveLog).ser(se_CreateUserPoolClientCommand).de(de_CreateUserPoolClientCommand).build() {
|
|
6117
|
+
static {
|
|
6118
|
+
__name(this, "CreateUserPoolClientCommand");
|
|
6119
|
+
}
|
|
6016
6120
|
};
|
|
6017
|
-
__name(_CreateUserPoolClientCommand, "CreateUserPoolClientCommand");
|
|
6018
|
-
var CreateUserPoolClientCommand = _CreateUserPoolClientCommand;
|
|
6019
6121
|
|
|
6020
6122
|
// src/commands/CreateUserPoolCommand.ts
|
|
6021
6123
|
|
|
6022
6124
|
|
|
6023
6125
|
|
|
6024
|
-
var
|
|
6126
|
+
var CreateUserPoolCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6025
6127
|
return [
|
|
6026
6128
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6027
6129
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6028
6130
|
];
|
|
6029
6131
|
}).s("AWSCognitoIdentityProviderService", "CreateUserPool", {}).n("CognitoIdentityProviderClient", "CreateUserPoolCommand").f(void 0, void 0).ser(se_CreateUserPoolCommand).de(de_CreateUserPoolCommand).build() {
|
|
6132
|
+
static {
|
|
6133
|
+
__name(this, "CreateUserPoolCommand");
|
|
6134
|
+
}
|
|
6030
6135
|
};
|
|
6031
|
-
__name(_CreateUserPoolCommand, "CreateUserPoolCommand");
|
|
6032
|
-
var CreateUserPoolCommand = _CreateUserPoolCommand;
|
|
6033
6136
|
|
|
6034
6137
|
// src/commands/CreateUserPoolDomainCommand.ts
|
|
6035
6138
|
|
|
6036
6139
|
|
|
6037
6140
|
|
|
6038
|
-
var
|
|
6141
|
+
var CreateUserPoolDomainCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6039
6142
|
return [
|
|
6040
6143
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6041
6144
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6042
6145
|
];
|
|
6043
6146
|
}).s("AWSCognitoIdentityProviderService", "CreateUserPoolDomain", {}).n("CognitoIdentityProviderClient", "CreateUserPoolDomainCommand").f(void 0, void 0).ser(se_CreateUserPoolDomainCommand).de(de_CreateUserPoolDomainCommand).build() {
|
|
6147
|
+
static {
|
|
6148
|
+
__name(this, "CreateUserPoolDomainCommand");
|
|
6149
|
+
}
|
|
6044
6150
|
};
|
|
6045
|
-
__name(_CreateUserPoolDomainCommand, "CreateUserPoolDomainCommand");
|
|
6046
|
-
var CreateUserPoolDomainCommand = _CreateUserPoolDomainCommand;
|
|
6047
6151
|
|
|
6048
6152
|
// src/commands/DeleteGroupCommand.ts
|
|
6049
6153
|
|
|
6050
6154
|
|
|
6051
6155
|
|
|
6052
|
-
var
|
|
6156
|
+
var DeleteGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6053
6157
|
return [
|
|
6054
6158
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6055
6159
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6056
6160
|
];
|
|
6057
6161
|
}).s("AWSCognitoIdentityProviderService", "DeleteGroup", {}).n("CognitoIdentityProviderClient", "DeleteGroupCommand").f(void 0, void 0).ser(se_DeleteGroupCommand).de(de_DeleteGroupCommand).build() {
|
|
6162
|
+
static {
|
|
6163
|
+
__name(this, "DeleteGroupCommand");
|
|
6164
|
+
}
|
|
6058
6165
|
};
|
|
6059
|
-
__name(_DeleteGroupCommand, "DeleteGroupCommand");
|
|
6060
|
-
var DeleteGroupCommand = _DeleteGroupCommand;
|
|
6061
6166
|
|
|
6062
6167
|
// src/commands/DeleteIdentityProviderCommand.ts
|
|
6063
6168
|
|
|
6064
6169
|
|
|
6065
6170
|
|
|
6066
|
-
var
|
|
6171
|
+
var DeleteIdentityProviderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6067
6172
|
return [
|
|
6068
6173
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6069
6174
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6070
6175
|
];
|
|
6071
6176
|
}).s("AWSCognitoIdentityProviderService", "DeleteIdentityProvider", {}).n("CognitoIdentityProviderClient", "DeleteIdentityProviderCommand").f(void 0, void 0).ser(se_DeleteIdentityProviderCommand).de(de_DeleteIdentityProviderCommand).build() {
|
|
6177
|
+
static {
|
|
6178
|
+
__name(this, "DeleteIdentityProviderCommand");
|
|
6179
|
+
}
|
|
6072
6180
|
};
|
|
6073
|
-
__name(_DeleteIdentityProviderCommand, "DeleteIdentityProviderCommand");
|
|
6074
|
-
var DeleteIdentityProviderCommand = _DeleteIdentityProviderCommand;
|
|
6075
6181
|
|
|
6076
6182
|
// src/commands/DeleteManagedLoginBrandingCommand.ts
|
|
6077
6183
|
|
|
6078
6184
|
|
|
6079
6185
|
|
|
6080
|
-
var
|
|
6186
|
+
var DeleteManagedLoginBrandingCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6081
6187
|
return [
|
|
6082
6188
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6083
6189
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6084
6190
|
];
|
|
6085
6191
|
}).s("AWSCognitoIdentityProviderService", "DeleteManagedLoginBranding", {}).n("CognitoIdentityProviderClient", "DeleteManagedLoginBrandingCommand").f(void 0, void 0).ser(se_DeleteManagedLoginBrandingCommand).de(de_DeleteManagedLoginBrandingCommand).build() {
|
|
6192
|
+
static {
|
|
6193
|
+
__name(this, "DeleteManagedLoginBrandingCommand");
|
|
6194
|
+
}
|
|
6086
6195
|
};
|
|
6087
|
-
__name(_DeleteManagedLoginBrandingCommand, "DeleteManagedLoginBrandingCommand");
|
|
6088
|
-
var DeleteManagedLoginBrandingCommand = _DeleteManagedLoginBrandingCommand;
|
|
6089
6196
|
|
|
6090
6197
|
// src/commands/DeleteResourceServerCommand.ts
|
|
6091
6198
|
|
|
6092
6199
|
|
|
6093
6200
|
|
|
6094
|
-
var
|
|
6201
|
+
var DeleteResourceServerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6095
6202
|
return [
|
|
6096
6203
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6097
6204
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6098
6205
|
];
|
|
6099
6206
|
}).s("AWSCognitoIdentityProviderService", "DeleteResourceServer", {}).n("CognitoIdentityProviderClient", "DeleteResourceServerCommand").f(void 0, void 0).ser(se_DeleteResourceServerCommand).de(de_DeleteResourceServerCommand).build() {
|
|
6207
|
+
static {
|
|
6208
|
+
__name(this, "DeleteResourceServerCommand");
|
|
6209
|
+
}
|
|
6100
6210
|
};
|
|
6101
|
-
__name(_DeleteResourceServerCommand, "DeleteResourceServerCommand");
|
|
6102
|
-
var DeleteResourceServerCommand = _DeleteResourceServerCommand;
|
|
6103
6211
|
|
|
6104
6212
|
// src/commands/DeleteUserAttributesCommand.ts
|
|
6105
6213
|
|
|
6106
6214
|
|
|
6107
6215
|
|
|
6108
|
-
var
|
|
6216
|
+
var DeleteUserAttributesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6109
6217
|
return [
|
|
6110
6218
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6111
6219
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6112
6220
|
];
|
|
6113
6221
|
}).s("AWSCognitoIdentityProviderService", "DeleteUserAttributes", {}).n("CognitoIdentityProviderClient", "DeleteUserAttributesCommand").f(DeleteUserAttributesRequestFilterSensitiveLog, void 0).ser(se_DeleteUserAttributesCommand).de(de_DeleteUserAttributesCommand).build() {
|
|
6222
|
+
static {
|
|
6223
|
+
__name(this, "DeleteUserAttributesCommand");
|
|
6224
|
+
}
|
|
6114
6225
|
};
|
|
6115
|
-
__name(_DeleteUserAttributesCommand, "DeleteUserAttributesCommand");
|
|
6116
|
-
var DeleteUserAttributesCommand = _DeleteUserAttributesCommand;
|
|
6117
6226
|
|
|
6118
6227
|
// src/commands/DeleteUserCommand.ts
|
|
6119
6228
|
|
|
6120
6229
|
|
|
6121
6230
|
|
|
6122
|
-
var
|
|
6231
|
+
var DeleteUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6123
6232
|
return [
|
|
6124
6233
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6125
6234
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6126
6235
|
];
|
|
6127
6236
|
}).s("AWSCognitoIdentityProviderService", "DeleteUser", {}).n("CognitoIdentityProviderClient", "DeleteUserCommand").f(DeleteUserRequestFilterSensitiveLog, void 0).ser(se_DeleteUserCommand).de(de_DeleteUserCommand).build() {
|
|
6237
|
+
static {
|
|
6238
|
+
__name(this, "DeleteUserCommand");
|
|
6239
|
+
}
|
|
6128
6240
|
};
|
|
6129
|
-
__name(_DeleteUserCommand, "DeleteUserCommand");
|
|
6130
|
-
var DeleteUserCommand = _DeleteUserCommand;
|
|
6131
6241
|
|
|
6132
6242
|
// src/commands/DeleteUserPoolClientCommand.ts
|
|
6133
6243
|
|
|
6134
6244
|
|
|
6135
6245
|
|
|
6136
|
-
var
|
|
6246
|
+
var DeleteUserPoolClientCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6137
6247
|
return [
|
|
6138
6248
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6139
6249
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6140
6250
|
];
|
|
6141
6251
|
}).s("AWSCognitoIdentityProviderService", "DeleteUserPoolClient", {}).n("CognitoIdentityProviderClient", "DeleteUserPoolClientCommand").f(DeleteUserPoolClientRequestFilterSensitiveLog, void 0).ser(se_DeleteUserPoolClientCommand).de(de_DeleteUserPoolClientCommand).build() {
|
|
6252
|
+
static {
|
|
6253
|
+
__name(this, "DeleteUserPoolClientCommand");
|
|
6254
|
+
}
|
|
6142
6255
|
};
|
|
6143
|
-
__name(_DeleteUserPoolClientCommand, "DeleteUserPoolClientCommand");
|
|
6144
|
-
var DeleteUserPoolClientCommand = _DeleteUserPoolClientCommand;
|
|
6145
6256
|
|
|
6146
6257
|
// src/commands/DeleteUserPoolCommand.ts
|
|
6147
6258
|
|
|
6148
6259
|
|
|
6149
6260
|
|
|
6150
|
-
var
|
|
6261
|
+
var DeleteUserPoolCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6151
6262
|
return [
|
|
6152
6263
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6153
6264
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6154
6265
|
];
|
|
6155
6266
|
}).s("AWSCognitoIdentityProviderService", "DeleteUserPool", {}).n("CognitoIdentityProviderClient", "DeleteUserPoolCommand").f(void 0, void 0).ser(se_DeleteUserPoolCommand).de(de_DeleteUserPoolCommand).build() {
|
|
6267
|
+
static {
|
|
6268
|
+
__name(this, "DeleteUserPoolCommand");
|
|
6269
|
+
}
|
|
6156
6270
|
};
|
|
6157
|
-
__name(_DeleteUserPoolCommand, "DeleteUserPoolCommand");
|
|
6158
|
-
var DeleteUserPoolCommand = _DeleteUserPoolCommand;
|
|
6159
6271
|
|
|
6160
6272
|
// src/commands/DeleteUserPoolDomainCommand.ts
|
|
6161
6273
|
|
|
6162
6274
|
|
|
6163
6275
|
|
|
6164
|
-
var
|
|
6276
|
+
var DeleteUserPoolDomainCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6165
6277
|
return [
|
|
6166
6278
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6167
6279
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6168
6280
|
];
|
|
6169
6281
|
}).s("AWSCognitoIdentityProviderService", "DeleteUserPoolDomain", {}).n("CognitoIdentityProviderClient", "DeleteUserPoolDomainCommand").f(void 0, void 0).ser(se_DeleteUserPoolDomainCommand).de(de_DeleteUserPoolDomainCommand).build() {
|
|
6282
|
+
static {
|
|
6283
|
+
__name(this, "DeleteUserPoolDomainCommand");
|
|
6284
|
+
}
|
|
6170
6285
|
};
|
|
6171
|
-
__name(_DeleteUserPoolDomainCommand, "DeleteUserPoolDomainCommand");
|
|
6172
|
-
var DeleteUserPoolDomainCommand = _DeleteUserPoolDomainCommand;
|
|
6173
6286
|
|
|
6174
6287
|
// src/commands/DeleteWebAuthnCredentialCommand.ts
|
|
6175
6288
|
|
|
6176
6289
|
|
|
6177
6290
|
|
|
6178
|
-
var
|
|
6291
|
+
var DeleteWebAuthnCredentialCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6179
6292
|
return [
|
|
6180
6293
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6181
6294
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6182
6295
|
];
|
|
6183
6296
|
}).s("AWSCognitoIdentityProviderService", "DeleteWebAuthnCredential", {}).n("CognitoIdentityProviderClient", "DeleteWebAuthnCredentialCommand").f(DeleteWebAuthnCredentialRequestFilterSensitiveLog, void 0).ser(se_DeleteWebAuthnCredentialCommand).de(de_DeleteWebAuthnCredentialCommand).build() {
|
|
6297
|
+
static {
|
|
6298
|
+
__name(this, "DeleteWebAuthnCredentialCommand");
|
|
6299
|
+
}
|
|
6184
6300
|
};
|
|
6185
|
-
__name(_DeleteWebAuthnCredentialCommand, "DeleteWebAuthnCredentialCommand");
|
|
6186
|
-
var DeleteWebAuthnCredentialCommand = _DeleteWebAuthnCredentialCommand;
|
|
6187
6301
|
|
|
6188
6302
|
// src/commands/DescribeIdentityProviderCommand.ts
|
|
6189
6303
|
|
|
6190
6304
|
|
|
6191
6305
|
|
|
6192
|
-
var
|
|
6306
|
+
var DescribeIdentityProviderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6193
6307
|
return [
|
|
6194
6308
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6195
6309
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6196
6310
|
];
|
|
6197
6311
|
}).s("AWSCognitoIdentityProviderService", "DescribeIdentityProvider", {}).n("CognitoIdentityProviderClient", "DescribeIdentityProviderCommand").f(void 0, void 0).ser(se_DescribeIdentityProviderCommand).de(de_DescribeIdentityProviderCommand).build() {
|
|
6312
|
+
static {
|
|
6313
|
+
__name(this, "DescribeIdentityProviderCommand");
|
|
6314
|
+
}
|
|
6198
6315
|
};
|
|
6199
|
-
__name(_DescribeIdentityProviderCommand, "DescribeIdentityProviderCommand");
|
|
6200
|
-
var DescribeIdentityProviderCommand = _DescribeIdentityProviderCommand;
|
|
6201
6316
|
|
|
6202
6317
|
// src/commands/DescribeManagedLoginBrandingByClientCommand.ts
|
|
6203
6318
|
|
|
6204
6319
|
|
|
6205
6320
|
|
|
6206
|
-
var
|
|
6321
|
+
var DescribeManagedLoginBrandingByClientCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6207
6322
|
return [
|
|
6208
6323
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6209
6324
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6210
6325
|
];
|
|
6211
6326
|
}).s("AWSCognitoIdentityProviderService", "DescribeManagedLoginBrandingByClient", {}).n("CognitoIdentityProviderClient", "DescribeManagedLoginBrandingByClientCommand").f(DescribeManagedLoginBrandingByClientRequestFilterSensitiveLog, void 0).ser(se_DescribeManagedLoginBrandingByClientCommand).de(de_DescribeManagedLoginBrandingByClientCommand).build() {
|
|
6327
|
+
static {
|
|
6328
|
+
__name(this, "DescribeManagedLoginBrandingByClientCommand");
|
|
6329
|
+
}
|
|
6212
6330
|
};
|
|
6213
|
-
__name(_DescribeManagedLoginBrandingByClientCommand, "DescribeManagedLoginBrandingByClientCommand");
|
|
6214
|
-
var DescribeManagedLoginBrandingByClientCommand = _DescribeManagedLoginBrandingByClientCommand;
|
|
6215
6331
|
|
|
6216
6332
|
// src/commands/DescribeManagedLoginBrandingCommand.ts
|
|
6217
6333
|
|
|
6218
6334
|
|
|
6219
6335
|
|
|
6220
|
-
var
|
|
6336
|
+
var DescribeManagedLoginBrandingCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6221
6337
|
return [
|
|
6222
6338
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6223
6339
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6224
6340
|
];
|
|
6225
6341
|
}).s("AWSCognitoIdentityProviderService", "DescribeManagedLoginBranding", {}).n("CognitoIdentityProviderClient", "DescribeManagedLoginBrandingCommand").f(void 0, void 0).ser(se_DescribeManagedLoginBrandingCommand).de(de_DescribeManagedLoginBrandingCommand).build() {
|
|
6342
|
+
static {
|
|
6343
|
+
__name(this, "DescribeManagedLoginBrandingCommand");
|
|
6344
|
+
}
|
|
6226
6345
|
};
|
|
6227
|
-
__name(_DescribeManagedLoginBrandingCommand, "DescribeManagedLoginBrandingCommand");
|
|
6228
|
-
var DescribeManagedLoginBrandingCommand = _DescribeManagedLoginBrandingCommand;
|
|
6229
6346
|
|
|
6230
6347
|
// src/commands/DescribeResourceServerCommand.ts
|
|
6231
6348
|
|
|
6232
6349
|
|
|
6233
6350
|
|
|
6234
|
-
var
|
|
6351
|
+
var DescribeResourceServerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6235
6352
|
return [
|
|
6236
6353
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6237
6354
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6238
6355
|
];
|
|
6239
6356
|
}).s("AWSCognitoIdentityProviderService", "DescribeResourceServer", {}).n("CognitoIdentityProviderClient", "DescribeResourceServerCommand").f(void 0, void 0).ser(se_DescribeResourceServerCommand).de(de_DescribeResourceServerCommand).build() {
|
|
6357
|
+
static {
|
|
6358
|
+
__name(this, "DescribeResourceServerCommand");
|
|
6359
|
+
}
|
|
6240
6360
|
};
|
|
6241
|
-
__name(_DescribeResourceServerCommand, "DescribeResourceServerCommand");
|
|
6242
|
-
var DescribeResourceServerCommand = _DescribeResourceServerCommand;
|
|
6243
6361
|
|
|
6244
6362
|
// src/commands/DescribeRiskConfigurationCommand.ts
|
|
6245
6363
|
|
|
6246
6364
|
|
|
6247
6365
|
|
|
6248
|
-
var
|
|
6366
|
+
var DescribeRiskConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6249
6367
|
return [
|
|
6250
6368
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6251
6369
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6252
6370
|
];
|
|
6253
6371
|
}).s("AWSCognitoIdentityProviderService", "DescribeRiskConfiguration", {}).n("CognitoIdentityProviderClient", "DescribeRiskConfigurationCommand").f(DescribeRiskConfigurationRequestFilterSensitiveLog, DescribeRiskConfigurationResponseFilterSensitiveLog).ser(se_DescribeRiskConfigurationCommand).de(de_DescribeRiskConfigurationCommand).build() {
|
|
6372
|
+
static {
|
|
6373
|
+
__name(this, "DescribeRiskConfigurationCommand");
|
|
6374
|
+
}
|
|
6254
6375
|
};
|
|
6255
|
-
__name(_DescribeRiskConfigurationCommand, "DescribeRiskConfigurationCommand");
|
|
6256
|
-
var DescribeRiskConfigurationCommand = _DescribeRiskConfigurationCommand;
|
|
6257
6376
|
|
|
6258
6377
|
// src/commands/DescribeUserImportJobCommand.ts
|
|
6259
6378
|
|
|
6260
6379
|
|
|
6261
6380
|
|
|
6262
|
-
var
|
|
6381
|
+
var DescribeUserImportJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6263
6382
|
return [
|
|
6264
6383
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6265
6384
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6266
6385
|
];
|
|
6267
6386
|
}).s("AWSCognitoIdentityProviderService", "DescribeUserImportJob", {}).n("CognitoIdentityProviderClient", "DescribeUserImportJobCommand").f(void 0, void 0).ser(se_DescribeUserImportJobCommand).de(de_DescribeUserImportJobCommand).build() {
|
|
6387
|
+
static {
|
|
6388
|
+
__name(this, "DescribeUserImportJobCommand");
|
|
6389
|
+
}
|
|
6268
6390
|
};
|
|
6269
|
-
__name(_DescribeUserImportJobCommand, "DescribeUserImportJobCommand");
|
|
6270
|
-
var DescribeUserImportJobCommand = _DescribeUserImportJobCommand;
|
|
6271
6391
|
|
|
6272
6392
|
// src/commands/DescribeUserPoolClientCommand.ts
|
|
6273
6393
|
|
|
6274
6394
|
|
|
6275
6395
|
|
|
6276
|
-
var
|
|
6396
|
+
var DescribeUserPoolClientCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6277
6397
|
return [
|
|
6278
6398
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6279
6399
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6280
6400
|
];
|
|
6281
6401
|
}).s("AWSCognitoIdentityProviderService", "DescribeUserPoolClient", {}).n("CognitoIdentityProviderClient", "DescribeUserPoolClientCommand").f(DescribeUserPoolClientRequestFilterSensitiveLog, DescribeUserPoolClientResponseFilterSensitiveLog).ser(se_DescribeUserPoolClientCommand).de(de_DescribeUserPoolClientCommand).build() {
|
|
6402
|
+
static {
|
|
6403
|
+
__name(this, "DescribeUserPoolClientCommand");
|
|
6404
|
+
}
|
|
6282
6405
|
};
|
|
6283
|
-
__name(_DescribeUserPoolClientCommand, "DescribeUserPoolClientCommand");
|
|
6284
|
-
var DescribeUserPoolClientCommand = _DescribeUserPoolClientCommand;
|
|
6285
6406
|
|
|
6286
6407
|
// src/commands/DescribeUserPoolCommand.ts
|
|
6287
6408
|
|
|
6288
6409
|
|
|
6289
6410
|
|
|
6290
|
-
var
|
|
6411
|
+
var DescribeUserPoolCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6291
6412
|
return [
|
|
6292
6413
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6293
6414
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6294
6415
|
];
|
|
6295
6416
|
}).s("AWSCognitoIdentityProviderService", "DescribeUserPool", {}).n("CognitoIdentityProviderClient", "DescribeUserPoolCommand").f(void 0, void 0).ser(se_DescribeUserPoolCommand).de(de_DescribeUserPoolCommand).build() {
|
|
6417
|
+
static {
|
|
6418
|
+
__name(this, "DescribeUserPoolCommand");
|
|
6419
|
+
}
|
|
6296
6420
|
};
|
|
6297
|
-
__name(_DescribeUserPoolCommand, "DescribeUserPoolCommand");
|
|
6298
|
-
var DescribeUserPoolCommand = _DescribeUserPoolCommand;
|
|
6299
6421
|
|
|
6300
6422
|
// src/commands/DescribeUserPoolDomainCommand.ts
|
|
6301
6423
|
|
|
6302
6424
|
|
|
6303
6425
|
|
|
6304
|
-
var
|
|
6426
|
+
var DescribeUserPoolDomainCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6305
6427
|
return [
|
|
6306
6428
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6307
6429
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6308
6430
|
];
|
|
6309
6431
|
}).s("AWSCognitoIdentityProviderService", "DescribeUserPoolDomain", {}).n("CognitoIdentityProviderClient", "DescribeUserPoolDomainCommand").f(void 0, void 0).ser(se_DescribeUserPoolDomainCommand).de(de_DescribeUserPoolDomainCommand).build() {
|
|
6432
|
+
static {
|
|
6433
|
+
__name(this, "DescribeUserPoolDomainCommand");
|
|
6434
|
+
}
|
|
6310
6435
|
};
|
|
6311
|
-
__name(_DescribeUserPoolDomainCommand, "DescribeUserPoolDomainCommand");
|
|
6312
|
-
var DescribeUserPoolDomainCommand = _DescribeUserPoolDomainCommand;
|
|
6313
6436
|
|
|
6314
6437
|
// src/commands/ForgetDeviceCommand.ts
|
|
6315
6438
|
|
|
6316
6439
|
|
|
6317
6440
|
|
|
6318
|
-
var
|
|
6441
|
+
var ForgetDeviceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6319
6442
|
return [
|
|
6320
6443
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6321
6444
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6322
6445
|
];
|
|
6323
6446
|
}).s("AWSCognitoIdentityProviderService", "ForgetDevice", {}).n("CognitoIdentityProviderClient", "ForgetDeviceCommand").f(ForgetDeviceRequestFilterSensitiveLog, void 0).ser(se_ForgetDeviceCommand).de(de_ForgetDeviceCommand).build() {
|
|
6447
|
+
static {
|
|
6448
|
+
__name(this, "ForgetDeviceCommand");
|
|
6449
|
+
}
|
|
6324
6450
|
};
|
|
6325
|
-
__name(_ForgetDeviceCommand, "ForgetDeviceCommand");
|
|
6326
|
-
var ForgetDeviceCommand = _ForgetDeviceCommand;
|
|
6327
6451
|
|
|
6328
6452
|
// src/commands/ForgotPasswordCommand.ts
|
|
6329
6453
|
|
|
6330
6454
|
|
|
6331
6455
|
|
|
6332
|
-
var
|
|
6456
|
+
var ForgotPasswordCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6333
6457
|
return [
|
|
6334
6458
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6335
6459
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6336
6460
|
];
|
|
6337
6461
|
}).s("AWSCognitoIdentityProviderService", "ForgotPassword", {}).n("CognitoIdentityProviderClient", "ForgotPasswordCommand").f(ForgotPasswordRequestFilterSensitiveLog, void 0).ser(se_ForgotPasswordCommand).de(de_ForgotPasswordCommand).build() {
|
|
6462
|
+
static {
|
|
6463
|
+
__name(this, "ForgotPasswordCommand");
|
|
6464
|
+
}
|
|
6338
6465
|
};
|
|
6339
|
-
__name(_ForgotPasswordCommand, "ForgotPasswordCommand");
|
|
6340
|
-
var ForgotPasswordCommand = _ForgotPasswordCommand;
|
|
6341
6466
|
|
|
6342
6467
|
// src/commands/GetCSVHeaderCommand.ts
|
|
6343
6468
|
|
|
6344
6469
|
|
|
6345
6470
|
|
|
6346
|
-
var
|
|
6471
|
+
var GetCSVHeaderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6347
6472
|
return [
|
|
6348
6473
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6349
6474
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6350
6475
|
];
|
|
6351
6476
|
}).s("AWSCognitoIdentityProviderService", "GetCSVHeader", {}).n("CognitoIdentityProviderClient", "GetCSVHeaderCommand").f(void 0, void 0).ser(se_GetCSVHeaderCommand).de(de_GetCSVHeaderCommand).build() {
|
|
6477
|
+
static {
|
|
6478
|
+
__name(this, "GetCSVHeaderCommand");
|
|
6479
|
+
}
|
|
6352
6480
|
};
|
|
6353
|
-
__name(_GetCSVHeaderCommand, "GetCSVHeaderCommand");
|
|
6354
|
-
var GetCSVHeaderCommand = _GetCSVHeaderCommand;
|
|
6355
6481
|
|
|
6356
6482
|
// src/commands/GetDeviceCommand.ts
|
|
6357
6483
|
|
|
6358
6484
|
|
|
6359
6485
|
|
|
6360
|
-
var
|
|
6486
|
+
var GetDeviceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6361
6487
|
return [
|
|
6362
6488
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6363
6489
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6364
6490
|
];
|
|
6365
6491
|
}).s("AWSCognitoIdentityProviderService", "GetDevice", {}).n("CognitoIdentityProviderClient", "GetDeviceCommand").f(GetDeviceRequestFilterSensitiveLog, GetDeviceResponseFilterSensitiveLog).ser(se_GetDeviceCommand).de(de_GetDeviceCommand).build() {
|
|
6492
|
+
static {
|
|
6493
|
+
__name(this, "GetDeviceCommand");
|
|
6494
|
+
}
|
|
6366
6495
|
};
|
|
6367
|
-
__name(_GetDeviceCommand, "GetDeviceCommand");
|
|
6368
|
-
var GetDeviceCommand = _GetDeviceCommand;
|
|
6369
6496
|
|
|
6370
6497
|
// src/commands/GetGroupCommand.ts
|
|
6371
6498
|
|
|
6372
6499
|
|
|
6373
6500
|
|
|
6374
|
-
var
|
|
6501
|
+
var GetGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6375
6502
|
return [
|
|
6376
6503
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6377
6504
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6378
6505
|
];
|
|
6379
6506
|
}).s("AWSCognitoIdentityProviderService", "GetGroup", {}).n("CognitoIdentityProviderClient", "GetGroupCommand").f(void 0, void 0).ser(se_GetGroupCommand).de(de_GetGroupCommand).build() {
|
|
6507
|
+
static {
|
|
6508
|
+
__name(this, "GetGroupCommand");
|
|
6509
|
+
}
|
|
6380
6510
|
};
|
|
6381
|
-
__name(_GetGroupCommand, "GetGroupCommand");
|
|
6382
|
-
var GetGroupCommand = _GetGroupCommand;
|
|
6383
6511
|
|
|
6384
6512
|
// src/commands/GetIdentityProviderByIdentifierCommand.ts
|
|
6385
6513
|
|
|
6386
6514
|
|
|
6387
6515
|
|
|
6388
|
-
var
|
|
6516
|
+
var GetIdentityProviderByIdentifierCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6389
6517
|
return [
|
|
6390
6518
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6391
6519
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6392
6520
|
];
|
|
6393
6521
|
}).s("AWSCognitoIdentityProviderService", "GetIdentityProviderByIdentifier", {}).n("CognitoIdentityProviderClient", "GetIdentityProviderByIdentifierCommand").f(void 0, void 0).ser(se_GetIdentityProviderByIdentifierCommand).de(de_GetIdentityProviderByIdentifierCommand).build() {
|
|
6522
|
+
static {
|
|
6523
|
+
__name(this, "GetIdentityProviderByIdentifierCommand");
|
|
6524
|
+
}
|
|
6394
6525
|
};
|
|
6395
|
-
__name(_GetIdentityProviderByIdentifierCommand, "GetIdentityProviderByIdentifierCommand");
|
|
6396
|
-
var GetIdentityProviderByIdentifierCommand = _GetIdentityProviderByIdentifierCommand;
|
|
6397
6526
|
|
|
6398
6527
|
// src/commands/GetLogDeliveryConfigurationCommand.ts
|
|
6399
6528
|
|
|
6400
6529
|
|
|
6401
6530
|
|
|
6402
|
-
var
|
|
6531
|
+
var GetLogDeliveryConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6403
6532
|
return [
|
|
6404
6533
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6405
6534
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6406
6535
|
];
|
|
6407
6536
|
}).s("AWSCognitoIdentityProviderService", "GetLogDeliveryConfiguration", {}).n("CognitoIdentityProviderClient", "GetLogDeliveryConfigurationCommand").f(void 0, void 0).ser(se_GetLogDeliveryConfigurationCommand).de(de_GetLogDeliveryConfigurationCommand).build() {
|
|
6537
|
+
static {
|
|
6538
|
+
__name(this, "GetLogDeliveryConfigurationCommand");
|
|
6539
|
+
}
|
|
6408
6540
|
};
|
|
6409
|
-
__name(_GetLogDeliveryConfigurationCommand, "GetLogDeliveryConfigurationCommand");
|
|
6410
|
-
var GetLogDeliveryConfigurationCommand = _GetLogDeliveryConfigurationCommand;
|
|
6411
6541
|
|
|
6412
6542
|
// src/commands/GetSigningCertificateCommand.ts
|
|
6413
6543
|
|
|
6414
6544
|
|
|
6415
6545
|
|
|
6416
|
-
var
|
|
6546
|
+
var GetSigningCertificateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6417
6547
|
return [
|
|
6418
6548
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6419
6549
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6420
6550
|
];
|
|
6421
6551
|
}).s("AWSCognitoIdentityProviderService", "GetSigningCertificate", {}).n("CognitoIdentityProviderClient", "GetSigningCertificateCommand").f(void 0, void 0).ser(se_GetSigningCertificateCommand).de(de_GetSigningCertificateCommand).build() {
|
|
6552
|
+
static {
|
|
6553
|
+
__name(this, "GetSigningCertificateCommand");
|
|
6554
|
+
}
|
|
6422
6555
|
};
|
|
6423
|
-
__name(_GetSigningCertificateCommand, "GetSigningCertificateCommand");
|
|
6424
|
-
var GetSigningCertificateCommand = _GetSigningCertificateCommand;
|
|
6425
6556
|
|
|
6426
6557
|
// src/commands/GetUICustomizationCommand.ts
|
|
6427
6558
|
|
|
6428
6559
|
|
|
6429
6560
|
|
|
6430
|
-
var
|
|
6561
|
+
var GetUICustomizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6431
6562
|
return [
|
|
6432
6563
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6433
6564
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6434
6565
|
];
|
|
6435
6566
|
}).s("AWSCognitoIdentityProviderService", "GetUICustomization", {}).n("CognitoIdentityProviderClient", "GetUICustomizationCommand").f(GetUICustomizationRequestFilterSensitiveLog, GetUICustomizationResponseFilterSensitiveLog).ser(se_GetUICustomizationCommand).de(de_GetUICustomizationCommand).build() {
|
|
6567
|
+
static {
|
|
6568
|
+
__name(this, "GetUICustomizationCommand");
|
|
6569
|
+
}
|
|
6436
6570
|
};
|
|
6437
|
-
__name(_GetUICustomizationCommand, "GetUICustomizationCommand");
|
|
6438
|
-
var GetUICustomizationCommand = _GetUICustomizationCommand;
|
|
6439
6571
|
|
|
6440
6572
|
// src/commands/GetUserAttributeVerificationCodeCommand.ts
|
|
6441
6573
|
|
|
6442
6574
|
|
|
6443
6575
|
|
|
6444
|
-
var
|
|
6576
|
+
var GetUserAttributeVerificationCodeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6445
6577
|
return [
|
|
6446
6578
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6447
6579
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6448
6580
|
];
|
|
6449
6581
|
}).s("AWSCognitoIdentityProviderService", "GetUserAttributeVerificationCode", {}).n("CognitoIdentityProviderClient", "GetUserAttributeVerificationCodeCommand").f(GetUserAttributeVerificationCodeRequestFilterSensitiveLog, void 0).ser(se_GetUserAttributeVerificationCodeCommand).de(de_GetUserAttributeVerificationCodeCommand).build() {
|
|
6582
|
+
static {
|
|
6583
|
+
__name(this, "GetUserAttributeVerificationCodeCommand");
|
|
6584
|
+
}
|
|
6450
6585
|
};
|
|
6451
|
-
__name(_GetUserAttributeVerificationCodeCommand, "GetUserAttributeVerificationCodeCommand");
|
|
6452
|
-
var GetUserAttributeVerificationCodeCommand = _GetUserAttributeVerificationCodeCommand;
|
|
6453
6586
|
|
|
6454
6587
|
// src/commands/GetUserAuthFactorsCommand.ts
|
|
6455
6588
|
|
|
6456
6589
|
|
|
6457
6590
|
|
|
6458
|
-
var
|
|
6591
|
+
var GetUserAuthFactorsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6459
6592
|
return [
|
|
6460
6593
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6461
6594
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6462
6595
|
];
|
|
6463
6596
|
}).s("AWSCognitoIdentityProviderService", "GetUserAuthFactors", {}).n("CognitoIdentityProviderClient", "GetUserAuthFactorsCommand").f(GetUserAuthFactorsRequestFilterSensitiveLog, GetUserAuthFactorsResponseFilterSensitiveLog).ser(se_GetUserAuthFactorsCommand).de(de_GetUserAuthFactorsCommand).build() {
|
|
6597
|
+
static {
|
|
6598
|
+
__name(this, "GetUserAuthFactorsCommand");
|
|
6599
|
+
}
|
|
6464
6600
|
};
|
|
6465
|
-
__name(_GetUserAuthFactorsCommand, "GetUserAuthFactorsCommand");
|
|
6466
|
-
var GetUserAuthFactorsCommand = _GetUserAuthFactorsCommand;
|
|
6467
6601
|
|
|
6468
6602
|
// src/commands/GetUserCommand.ts
|
|
6469
6603
|
|
|
6470
6604
|
|
|
6471
6605
|
|
|
6472
|
-
var
|
|
6606
|
+
var GetUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6473
6607
|
return [
|
|
6474
6608
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6475
6609
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6476
6610
|
];
|
|
6477
6611
|
}).s("AWSCognitoIdentityProviderService", "GetUser", {}).n("CognitoIdentityProviderClient", "GetUserCommand").f(GetUserRequestFilterSensitiveLog, GetUserResponseFilterSensitiveLog).ser(se_GetUserCommand).de(de_GetUserCommand).build() {
|
|
6612
|
+
static {
|
|
6613
|
+
__name(this, "GetUserCommand");
|
|
6614
|
+
}
|
|
6478
6615
|
};
|
|
6479
|
-
__name(_GetUserCommand, "GetUserCommand");
|
|
6480
|
-
var GetUserCommand = _GetUserCommand;
|
|
6481
6616
|
|
|
6482
6617
|
// src/commands/GetUserPoolMfaConfigCommand.ts
|
|
6483
6618
|
|
|
6484
6619
|
|
|
6485
6620
|
|
|
6486
|
-
var
|
|
6621
|
+
var GetUserPoolMfaConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6487
6622
|
return [
|
|
6488
6623
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6489
6624
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6490
6625
|
];
|
|
6491
6626
|
}).s("AWSCognitoIdentityProviderService", "GetUserPoolMfaConfig", {}).n("CognitoIdentityProviderClient", "GetUserPoolMfaConfigCommand").f(void 0, void 0).ser(se_GetUserPoolMfaConfigCommand).de(de_GetUserPoolMfaConfigCommand).build() {
|
|
6627
|
+
static {
|
|
6628
|
+
__name(this, "GetUserPoolMfaConfigCommand");
|
|
6629
|
+
}
|
|
6492
6630
|
};
|
|
6493
|
-
__name(_GetUserPoolMfaConfigCommand, "GetUserPoolMfaConfigCommand");
|
|
6494
|
-
var GetUserPoolMfaConfigCommand = _GetUserPoolMfaConfigCommand;
|
|
6495
6631
|
|
|
6496
6632
|
// src/commands/GlobalSignOutCommand.ts
|
|
6497
6633
|
|
|
6498
6634
|
|
|
6499
6635
|
|
|
6500
|
-
var
|
|
6636
|
+
var GlobalSignOutCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6501
6637
|
return [
|
|
6502
6638
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6503
6639
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6504
6640
|
];
|
|
6505
6641
|
}).s("AWSCognitoIdentityProviderService", "GlobalSignOut", {}).n("CognitoIdentityProviderClient", "GlobalSignOutCommand").f(GlobalSignOutRequestFilterSensitiveLog, void 0).ser(se_GlobalSignOutCommand).de(de_GlobalSignOutCommand).build() {
|
|
6642
|
+
static {
|
|
6643
|
+
__name(this, "GlobalSignOutCommand");
|
|
6644
|
+
}
|
|
6506
6645
|
};
|
|
6507
|
-
__name(_GlobalSignOutCommand, "GlobalSignOutCommand");
|
|
6508
|
-
var GlobalSignOutCommand = _GlobalSignOutCommand;
|
|
6509
6646
|
|
|
6510
6647
|
// src/commands/InitiateAuthCommand.ts
|
|
6511
6648
|
|
|
6512
6649
|
|
|
6513
6650
|
|
|
6514
|
-
var
|
|
6651
|
+
var InitiateAuthCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6515
6652
|
return [
|
|
6516
6653
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6517
6654
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6518
6655
|
];
|
|
6519
6656
|
}).s("AWSCognitoIdentityProviderService", "InitiateAuth", {}).n("CognitoIdentityProviderClient", "InitiateAuthCommand").f(InitiateAuthRequestFilterSensitiveLog, InitiateAuthResponseFilterSensitiveLog).ser(se_InitiateAuthCommand).de(de_InitiateAuthCommand).build() {
|
|
6657
|
+
static {
|
|
6658
|
+
__name(this, "InitiateAuthCommand");
|
|
6659
|
+
}
|
|
6520
6660
|
};
|
|
6521
|
-
__name(_InitiateAuthCommand, "InitiateAuthCommand");
|
|
6522
|
-
var InitiateAuthCommand = _InitiateAuthCommand;
|
|
6523
6661
|
|
|
6524
6662
|
// src/commands/ListDevicesCommand.ts
|
|
6525
6663
|
|
|
6526
6664
|
|
|
6527
6665
|
|
|
6528
|
-
var
|
|
6666
|
+
var ListDevicesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6529
6667
|
return [
|
|
6530
6668
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6531
6669
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6532
6670
|
];
|
|
6533
6671
|
}).s("AWSCognitoIdentityProviderService", "ListDevices", {}).n("CognitoIdentityProviderClient", "ListDevicesCommand").f(ListDevicesRequestFilterSensitiveLog, ListDevicesResponseFilterSensitiveLog).ser(se_ListDevicesCommand).de(de_ListDevicesCommand).build() {
|
|
6672
|
+
static {
|
|
6673
|
+
__name(this, "ListDevicesCommand");
|
|
6674
|
+
}
|
|
6534
6675
|
};
|
|
6535
|
-
__name(_ListDevicesCommand, "ListDevicesCommand");
|
|
6536
|
-
var ListDevicesCommand = _ListDevicesCommand;
|
|
6537
6676
|
|
|
6538
6677
|
// src/commands/ListGroupsCommand.ts
|
|
6539
6678
|
|
|
6540
6679
|
|
|
6541
6680
|
|
|
6542
|
-
var
|
|
6681
|
+
var ListGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6543
6682
|
return [
|
|
6544
6683
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6545
6684
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6546
6685
|
];
|
|
6547
6686
|
}).s("AWSCognitoIdentityProviderService", "ListGroups", {}).n("CognitoIdentityProviderClient", "ListGroupsCommand").f(void 0, void 0).ser(se_ListGroupsCommand).de(de_ListGroupsCommand).build() {
|
|
6687
|
+
static {
|
|
6688
|
+
__name(this, "ListGroupsCommand");
|
|
6689
|
+
}
|
|
6548
6690
|
};
|
|
6549
|
-
__name(_ListGroupsCommand, "ListGroupsCommand");
|
|
6550
|
-
var ListGroupsCommand = _ListGroupsCommand;
|
|
6551
6691
|
|
|
6552
6692
|
// src/commands/ListIdentityProvidersCommand.ts
|
|
6553
6693
|
|
|
6554
6694
|
|
|
6555
6695
|
|
|
6556
|
-
var
|
|
6696
|
+
var ListIdentityProvidersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6557
6697
|
return [
|
|
6558
6698
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6559
6699
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6560
6700
|
];
|
|
6561
6701
|
}).s("AWSCognitoIdentityProviderService", "ListIdentityProviders", {}).n("CognitoIdentityProviderClient", "ListIdentityProvidersCommand").f(void 0, void 0).ser(se_ListIdentityProvidersCommand).de(de_ListIdentityProvidersCommand).build() {
|
|
6702
|
+
static {
|
|
6703
|
+
__name(this, "ListIdentityProvidersCommand");
|
|
6704
|
+
}
|
|
6562
6705
|
};
|
|
6563
|
-
__name(_ListIdentityProvidersCommand, "ListIdentityProvidersCommand");
|
|
6564
|
-
var ListIdentityProvidersCommand = _ListIdentityProvidersCommand;
|
|
6565
6706
|
|
|
6566
6707
|
// src/commands/ListResourceServersCommand.ts
|
|
6567
6708
|
|
|
6568
6709
|
|
|
6569
6710
|
|
|
6570
|
-
var
|
|
6711
|
+
var ListResourceServersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6571
6712
|
return [
|
|
6572
6713
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6573
6714
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6574
6715
|
];
|
|
6575
6716
|
}).s("AWSCognitoIdentityProviderService", "ListResourceServers", {}).n("CognitoIdentityProviderClient", "ListResourceServersCommand").f(void 0, void 0).ser(se_ListResourceServersCommand).de(de_ListResourceServersCommand).build() {
|
|
6717
|
+
static {
|
|
6718
|
+
__name(this, "ListResourceServersCommand");
|
|
6719
|
+
}
|
|
6576
6720
|
};
|
|
6577
|
-
__name(_ListResourceServersCommand, "ListResourceServersCommand");
|
|
6578
|
-
var ListResourceServersCommand = _ListResourceServersCommand;
|
|
6579
6721
|
|
|
6580
6722
|
// src/commands/ListTagsForResourceCommand.ts
|
|
6581
6723
|
|
|
6582
6724
|
|
|
6583
6725
|
|
|
6584
|
-
var
|
|
6726
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6585
6727
|
return [
|
|
6586
6728
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6587
6729
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6588
6730
|
];
|
|
6589
6731
|
}).s("AWSCognitoIdentityProviderService", "ListTagsForResource", {}).n("CognitoIdentityProviderClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
6732
|
+
static {
|
|
6733
|
+
__name(this, "ListTagsForResourceCommand");
|
|
6734
|
+
}
|
|
6590
6735
|
};
|
|
6591
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
6592
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
6593
6736
|
|
|
6594
6737
|
// src/commands/ListUserImportJobsCommand.ts
|
|
6595
6738
|
|
|
6596
6739
|
|
|
6597
6740
|
|
|
6598
|
-
var
|
|
6741
|
+
var ListUserImportJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6599
6742
|
return [
|
|
6600
6743
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6601
6744
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6602
6745
|
];
|
|
6603
6746
|
}).s("AWSCognitoIdentityProviderService", "ListUserImportJobs", {}).n("CognitoIdentityProviderClient", "ListUserImportJobsCommand").f(void 0, void 0).ser(se_ListUserImportJobsCommand).de(de_ListUserImportJobsCommand).build() {
|
|
6747
|
+
static {
|
|
6748
|
+
__name(this, "ListUserImportJobsCommand");
|
|
6749
|
+
}
|
|
6604
6750
|
};
|
|
6605
|
-
__name(_ListUserImportJobsCommand, "ListUserImportJobsCommand");
|
|
6606
|
-
var ListUserImportJobsCommand = _ListUserImportJobsCommand;
|
|
6607
6751
|
|
|
6608
6752
|
// src/commands/ListUserPoolClientsCommand.ts
|
|
6609
6753
|
|
|
6610
6754
|
|
|
6611
6755
|
|
|
6612
|
-
var
|
|
6756
|
+
var ListUserPoolClientsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6613
6757
|
return [
|
|
6614
6758
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6615
6759
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6616
6760
|
];
|
|
6617
6761
|
}).s("AWSCognitoIdentityProviderService", "ListUserPoolClients", {}).n("CognitoIdentityProviderClient", "ListUserPoolClientsCommand").f(void 0, ListUserPoolClientsResponseFilterSensitiveLog).ser(se_ListUserPoolClientsCommand).de(de_ListUserPoolClientsCommand).build() {
|
|
6762
|
+
static {
|
|
6763
|
+
__name(this, "ListUserPoolClientsCommand");
|
|
6764
|
+
}
|
|
6618
6765
|
};
|
|
6619
|
-
__name(_ListUserPoolClientsCommand, "ListUserPoolClientsCommand");
|
|
6620
|
-
var ListUserPoolClientsCommand = _ListUserPoolClientsCommand;
|
|
6621
6766
|
|
|
6622
6767
|
// src/commands/ListUserPoolsCommand.ts
|
|
6623
6768
|
|
|
6624
6769
|
|
|
6625
6770
|
|
|
6626
|
-
var
|
|
6771
|
+
var ListUserPoolsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6627
6772
|
return [
|
|
6628
6773
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6629
6774
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6630
6775
|
];
|
|
6631
6776
|
}).s("AWSCognitoIdentityProviderService", "ListUserPools", {}).n("CognitoIdentityProviderClient", "ListUserPoolsCommand").f(void 0, void 0).ser(se_ListUserPoolsCommand).de(de_ListUserPoolsCommand).build() {
|
|
6777
|
+
static {
|
|
6778
|
+
__name(this, "ListUserPoolsCommand");
|
|
6779
|
+
}
|
|
6632
6780
|
};
|
|
6633
|
-
__name(_ListUserPoolsCommand, "ListUserPoolsCommand");
|
|
6634
|
-
var ListUserPoolsCommand = _ListUserPoolsCommand;
|
|
6635
6781
|
|
|
6636
6782
|
// src/commands/ListUsersCommand.ts
|
|
6637
6783
|
|
|
6638
6784
|
|
|
6639
6785
|
|
|
6640
|
-
var
|
|
6786
|
+
var ListUsersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6641
6787
|
return [
|
|
6642
6788
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6643
6789
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6644
6790
|
];
|
|
6645
6791
|
}).s("AWSCognitoIdentityProviderService", "ListUsers", {}).n("CognitoIdentityProviderClient", "ListUsersCommand").f(void 0, ListUsersResponseFilterSensitiveLog).ser(se_ListUsersCommand).de(de_ListUsersCommand).build() {
|
|
6792
|
+
static {
|
|
6793
|
+
__name(this, "ListUsersCommand");
|
|
6794
|
+
}
|
|
6646
6795
|
};
|
|
6647
|
-
__name(_ListUsersCommand, "ListUsersCommand");
|
|
6648
|
-
var ListUsersCommand = _ListUsersCommand;
|
|
6649
6796
|
|
|
6650
6797
|
// src/commands/ListUsersInGroupCommand.ts
|
|
6651
6798
|
|
|
6652
6799
|
|
|
6653
6800
|
|
|
6654
|
-
var
|
|
6801
|
+
var ListUsersInGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6655
6802
|
return [
|
|
6656
6803
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6657
6804
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6658
6805
|
];
|
|
6659
6806
|
}).s("AWSCognitoIdentityProviderService", "ListUsersInGroup", {}).n("CognitoIdentityProviderClient", "ListUsersInGroupCommand").f(void 0, ListUsersInGroupResponseFilterSensitiveLog).ser(se_ListUsersInGroupCommand).de(de_ListUsersInGroupCommand).build() {
|
|
6807
|
+
static {
|
|
6808
|
+
__name(this, "ListUsersInGroupCommand");
|
|
6809
|
+
}
|
|
6660
6810
|
};
|
|
6661
|
-
__name(_ListUsersInGroupCommand, "ListUsersInGroupCommand");
|
|
6662
|
-
var ListUsersInGroupCommand = _ListUsersInGroupCommand;
|
|
6663
6811
|
|
|
6664
6812
|
// src/commands/ListWebAuthnCredentialsCommand.ts
|
|
6665
6813
|
|
|
6666
6814
|
|
|
6667
6815
|
|
|
6668
|
-
var
|
|
6816
|
+
var ListWebAuthnCredentialsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6669
6817
|
return [
|
|
6670
6818
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6671
6819
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6672
6820
|
];
|
|
6673
6821
|
}).s("AWSCognitoIdentityProviderService", "ListWebAuthnCredentials", {}).n("CognitoIdentityProviderClient", "ListWebAuthnCredentialsCommand").f(ListWebAuthnCredentialsRequestFilterSensitiveLog, void 0).ser(se_ListWebAuthnCredentialsCommand).de(de_ListWebAuthnCredentialsCommand).build() {
|
|
6822
|
+
static {
|
|
6823
|
+
__name(this, "ListWebAuthnCredentialsCommand");
|
|
6824
|
+
}
|
|
6674
6825
|
};
|
|
6675
|
-
__name(_ListWebAuthnCredentialsCommand, "ListWebAuthnCredentialsCommand");
|
|
6676
|
-
var ListWebAuthnCredentialsCommand = _ListWebAuthnCredentialsCommand;
|
|
6677
6826
|
|
|
6678
6827
|
// src/commands/ResendConfirmationCodeCommand.ts
|
|
6679
6828
|
|
|
6680
6829
|
|
|
6681
6830
|
|
|
6682
|
-
var
|
|
6831
|
+
var ResendConfirmationCodeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6683
6832
|
return [
|
|
6684
6833
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6685
6834
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6686
6835
|
];
|
|
6687
6836
|
}).s("AWSCognitoIdentityProviderService", "ResendConfirmationCode", {}).n("CognitoIdentityProviderClient", "ResendConfirmationCodeCommand").f(ResendConfirmationCodeRequestFilterSensitiveLog, void 0).ser(se_ResendConfirmationCodeCommand).de(de_ResendConfirmationCodeCommand).build() {
|
|
6837
|
+
static {
|
|
6838
|
+
__name(this, "ResendConfirmationCodeCommand");
|
|
6839
|
+
}
|
|
6688
6840
|
};
|
|
6689
|
-
__name(_ResendConfirmationCodeCommand, "ResendConfirmationCodeCommand");
|
|
6690
|
-
var ResendConfirmationCodeCommand = _ResendConfirmationCodeCommand;
|
|
6691
6841
|
|
|
6692
6842
|
// src/commands/RespondToAuthChallengeCommand.ts
|
|
6693
6843
|
|
|
6694
6844
|
|
|
6695
6845
|
|
|
6696
|
-
var
|
|
6846
|
+
var RespondToAuthChallengeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6697
6847
|
return [
|
|
6698
6848
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6699
6849
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6700
6850
|
];
|
|
6701
6851
|
}).s("AWSCognitoIdentityProviderService", "RespondToAuthChallenge", {}).n("CognitoIdentityProviderClient", "RespondToAuthChallengeCommand").f(RespondToAuthChallengeRequestFilterSensitiveLog, RespondToAuthChallengeResponseFilterSensitiveLog).ser(se_RespondToAuthChallengeCommand).de(de_RespondToAuthChallengeCommand).build() {
|
|
6852
|
+
static {
|
|
6853
|
+
__name(this, "RespondToAuthChallengeCommand");
|
|
6854
|
+
}
|
|
6702
6855
|
};
|
|
6703
|
-
__name(_RespondToAuthChallengeCommand, "RespondToAuthChallengeCommand");
|
|
6704
|
-
var RespondToAuthChallengeCommand = _RespondToAuthChallengeCommand;
|
|
6705
6856
|
|
|
6706
6857
|
// src/commands/RevokeTokenCommand.ts
|
|
6707
6858
|
|
|
6708
6859
|
|
|
6709
6860
|
|
|
6710
|
-
var
|
|
6861
|
+
var RevokeTokenCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6711
6862
|
return [
|
|
6712
6863
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6713
6864
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6714
6865
|
];
|
|
6715
6866
|
}).s("AWSCognitoIdentityProviderService", "RevokeToken", {}).n("CognitoIdentityProviderClient", "RevokeTokenCommand").f(RevokeTokenRequestFilterSensitiveLog, void 0).ser(se_RevokeTokenCommand).de(de_RevokeTokenCommand).build() {
|
|
6867
|
+
static {
|
|
6868
|
+
__name(this, "RevokeTokenCommand");
|
|
6869
|
+
}
|
|
6716
6870
|
};
|
|
6717
|
-
__name(_RevokeTokenCommand, "RevokeTokenCommand");
|
|
6718
|
-
var RevokeTokenCommand = _RevokeTokenCommand;
|
|
6719
6871
|
|
|
6720
6872
|
// src/commands/SetLogDeliveryConfigurationCommand.ts
|
|
6721
6873
|
|
|
6722
6874
|
|
|
6723
6875
|
|
|
6724
|
-
var
|
|
6876
|
+
var SetLogDeliveryConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6725
6877
|
return [
|
|
6726
6878
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6727
6879
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6728
6880
|
];
|
|
6729
6881
|
}).s("AWSCognitoIdentityProviderService", "SetLogDeliveryConfiguration", {}).n("CognitoIdentityProviderClient", "SetLogDeliveryConfigurationCommand").f(void 0, void 0).ser(se_SetLogDeliveryConfigurationCommand).de(de_SetLogDeliveryConfigurationCommand).build() {
|
|
6882
|
+
static {
|
|
6883
|
+
__name(this, "SetLogDeliveryConfigurationCommand");
|
|
6884
|
+
}
|
|
6730
6885
|
};
|
|
6731
|
-
__name(_SetLogDeliveryConfigurationCommand, "SetLogDeliveryConfigurationCommand");
|
|
6732
|
-
var SetLogDeliveryConfigurationCommand = _SetLogDeliveryConfigurationCommand;
|
|
6733
6886
|
|
|
6734
6887
|
// src/commands/SetRiskConfigurationCommand.ts
|
|
6735
6888
|
|
|
6736
6889
|
|
|
6737
6890
|
|
|
6738
|
-
var
|
|
6891
|
+
var SetRiskConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6739
6892
|
return [
|
|
6740
6893
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6741
6894
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6742
6895
|
];
|
|
6743
6896
|
}).s("AWSCognitoIdentityProviderService", "SetRiskConfiguration", {}).n("CognitoIdentityProviderClient", "SetRiskConfigurationCommand").f(SetRiskConfigurationRequestFilterSensitiveLog, SetRiskConfigurationResponseFilterSensitiveLog).ser(se_SetRiskConfigurationCommand).de(de_SetRiskConfigurationCommand).build() {
|
|
6897
|
+
static {
|
|
6898
|
+
__name(this, "SetRiskConfigurationCommand");
|
|
6899
|
+
}
|
|
6744
6900
|
};
|
|
6745
|
-
__name(_SetRiskConfigurationCommand, "SetRiskConfigurationCommand");
|
|
6746
|
-
var SetRiskConfigurationCommand = _SetRiskConfigurationCommand;
|
|
6747
6901
|
|
|
6748
6902
|
// src/commands/SetUICustomizationCommand.ts
|
|
6749
6903
|
|
|
6750
6904
|
|
|
6751
6905
|
|
|
6752
|
-
var
|
|
6906
|
+
var SetUICustomizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6753
6907
|
return [
|
|
6754
6908
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6755
6909
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6756
6910
|
];
|
|
6757
6911
|
}).s("AWSCognitoIdentityProviderService", "SetUICustomization", {}).n("CognitoIdentityProviderClient", "SetUICustomizationCommand").f(SetUICustomizationRequestFilterSensitiveLog, SetUICustomizationResponseFilterSensitiveLog).ser(se_SetUICustomizationCommand).de(de_SetUICustomizationCommand).build() {
|
|
6912
|
+
static {
|
|
6913
|
+
__name(this, "SetUICustomizationCommand");
|
|
6914
|
+
}
|
|
6758
6915
|
};
|
|
6759
|
-
__name(_SetUICustomizationCommand, "SetUICustomizationCommand");
|
|
6760
|
-
var SetUICustomizationCommand = _SetUICustomizationCommand;
|
|
6761
6916
|
|
|
6762
6917
|
// src/commands/SetUserMFAPreferenceCommand.ts
|
|
6763
6918
|
|
|
6764
6919
|
|
|
6765
6920
|
|
|
6766
|
-
var
|
|
6921
|
+
var SetUserMFAPreferenceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6767
6922
|
return [
|
|
6768
6923
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6769
6924
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6770
6925
|
];
|
|
6771
6926
|
}).s("AWSCognitoIdentityProviderService", "SetUserMFAPreference", {}).n("CognitoIdentityProviderClient", "SetUserMFAPreferenceCommand").f(SetUserMFAPreferenceRequestFilterSensitiveLog, void 0).ser(se_SetUserMFAPreferenceCommand).de(de_SetUserMFAPreferenceCommand).build() {
|
|
6927
|
+
static {
|
|
6928
|
+
__name(this, "SetUserMFAPreferenceCommand");
|
|
6929
|
+
}
|
|
6772
6930
|
};
|
|
6773
|
-
__name(_SetUserMFAPreferenceCommand, "SetUserMFAPreferenceCommand");
|
|
6774
|
-
var SetUserMFAPreferenceCommand = _SetUserMFAPreferenceCommand;
|
|
6775
6931
|
|
|
6776
6932
|
// src/commands/SetUserPoolMfaConfigCommand.ts
|
|
6777
6933
|
|
|
6778
6934
|
|
|
6779
6935
|
|
|
6780
|
-
var
|
|
6936
|
+
var SetUserPoolMfaConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6781
6937
|
return [
|
|
6782
6938
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6783
6939
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6784
6940
|
];
|
|
6785
6941
|
}).s("AWSCognitoIdentityProviderService", "SetUserPoolMfaConfig", {}).n("CognitoIdentityProviderClient", "SetUserPoolMfaConfigCommand").f(void 0, void 0).ser(se_SetUserPoolMfaConfigCommand).de(de_SetUserPoolMfaConfigCommand).build() {
|
|
6942
|
+
static {
|
|
6943
|
+
__name(this, "SetUserPoolMfaConfigCommand");
|
|
6944
|
+
}
|
|
6786
6945
|
};
|
|
6787
|
-
__name(_SetUserPoolMfaConfigCommand, "SetUserPoolMfaConfigCommand");
|
|
6788
|
-
var SetUserPoolMfaConfigCommand = _SetUserPoolMfaConfigCommand;
|
|
6789
6946
|
|
|
6790
6947
|
// src/commands/SetUserSettingsCommand.ts
|
|
6791
6948
|
|
|
6792
6949
|
|
|
6793
6950
|
|
|
6794
|
-
var
|
|
6951
|
+
var SetUserSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6795
6952
|
return [
|
|
6796
6953
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6797
6954
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6798
6955
|
];
|
|
6799
6956
|
}).s("AWSCognitoIdentityProviderService", "SetUserSettings", {}).n("CognitoIdentityProviderClient", "SetUserSettingsCommand").f(SetUserSettingsRequestFilterSensitiveLog, void 0).ser(se_SetUserSettingsCommand).de(de_SetUserSettingsCommand).build() {
|
|
6957
|
+
static {
|
|
6958
|
+
__name(this, "SetUserSettingsCommand");
|
|
6959
|
+
}
|
|
6800
6960
|
};
|
|
6801
|
-
__name(_SetUserSettingsCommand, "SetUserSettingsCommand");
|
|
6802
|
-
var SetUserSettingsCommand = _SetUserSettingsCommand;
|
|
6803
6961
|
|
|
6804
6962
|
// src/commands/SignUpCommand.ts
|
|
6805
6963
|
|
|
6806
6964
|
|
|
6807
6965
|
|
|
6808
|
-
var
|
|
6966
|
+
var SignUpCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6809
6967
|
return [
|
|
6810
6968
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6811
6969
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6812
6970
|
];
|
|
6813
6971
|
}).s("AWSCognitoIdentityProviderService", "SignUp", {}).n("CognitoIdentityProviderClient", "SignUpCommand").f(SignUpRequestFilterSensitiveLog, SignUpResponseFilterSensitiveLog).ser(se_SignUpCommand).de(de_SignUpCommand).build() {
|
|
6972
|
+
static {
|
|
6973
|
+
__name(this, "SignUpCommand");
|
|
6974
|
+
}
|
|
6814
6975
|
};
|
|
6815
|
-
__name(_SignUpCommand, "SignUpCommand");
|
|
6816
|
-
var SignUpCommand = _SignUpCommand;
|
|
6817
6976
|
|
|
6818
6977
|
// src/commands/StartUserImportJobCommand.ts
|
|
6819
6978
|
|
|
6820
6979
|
|
|
6821
6980
|
|
|
6822
|
-
var
|
|
6981
|
+
var StartUserImportJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6823
6982
|
return [
|
|
6824
6983
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6825
6984
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6826
6985
|
];
|
|
6827
6986
|
}).s("AWSCognitoIdentityProviderService", "StartUserImportJob", {}).n("CognitoIdentityProviderClient", "StartUserImportJobCommand").f(void 0, void 0).ser(se_StartUserImportJobCommand).de(de_StartUserImportJobCommand).build() {
|
|
6987
|
+
static {
|
|
6988
|
+
__name(this, "StartUserImportJobCommand");
|
|
6989
|
+
}
|
|
6828
6990
|
};
|
|
6829
|
-
__name(_StartUserImportJobCommand, "StartUserImportJobCommand");
|
|
6830
|
-
var StartUserImportJobCommand = _StartUserImportJobCommand;
|
|
6831
6991
|
|
|
6832
6992
|
// src/commands/StartWebAuthnRegistrationCommand.ts
|
|
6833
6993
|
|
|
6834
6994
|
|
|
6835
6995
|
|
|
6836
|
-
var
|
|
6996
|
+
var StartWebAuthnRegistrationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6837
6997
|
return [
|
|
6838
6998
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6839
6999
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6840
7000
|
];
|
|
6841
7001
|
}).s("AWSCognitoIdentityProviderService", "StartWebAuthnRegistration", {}).n("CognitoIdentityProviderClient", "StartWebAuthnRegistrationCommand").f(StartWebAuthnRegistrationRequestFilterSensitiveLog, void 0).ser(se_StartWebAuthnRegistrationCommand).de(de_StartWebAuthnRegistrationCommand).build() {
|
|
7002
|
+
static {
|
|
7003
|
+
__name(this, "StartWebAuthnRegistrationCommand");
|
|
7004
|
+
}
|
|
6842
7005
|
};
|
|
6843
|
-
__name(_StartWebAuthnRegistrationCommand, "StartWebAuthnRegistrationCommand");
|
|
6844
|
-
var StartWebAuthnRegistrationCommand = _StartWebAuthnRegistrationCommand;
|
|
6845
7006
|
|
|
6846
7007
|
// src/commands/StopUserImportJobCommand.ts
|
|
6847
7008
|
|
|
6848
7009
|
|
|
6849
7010
|
|
|
6850
|
-
var
|
|
7011
|
+
var StopUserImportJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6851
7012
|
return [
|
|
6852
7013
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6853
7014
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6854
7015
|
];
|
|
6855
7016
|
}).s("AWSCognitoIdentityProviderService", "StopUserImportJob", {}).n("CognitoIdentityProviderClient", "StopUserImportJobCommand").f(void 0, void 0).ser(se_StopUserImportJobCommand).de(de_StopUserImportJobCommand).build() {
|
|
7017
|
+
static {
|
|
7018
|
+
__name(this, "StopUserImportJobCommand");
|
|
7019
|
+
}
|
|
6856
7020
|
};
|
|
6857
|
-
__name(_StopUserImportJobCommand, "StopUserImportJobCommand");
|
|
6858
|
-
var StopUserImportJobCommand = _StopUserImportJobCommand;
|
|
6859
7021
|
|
|
6860
7022
|
// src/commands/TagResourceCommand.ts
|
|
6861
7023
|
|
|
6862
7024
|
|
|
6863
7025
|
|
|
6864
|
-
var
|
|
7026
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6865
7027
|
return [
|
|
6866
7028
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6867
7029
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6868
7030
|
];
|
|
6869
7031
|
}).s("AWSCognitoIdentityProviderService", "TagResource", {}).n("CognitoIdentityProviderClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
7032
|
+
static {
|
|
7033
|
+
__name(this, "TagResourceCommand");
|
|
7034
|
+
}
|
|
6870
7035
|
};
|
|
6871
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
6872
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
6873
7036
|
|
|
6874
7037
|
// src/commands/UntagResourceCommand.ts
|
|
6875
7038
|
|
|
6876
7039
|
|
|
6877
7040
|
|
|
6878
|
-
var
|
|
7041
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6879
7042
|
return [
|
|
6880
7043
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6881
7044
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6882
7045
|
];
|
|
6883
7046
|
}).s("AWSCognitoIdentityProviderService", "UntagResource", {}).n("CognitoIdentityProviderClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
7047
|
+
static {
|
|
7048
|
+
__name(this, "UntagResourceCommand");
|
|
7049
|
+
}
|
|
6884
7050
|
};
|
|
6885
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
6886
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
6887
7051
|
|
|
6888
7052
|
// src/commands/UpdateAuthEventFeedbackCommand.ts
|
|
6889
7053
|
|
|
6890
7054
|
|
|
6891
7055
|
|
|
6892
|
-
var
|
|
7056
|
+
var UpdateAuthEventFeedbackCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6893
7057
|
return [
|
|
6894
7058
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6895
7059
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6896
7060
|
];
|
|
6897
7061
|
}).s("AWSCognitoIdentityProviderService", "UpdateAuthEventFeedback", {}).n("CognitoIdentityProviderClient", "UpdateAuthEventFeedbackCommand").f(UpdateAuthEventFeedbackRequestFilterSensitiveLog, void 0).ser(se_UpdateAuthEventFeedbackCommand).de(de_UpdateAuthEventFeedbackCommand).build() {
|
|
7062
|
+
static {
|
|
7063
|
+
__name(this, "UpdateAuthEventFeedbackCommand");
|
|
7064
|
+
}
|
|
6898
7065
|
};
|
|
6899
|
-
__name(_UpdateAuthEventFeedbackCommand, "UpdateAuthEventFeedbackCommand");
|
|
6900
|
-
var UpdateAuthEventFeedbackCommand = _UpdateAuthEventFeedbackCommand;
|
|
6901
7066
|
|
|
6902
7067
|
// src/commands/UpdateDeviceStatusCommand.ts
|
|
6903
7068
|
|
|
6904
7069
|
|
|
6905
7070
|
|
|
6906
|
-
var
|
|
7071
|
+
var UpdateDeviceStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6907
7072
|
return [
|
|
6908
7073
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6909
7074
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6910
7075
|
];
|
|
6911
7076
|
}).s("AWSCognitoIdentityProviderService", "UpdateDeviceStatus", {}).n("CognitoIdentityProviderClient", "UpdateDeviceStatusCommand").f(UpdateDeviceStatusRequestFilterSensitiveLog, void 0).ser(se_UpdateDeviceStatusCommand).de(de_UpdateDeviceStatusCommand).build() {
|
|
7077
|
+
static {
|
|
7078
|
+
__name(this, "UpdateDeviceStatusCommand");
|
|
7079
|
+
}
|
|
6912
7080
|
};
|
|
6913
|
-
__name(_UpdateDeviceStatusCommand, "UpdateDeviceStatusCommand");
|
|
6914
|
-
var UpdateDeviceStatusCommand = _UpdateDeviceStatusCommand;
|
|
6915
7081
|
|
|
6916
7082
|
// src/commands/UpdateGroupCommand.ts
|
|
6917
7083
|
|
|
6918
7084
|
|
|
6919
7085
|
|
|
6920
|
-
var
|
|
7086
|
+
var UpdateGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6921
7087
|
return [
|
|
6922
7088
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6923
7089
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6924
7090
|
];
|
|
6925
7091
|
}).s("AWSCognitoIdentityProviderService", "UpdateGroup", {}).n("CognitoIdentityProviderClient", "UpdateGroupCommand").f(void 0, void 0).ser(se_UpdateGroupCommand).de(de_UpdateGroupCommand).build() {
|
|
7092
|
+
static {
|
|
7093
|
+
__name(this, "UpdateGroupCommand");
|
|
7094
|
+
}
|
|
6926
7095
|
};
|
|
6927
|
-
__name(_UpdateGroupCommand, "UpdateGroupCommand");
|
|
6928
|
-
var UpdateGroupCommand = _UpdateGroupCommand;
|
|
6929
7096
|
|
|
6930
7097
|
// src/commands/UpdateIdentityProviderCommand.ts
|
|
6931
7098
|
|
|
6932
7099
|
|
|
6933
7100
|
|
|
6934
|
-
var
|
|
7101
|
+
var UpdateIdentityProviderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6935
7102
|
return [
|
|
6936
7103
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6937
7104
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6938
7105
|
];
|
|
6939
7106
|
}).s("AWSCognitoIdentityProviderService", "UpdateIdentityProvider", {}).n("CognitoIdentityProviderClient", "UpdateIdentityProviderCommand").f(void 0, void 0).ser(se_UpdateIdentityProviderCommand).de(de_UpdateIdentityProviderCommand).build() {
|
|
7107
|
+
static {
|
|
7108
|
+
__name(this, "UpdateIdentityProviderCommand");
|
|
7109
|
+
}
|
|
6940
7110
|
};
|
|
6941
|
-
__name(_UpdateIdentityProviderCommand, "UpdateIdentityProviderCommand");
|
|
6942
|
-
var UpdateIdentityProviderCommand = _UpdateIdentityProviderCommand;
|
|
6943
7111
|
|
|
6944
7112
|
// src/commands/UpdateManagedLoginBrandingCommand.ts
|
|
6945
7113
|
|
|
6946
7114
|
|
|
6947
7115
|
|
|
6948
|
-
var
|
|
7116
|
+
var UpdateManagedLoginBrandingCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6949
7117
|
return [
|
|
6950
7118
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6951
7119
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6952
7120
|
];
|
|
6953
7121
|
}).s("AWSCognitoIdentityProviderService", "UpdateManagedLoginBranding", {}).n("CognitoIdentityProviderClient", "UpdateManagedLoginBrandingCommand").f(void 0, void 0).ser(se_UpdateManagedLoginBrandingCommand).de(de_UpdateManagedLoginBrandingCommand).build() {
|
|
7122
|
+
static {
|
|
7123
|
+
__name(this, "UpdateManagedLoginBrandingCommand");
|
|
7124
|
+
}
|
|
6954
7125
|
};
|
|
6955
|
-
__name(_UpdateManagedLoginBrandingCommand, "UpdateManagedLoginBrandingCommand");
|
|
6956
|
-
var UpdateManagedLoginBrandingCommand = _UpdateManagedLoginBrandingCommand;
|
|
6957
7126
|
|
|
6958
7127
|
// src/commands/UpdateResourceServerCommand.ts
|
|
6959
7128
|
|
|
6960
7129
|
|
|
6961
7130
|
|
|
6962
|
-
var
|
|
7131
|
+
var UpdateResourceServerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6963
7132
|
return [
|
|
6964
7133
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6965
7134
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6966
7135
|
];
|
|
6967
7136
|
}).s("AWSCognitoIdentityProviderService", "UpdateResourceServer", {}).n("CognitoIdentityProviderClient", "UpdateResourceServerCommand").f(void 0, void 0).ser(se_UpdateResourceServerCommand).de(de_UpdateResourceServerCommand).build() {
|
|
7137
|
+
static {
|
|
7138
|
+
__name(this, "UpdateResourceServerCommand");
|
|
7139
|
+
}
|
|
6968
7140
|
};
|
|
6969
|
-
__name(_UpdateResourceServerCommand, "UpdateResourceServerCommand");
|
|
6970
|
-
var UpdateResourceServerCommand = _UpdateResourceServerCommand;
|
|
6971
7141
|
|
|
6972
7142
|
// src/commands/UpdateUserAttributesCommand.ts
|
|
6973
7143
|
|
|
6974
7144
|
|
|
6975
7145
|
|
|
6976
|
-
var
|
|
7146
|
+
var UpdateUserAttributesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6977
7147
|
return [
|
|
6978
7148
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6979
7149
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6980
7150
|
];
|
|
6981
7151
|
}).s("AWSCognitoIdentityProviderService", "UpdateUserAttributes", {}).n("CognitoIdentityProviderClient", "UpdateUserAttributesCommand").f(UpdateUserAttributesRequestFilterSensitiveLog, void 0).ser(se_UpdateUserAttributesCommand).de(de_UpdateUserAttributesCommand).build() {
|
|
7152
|
+
static {
|
|
7153
|
+
__name(this, "UpdateUserAttributesCommand");
|
|
7154
|
+
}
|
|
6982
7155
|
};
|
|
6983
|
-
__name(_UpdateUserAttributesCommand, "UpdateUserAttributesCommand");
|
|
6984
|
-
var UpdateUserAttributesCommand = _UpdateUserAttributesCommand;
|
|
6985
7156
|
|
|
6986
7157
|
// src/commands/UpdateUserPoolClientCommand.ts
|
|
6987
7158
|
|
|
6988
7159
|
|
|
6989
7160
|
|
|
6990
|
-
var
|
|
7161
|
+
var UpdateUserPoolClientCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6991
7162
|
return [
|
|
6992
7163
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6993
7164
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6994
7165
|
];
|
|
6995
7166
|
}).s("AWSCognitoIdentityProviderService", "UpdateUserPoolClient", {}).n("CognitoIdentityProviderClient", "UpdateUserPoolClientCommand").f(UpdateUserPoolClientRequestFilterSensitiveLog, UpdateUserPoolClientResponseFilterSensitiveLog).ser(se_UpdateUserPoolClientCommand).de(de_UpdateUserPoolClientCommand).build() {
|
|
7167
|
+
static {
|
|
7168
|
+
__name(this, "UpdateUserPoolClientCommand");
|
|
7169
|
+
}
|
|
6996
7170
|
};
|
|
6997
|
-
__name(_UpdateUserPoolClientCommand, "UpdateUserPoolClientCommand");
|
|
6998
|
-
var UpdateUserPoolClientCommand = _UpdateUserPoolClientCommand;
|
|
6999
7171
|
|
|
7000
7172
|
// src/commands/UpdateUserPoolCommand.ts
|
|
7001
7173
|
|
|
7002
7174
|
|
|
7003
7175
|
|
|
7004
|
-
var
|
|
7176
|
+
var UpdateUserPoolCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7005
7177
|
return [
|
|
7006
7178
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7007
7179
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7008
7180
|
];
|
|
7009
7181
|
}).s("AWSCognitoIdentityProviderService", "UpdateUserPool", {}).n("CognitoIdentityProviderClient", "UpdateUserPoolCommand").f(void 0, void 0).ser(se_UpdateUserPoolCommand).de(de_UpdateUserPoolCommand).build() {
|
|
7182
|
+
static {
|
|
7183
|
+
__name(this, "UpdateUserPoolCommand");
|
|
7184
|
+
}
|
|
7010
7185
|
};
|
|
7011
|
-
__name(_UpdateUserPoolCommand, "UpdateUserPoolCommand");
|
|
7012
|
-
var UpdateUserPoolCommand = _UpdateUserPoolCommand;
|
|
7013
7186
|
|
|
7014
7187
|
// src/commands/UpdateUserPoolDomainCommand.ts
|
|
7015
7188
|
|
|
7016
7189
|
|
|
7017
7190
|
|
|
7018
|
-
var
|
|
7191
|
+
var UpdateUserPoolDomainCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7019
7192
|
return [
|
|
7020
7193
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7021
7194
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7022
7195
|
];
|
|
7023
7196
|
}).s("AWSCognitoIdentityProviderService", "UpdateUserPoolDomain", {}).n("CognitoIdentityProviderClient", "UpdateUserPoolDomainCommand").f(void 0, void 0).ser(se_UpdateUserPoolDomainCommand).de(de_UpdateUserPoolDomainCommand).build() {
|
|
7197
|
+
static {
|
|
7198
|
+
__name(this, "UpdateUserPoolDomainCommand");
|
|
7199
|
+
}
|
|
7024
7200
|
};
|
|
7025
|
-
__name(_UpdateUserPoolDomainCommand, "UpdateUserPoolDomainCommand");
|
|
7026
|
-
var UpdateUserPoolDomainCommand = _UpdateUserPoolDomainCommand;
|
|
7027
7201
|
|
|
7028
7202
|
// src/commands/VerifySoftwareTokenCommand.ts
|
|
7029
7203
|
|
|
7030
7204
|
|
|
7031
7205
|
|
|
7032
|
-
var
|
|
7206
|
+
var VerifySoftwareTokenCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7033
7207
|
return [
|
|
7034
7208
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7035
7209
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7036
7210
|
];
|
|
7037
7211
|
}).s("AWSCognitoIdentityProviderService", "VerifySoftwareToken", {}).n("CognitoIdentityProviderClient", "VerifySoftwareTokenCommand").f(VerifySoftwareTokenRequestFilterSensitiveLog, VerifySoftwareTokenResponseFilterSensitiveLog).ser(se_VerifySoftwareTokenCommand).de(de_VerifySoftwareTokenCommand).build() {
|
|
7212
|
+
static {
|
|
7213
|
+
__name(this, "VerifySoftwareTokenCommand");
|
|
7214
|
+
}
|
|
7038
7215
|
};
|
|
7039
|
-
__name(_VerifySoftwareTokenCommand, "VerifySoftwareTokenCommand");
|
|
7040
|
-
var VerifySoftwareTokenCommand = _VerifySoftwareTokenCommand;
|
|
7041
7216
|
|
|
7042
7217
|
// src/commands/VerifyUserAttributeCommand.ts
|
|
7043
7218
|
|
|
7044
7219
|
|
|
7045
7220
|
|
|
7046
|
-
var
|
|
7221
|
+
var VerifyUserAttributeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
7047
7222
|
return [
|
|
7048
7223
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7049
7224
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7050
7225
|
];
|
|
7051
7226
|
}).s("AWSCognitoIdentityProviderService", "VerifyUserAttribute", {}).n("CognitoIdentityProviderClient", "VerifyUserAttributeCommand").f(VerifyUserAttributeRequestFilterSensitiveLog, void 0).ser(se_VerifyUserAttributeCommand).de(de_VerifyUserAttributeCommand).build() {
|
|
7227
|
+
static {
|
|
7228
|
+
__name(this, "VerifyUserAttributeCommand");
|
|
7229
|
+
}
|
|
7052
7230
|
};
|
|
7053
|
-
__name(_VerifyUserAttributeCommand, "VerifyUserAttributeCommand");
|
|
7054
|
-
var VerifyUserAttributeCommand = _VerifyUserAttributeCommand;
|
|
7055
7231
|
|
|
7056
7232
|
// src/CognitoIdentityProvider.ts
|
|
7057
7233
|
var commands = {
|
|
@@ -7169,10 +7345,11 @@ var commands = {
|
|
|
7169
7345
|
VerifySoftwareTokenCommand,
|
|
7170
7346
|
VerifyUserAttributeCommand
|
|
7171
7347
|
};
|
|
7172
|
-
var
|
|
7348
|
+
var CognitoIdentityProvider = class extends CognitoIdentityProviderClient {
|
|
7349
|
+
static {
|
|
7350
|
+
__name(this, "CognitoIdentityProvider");
|
|
7351
|
+
}
|
|
7173
7352
|
};
|
|
7174
|
-
__name(_CognitoIdentityProvider, "CognitoIdentityProvider");
|
|
7175
|
-
var CognitoIdentityProvider = _CognitoIdentityProvider;
|
|
7176
7353
|
(0, import_smithy_client.createAggregatedClient)(commands, CognitoIdentityProvider);
|
|
7177
7354
|
|
|
7178
7355
|
// src/pagination/AdminListGroupsForUserPaginator.ts
|