@aws-sdk/client-appflow 3.183.0 → 3.185.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/CHANGELOG.md +11 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2 -2
- package/dist-es/Appflow.js +97 -90
- package/dist-es/AppflowClient.js +28 -22
- package/dist-es/commands/CreateConnectorProfileCommand.js +28 -21
- package/dist-es/commands/CreateFlowCommand.js +28 -21
- package/dist-es/commands/DeleteConnectorProfileCommand.js +28 -21
- package/dist-es/commands/DeleteFlowCommand.js +28 -21
- package/dist-es/commands/DescribeConnectorCommand.js +28 -21
- package/dist-es/commands/DescribeConnectorEntityCommand.js +28 -21
- package/dist-es/commands/DescribeConnectorProfilesCommand.js +28 -21
- package/dist-es/commands/DescribeConnectorsCommand.js +28 -21
- package/dist-es/commands/DescribeFlowCommand.js +28 -21
- package/dist-es/commands/DescribeFlowExecutionRecordsCommand.js +28 -21
- package/dist-es/commands/ListConnectorEntitiesCommand.js +28 -21
- package/dist-es/commands/ListConnectorsCommand.js +28 -21
- package/dist-es/commands/ListFlowsCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/RegisterConnectorCommand.js +28 -21
- package/dist-es/commands/StartFlowCommand.js +28 -21
- package/dist-es/commands/StopFlowCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UnregisterConnectorCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdateConnectorProfileCommand.js +28 -21
- package/dist-es/commands/UpdateFlowCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/AppflowServiceException.js +10 -5
- package/dist-es/models/models_0.js +302 -720
- package/dist-es/pagination/DescribeConnectorProfilesPaginator.js +68 -25
- package/dist-es/pagination/DescribeConnectorsPaginator.js +68 -25
- package/dist-es/pagination/DescribeFlowExecutionRecordsPaginator.js +68 -25
- package/dist-es/pagination/ListConnectorsPaginator.js +68 -25
- package/dist-es/pagination/ListFlowsPaginator.js +68 -25
- package/dist-es/protocols/Aws_restJson1.js +2943 -2713
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +5 -5
|
@@ -1,17 +1,18 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { AppflowServiceException as __BaseException } from "./AppflowServiceException";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
this.$fault = "client";
|
|
12
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
4
|
+
var AccessDeniedException = (function (_super) {
|
|
5
|
+
__extends(AccessDeniedException, _super);
|
|
6
|
+
function AccessDeniedException(opts) {
|
|
7
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
8
|
+
_this.name = "AccessDeniedException";
|
|
9
|
+
_this.$fault = "client";
|
|
10
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
11
|
+
return _this;
|
|
13
12
|
}
|
|
14
|
-
|
|
13
|
+
return AccessDeniedException;
|
|
14
|
+
}(__BaseException));
|
|
15
|
+
export { AccessDeniedException };
|
|
15
16
|
export var AggregationType;
|
|
16
17
|
(function (AggregationType) {
|
|
17
18
|
AggregationType["NONE"] = "None";
|
|
@@ -38,35 +39,35 @@ export var AuthenticationType;
|
|
|
38
39
|
AuthenticationType["CUSTOM"] = "CUSTOM";
|
|
39
40
|
AuthenticationType["OAUTH2"] = "OAUTH2";
|
|
40
41
|
})(AuthenticationType || (AuthenticationType = {}));
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
this.$fault = "client";
|
|
50
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
42
|
+
var ConflictException = (function (_super) {
|
|
43
|
+
__extends(ConflictException, _super);
|
|
44
|
+
function ConflictException(opts) {
|
|
45
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
46
|
+
_this.name = "ConflictException";
|
|
47
|
+
_this.$fault = "client";
|
|
48
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
49
|
+
return _this;
|
|
51
50
|
}
|
|
52
|
-
|
|
51
|
+
return ConflictException;
|
|
52
|
+
}(__BaseException));
|
|
53
|
+
export { ConflictException };
|
|
53
54
|
export var ConnectionMode;
|
|
54
55
|
(function (ConnectionMode) {
|
|
55
56
|
ConnectionMode["PRIVATE"] = "Private";
|
|
56
57
|
ConnectionMode["PUBLIC"] = "Public";
|
|
57
58
|
})(ConnectionMode || (ConnectionMode = {}));
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
this.$fault = "client";
|
|
67
|
-
Object.setPrototypeOf(this, ConnectorAuthenticationException.prototype);
|
|
59
|
+
var ConnectorAuthenticationException = (function (_super) {
|
|
60
|
+
__extends(ConnectorAuthenticationException, _super);
|
|
61
|
+
function ConnectorAuthenticationException(opts) {
|
|
62
|
+
var _this = _super.call(this, __assign({ name: "ConnectorAuthenticationException", $fault: "client" }, opts)) || this;
|
|
63
|
+
_this.name = "ConnectorAuthenticationException";
|
|
64
|
+
_this.$fault = "client";
|
|
65
|
+
Object.setPrototypeOf(_this, ConnectorAuthenticationException.prototype);
|
|
66
|
+
return _this;
|
|
68
67
|
}
|
|
69
|
-
|
|
68
|
+
return ConnectorAuthenticationException;
|
|
69
|
+
}(__BaseException));
|
|
70
|
+
export { ConnectorAuthenticationException };
|
|
70
71
|
export var ConnectorProvisioningType;
|
|
71
72
|
(function (ConnectorProvisioningType) {
|
|
72
73
|
ConnectorProvisioningType["LAMBDA"] = "LAMBDA";
|
|
@@ -451,54 +452,54 @@ export var PrivateConnectionProvisioningStatus;
|
|
|
451
452
|
PrivateConnectionProvisioningStatus["FAILED"] = "FAILED";
|
|
452
453
|
PrivateConnectionProvisioningStatus["PENDING"] = "PENDING";
|
|
453
454
|
})(PrivateConnectionProvisioningStatus || (PrivateConnectionProvisioningStatus = {}));
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
this.$fault = "client";
|
|
463
|
-
Object.setPrototypeOf(this, ConnectorServerException.prototype);
|
|
455
|
+
var ConnectorServerException = (function (_super) {
|
|
456
|
+
__extends(ConnectorServerException, _super);
|
|
457
|
+
function ConnectorServerException(opts) {
|
|
458
|
+
var _this = _super.call(this, __assign({ name: "ConnectorServerException", $fault: "client" }, opts)) || this;
|
|
459
|
+
_this.name = "ConnectorServerException";
|
|
460
|
+
_this.$fault = "client";
|
|
461
|
+
Object.setPrototypeOf(_this, ConnectorServerException.prototype);
|
|
462
|
+
return _this;
|
|
464
463
|
}
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
464
|
+
return ConnectorServerException;
|
|
465
|
+
}(__BaseException));
|
|
466
|
+
export { ConnectorServerException };
|
|
467
|
+
var InternalServerException = (function (_super) {
|
|
468
|
+
__extends(InternalServerException, _super);
|
|
469
|
+
function InternalServerException(opts) {
|
|
470
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
471
|
+
_this.name = "InternalServerException";
|
|
472
|
+
_this.$fault = "server";
|
|
473
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
474
|
+
return _this;
|
|
476
475
|
}
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
476
|
+
return InternalServerException;
|
|
477
|
+
}(__BaseException));
|
|
478
|
+
export { InternalServerException };
|
|
479
|
+
var ServiceQuotaExceededException = (function (_super) {
|
|
480
|
+
__extends(ServiceQuotaExceededException, _super);
|
|
481
|
+
function ServiceQuotaExceededException(opts) {
|
|
482
|
+
var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
483
|
+
_this.name = "ServiceQuotaExceededException";
|
|
484
|
+
_this.$fault = "client";
|
|
485
|
+
Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
|
|
486
|
+
return _this;
|
|
488
487
|
}
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
488
|
+
return ServiceQuotaExceededException;
|
|
489
|
+
}(__BaseException));
|
|
490
|
+
export { ServiceQuotaExceededException };
|
|
491
|
+
var ValidationException = (function (_super) {
|
|
492
|
+
__extends(ValidationException, _super);
|
|
493
|
+
function ValidationException(opts) {
|
|
494
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
495
|
+
_this.name = "ValidationException";
|
|
496
|
+
_this.$fault = "client";
|
|
497
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
498
|
+
return _this;
|
|
500
499
|
}
|
|
501
|
-
|
|
500
|
+
return ValidationException;
|
|
501
|
+
}(__BaseException));
|
|
502
|
+
export { ValidationException };
|
|
502
503
|
export var FileType;
|
|
503
504
|
(function (FileType) {
|
|
504
505
|
FileType["CSV"] = "CSV";
|
|
@@ -568,655 +569,236 @@ export var FlowStatus;
|
|
|
568
569
|
FlowStatus["ERRORED"] = "Errored";
|
|
569
570
|
FlowStatus["SUSPENDED"] = "Suspended";
|
|
570
571
|
})(FlowStatus || (FlowStatus = {}));
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
this.$fault = "client";
|
|
580
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
572
|
+
var ResourceNotFoundException = (function (_super) {
|
|
573
|
+
__extends(ResourceNotFoundException, _super);
|
|
574
|
+
function ResourceNotFoundException(opts) {
|
|
575
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
576
|
+
_this.name = "ResourceNotFoundException";
|
|
577
|
+
_this.$fault = "client";
|
|
578
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
579
|
+
return _this;
|
|
581
580
|
}
|
|
582
|
-
|
|
581
|
+
return ResourceNotFoundException;
|
|
582
|
+
}(__BaseException));
|
|
583
|
+
export { ResourceNotFoundException };
|
|
583
584
|
export var ExecutionStatus;
|
|
584
585
|
(function (ExecutionStatus) {
|
|
585
586
|
ExecutionStatus["ERROR"] = "Error";
|
|
586
587
|
ExecutionStatus["INPROGRESS"] = "InProgress";
|
|
587
588
|
ExecutionStatus["SUCCESSFUL"] = "Successful";
|
|
588
589
|
})(ExecutionStatus || (ExecutionStatus = {}));
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
this.$fault = "client";
|
|
598
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
590
|
+
var ThrottlingException = (function (_super) {
|
|
591
|
+
__extends(ThrottlingException, _super);
|
|
592
|
+
function ThrottlingException(opts) {
|
|
593
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
594
|
+
_this.name = "ThrottlingException";
|
|
595
|
+
_this.$fault = "client";
|
|
596
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
597
|
+
return _this;
|
|
599
598
|
}
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
599
|
+
return ThrottlingException;
|
|
600
|
+
}(__BaseException));
|
|
601
|
+
export { ThrottlingException };
|
|
602
|
+
var UnsupportedOperationException = (function (_super) {
|
|
603
|
+
__extends(UnsupportedOperationException, _super);
|
|
604
|
+
function UnsupportedOperationException(opts) {
|
|
605
|
+
var _this = _super.call(this, __assign({ name: "UnsupportedOperationException", $fault: "client" }, opts)) || this;
|
|
606
|
+
_this.name = "UnsupportedOperationException";
|
|
607
|
+
_this.$fault = "client";
|
|
608
|
+
Object.setPrototypeOf(_this, UnsupportedOperationException.prototype);
|
|
609
|
+
return _this;
|
|
611
610
|
}
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
});
|
|
616
|
-
export
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
});
|
|
621
|
-
export
|
|
622
|
-
|
|
623
|
-
});
|
|
624
|
-
export
|
|
625
|
-
|
|
626
|
-
});
|
|
627
|
-
export
|
|
628
|
-
|
|
629
|
-
});
|
|
630
|
-
export
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
});
|
|
635
|
-
export
|
|
636
|
-
|
|
637
|
-
});
|
|
638
|
-
export
|
|
639
|
-
|
|
640
|
-
});
|
|
641
|
-
export
|
|
642
|
-
|
|
643
|
-
});
|
|
644
|
-
export
|
|
645
|
-
|
|
646
|
-
});
|
|
647
|
-
export
|
|
648
|
-
|
|
649
|
-
});
|
|
650
|
-
export
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
});
|
|
654
|
-
export
|
|
655
|
-
|
|
656
|
-
});
|
|
657
|
-
export
|
|
658
|
-
|
|
659
|
-
});
|
|
660
|
-
export
|
|
661
|
-
|
|
662
|
-
});
|
|
663
|
-
export
|
|
664
|
-
|
|
665
|
-
});
|
|
666
|
-
export
|
|
667
|
-
|
|
668
|
-
});
|
|
669
|
-
export
|
|
670
|
-
|
|
671
|
-
});
|
|
672
|
-
export
|
|
673
|
-
|
|
674
|
-
});
|
|
675
|
-
export
|
|
676
|
-
|
|
677
|
-
});
|
|
678
|
-
export
|
|
679
|
-
|
|
680
|
-
});
|
|
681
|
-
export
|
|
682
|
-
|
|
683
|
-
});
|
|
684
|
-
export
|
|
685
|
-
|
|
686
|
-
});
|
|
687
|
-
export
|
|
688
|
-
|
|
689
|
-
});
|
|
690
|
-
export
|
|
691
|
-
|
|
692
|
-
});
|
|
693
|
-
export
|
|
694
|
-
|
|
695
|
-
});
|
|
696
|
-
export
|
|
697
|
-
|
|
698
|
-
});
|
|
699
|
-
export
|
|
700
|
-
|
|
701
|
-
});
|
|
702
|
-
export
|
|
703
|
-
|
|
704
|
-
});
|
|
705
|
-
export
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
});
|
|
711
|
-
export
|
|
712
|
-
|
|
713
|
-
});
|
|
714
|
-
export
|
|
715
|
-
|
|
716
|
-
});
|
|
717
|
-
export
|
|
718
|
-
|
|
719
|
-
});
|
|
720
|
-
export
|
|
721
|
-
|
|
722
|
-
});
|
|
723
|
-
export
|
|
724
|
-
|
|
725
|
-
});
|
|
726
|
-
export
|
|
727
|
-
|
|
728
|
-
});
|
|
729
|
-
export
|
|
730
|
-
|
|
731
|
-
});
|
|
732
|
-
export
|
|
733
|
-
|
|
734
|
-
});
|
|
735
|
-
export
|
|
736
|
-
|
|
737
|
-
});
|
|
738
|
-
export
|
|
739
|
-
|
|
740
|
-
});
|
|
741
|
-
export
|
|
742
|
-
|
|
743
|
-
});
|
|
744
|
-
export
|
|
745
|
-
|
|
746
|
-
});
|
|
747
|
-
export
|
|
748
|
-
|
|
749
|
-
});
|
|
750
|
-
export
|
|
751
|
-
|
|
752
|
-
});
|
|
753
|
-
export
|
|
754
|
-
|
|
755
|
-
});
|
|
756
|
-
export
|
|
757
|
-
|
|
758
|
-
});
|
|
759
|
-
export
|
|
760
|
-
|
|
761
|
-
});
|
|
762
|
-
export
|
|
763
|
-
|
|
764
|
-
});
|
|
765
|
-
export
|
|
766
|
-
|
|
767
|
-
});
|
|
768
|
-
export
|
|
769
|
-
|
|
770
|
-
});
|
|
771
|
-
export
|
|
772
|
-
|
|
773
|
-
});
|
|
774
|
-
export
|
|
775
|
-
|
|
776
|
-
});
|
|
777
|
-
export
|
|
778
|
-
|
|
779
|
-
});
|
|
780
|
-
export
|
|
781
|
-
|
|
782
|
-
});
|
|
783
|
-
export
|
|
784
|
-
|
|
785
|
-
});
|
|
786
|
-
export
|
|
787
|
-
|
|
788
|
-
});
|
|
789
|
-
export
|
|
790
|
-
|
|
791
|
-
});
|
|
792
|
-
export
|
|
793
|
-
|
|
794
|
-
});
|
|
795
|
-
export
|
|
796
|
-
|
|
797
|
-
});
|
|
798
|
-
export
|
|
799
|
-
|
|
800
|
-
});
|
|
801
|
-
export
|
|
802
|
-
|
|
803
|
-
});
|
|
804
|
-
export
|
|
805
|
-
|
|
806
|
-
});
|
|
807
|
-
export const TrendmicroConnectorProfilePropertiesFilterSensitiveLog = (obj) => ({
|
|
808
|
-
...obj,
|
|
809
|
-
});
|
|
810
|
-
export const VeevaConnectorProfilePropertiesFilterSensitiveLog = (obj) => ({
|
|
811
|
-
...obj,
|
|
812
|
-
});
|
|
813
|
-
export const ZendeskConnectorProfilePropertiesFilterSensitiveLog = (obj) => ({
|
|
814
|
-
...obj,
|
|
815
|
-
});
|
|
816
|
-
export const ConnectorProfilePropertiesFilterSensitiveLog = (obj) => ({
|
|
817
|
-
...obj,
|
|
818
|
-
});
|
|
819
|
-
export const PrivateConnectionProvisioningStateFilterSensitiveLog = (obj) => ({
|
|
820
|
-
...obj,
|
|
821
|
-
});
|
|
822
|
-
export const ConnectorProfileFilterSensitiveLog = (obj) => ({
|
|
823
|
-
...obj,
|
|
824
|
-
});
|
|
825
|
-
export const CustomAuthCredentialsFilterSensitiveLog = (obj) => ({
|
|
826
|
-
...obj,
|
|
827
|
-
...(obj.credentialsMap && { credentialsMap: SENSITIVE_STRING }),
|
|
828
|
-
});
|
|
829
|
-
export const OAuth2CredentialsFilterSensitiveLog = (obj) => ({
|
|
830
|
-
...obj,
|
|
831
|
-
...(obj.clientSecret && { clientSecret: SENSITIVE_STRING }),
|
|
832
|
-
...(obj.accessToken && { accessToken: SENSITIVE_STRING }),
|
|
833
|
-
});
|
|
834
|
-
export const CustomConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
|
|
835
|
-
...obj,
|
|
836
|
-
...(obj.basic && { basic: BasicAuthCredentialsFilterSensitiveLog(obj.basic) }),
|
|
837
|
-
...(obj.oauth2 && { oauth2: OAuth2CredentialsFilterSensitiveLog(obj.oauth2) }),
|
|
838
|
-
...(obj.apiKey && { apiKey: ApiKeyCredentialsFilterSensitiveLog(obj.apiKey) }),
|
|
839
|
-
...(obj.custom && { custom: CustomAuthCredentialsFilterSensitiveLog(obj.custom) }),
|
|
840
|
-
});
|
|
841
|
-
export const DatadogConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
|
|
842
|
-
...obj,
|
|
843
|
-
...(obj.apiKey && { apiKey: SENSITIVE_STRING }),
|
|
844
|
-
});
|
|
845
|
-
export const DynatraceConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
|
|
846
|
-
...obj,
|
|
847
|
-
});
|
|
848
|
-
export const GoogleAnalyticsConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
|
|
849
|
-
...obj,
|
|
850
|
-
...(obj.clientSecret && { clientSecret: SENSITIVE_STRING }),
|
|
851
|
-
...(obj.accessToken && { accessToken: SENSITIVE_STRING }),
|
|
852
|
-
});
|
|
853
|
-
export const HoneycodeConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
|
|
854
|
-
...obj,
|
|
855
|
-
...(obj.accessToken && { accessToken: SENSITIVE_STRING }),
|
|
856
|
-
});
|
|
857
|
-
export const InforNexusConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
|
|
858
|
-
...obj,
|
|
859
|
-
...(obj.accessKeyId && { accessKeyId: SENSITIVE_STRING }),
|
|
860
|
-
});
|
|
861
|
-
export const MarketoConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
|
|
862
|
-
...obj,
|
|
863
|
-
...(obj.clientSecret && { clientSecret: SENSITIVE_STRING }),
|
|
864
|
-
...(obj.accessToken && { accessToken: SENSITIVE_STRING }),
|
|
865
|
-
});
|
|
866
|
-
export const RedshiftConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
|
|
867
|
-
...obj,
|
|
868
|
-
...(obj.password && { password: SENSITIVE_STRING }),
|
|
869
|
-
});
|
|
870
|
-
export const SalesforceConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
|
|
871
|
-
...obj,
|
|
872
|
-
...(obj.accessToken && { accessToken: SENSITIVE_STRING }),
|
|
873
|
-
...(obj.clientCredentialsArn && { clientCredentialsArn: SENSITIVE_STRING }),
|
|
874
|
-
});
|
|
875
|
-
export const OAuthCredentialsFilterSensitiveLog = (obj) => ({
|
|
876
|
-
...obj,
|
|
877
|
-
...(obj.clientSecret && { clientSecret: SENSITIVE_STRING }),
|
|
878
|
-
...(obj.accessToken && { accessToken: SENSITIVE_STRING }),
|
|
879
|
-
});
|
|
880
|
-
export const SAPODataConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
|
|
881
|
-
...obj,
|
|
882
|
-
...(obj.basicAuthCredentials && {
|
|
883
|
-
basicAuthCredentials: BasicAuthCredentialsFilterSensitiveLog(obj.basicAuthCredentials),
|
|
884
|
-
}),
|
|
885
|
-
...(obj.oAuthCredentials && { oAuthCredentials: OAuthCredentialsFilterSensitiveLog(obj.oAuthCredentials) }),
|
|
886
|
-
});
|
|
887
|
-
export const ServiceNowConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
|
|
888
|
-
...obj,
|
|
889
|
-
...(obj.password && { password: SENSITIVE_STRING }),
|
|
890
|
-
});
|
|
891
|
-
export const SingularConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
|
|
892
|
-
...obj,
|
|
893
|
-
...(obj.apiKey && { apiKey: SENSITIVE_STRING }),
|
|
894
|
-
});
|
|
895
|
-
export const SlackConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
|
|
896
|
-
...obj,
|
|
897
|
-
...(obj.clientSecret && { clientSecret: SENSITIVE_STRING }),
|
|
898
|
-
...(obj.accessToken && { accessToken: SENSITIVE_STRING }),
|
|
899
|
-
});
|
|
900
|
-
export const SnowflakeConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
|
|
901
|
-
...obj,
|
|
902
|
-
...(obj.password && { password: SENSITIVE_STRING }),
|
|
903
|
-
});
|
|
904
|
-
export const TrendmicroConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
|
|
905
|
-
...obj,
|
|
906
|
-
...(obj.apiSecretKey && { apiSecretKey: SENSITIVE_STRING }),
|
|
907
|
-
});
|
|
908
|
-
export const VeevaConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
|
|
909
|
-
...obj,
|
|
910
|
-
...(obj.password && { password: SENSITIVE_STRING }),
|
|
911
|
-
});
|
|
912
|
-
export const ZendeskConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
|
|
913
|
-
...obj,
|
|
914
|
-
...(obj.clientSecret && { clientSecret: SENSITIVE_STRING }),
|
|
915
|
-
...(obj.accessToken && { accessToken: SENSITIVE_STRING }),
|
|
916
|
-
});
|
|
917
|
-
export const ConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
|
|
918
|
-
...obj,
|
|
919
|
-
...(obj.Amplitude && { Amplitude: AmplitudeConnectorProfileCredentialsFilterSensitiveLog(obj.Amplitude) }),
|
|
920
|
-
...(obj.Datadog && { Datadog: DatadogConnectorProfileCredentialsFilterSensitiveLog(obj.Datadog) }),
|
|
921
|
-
...(obj.GoogleAnalytics && {
|
|
922
|
-
GoogleAnalytics: GoogleAnalyticsConnectorProfileCredentialsFilterSensitiveLog(obj.GoogleAnalytics),
|
|
923
|
-
}),
|
|
924
|
-
...(obj.Honeycode && { Honeycode: HoneycodeConnectorProfileCredentialsFilterSensitiveLog(obj.Honeycode) }),
|
|
925
|
-
...(obj.InforNexus && { InforNexus: InforNexusConnectorProfileCredentialsFilterSensitiveLog(obj.InforNexus) }),
|
|
926
|
-
...(obj.Marketo && { Marketo: MarketoConnectorProfileCredentialsFilterSensitiveLog(obj.Marketo) }),
|
|
927
|
-
...(obj.Redshift && { Redshift: RedshiftConnectorProfileCredentialsFilterSensitiveLog(obj.Redshift) }),
|
|
928
|
-
...(obj.Salesforce && { Salesforce: SalesforceConnectorProfileCredentialsFilterSensitiveLog(obj.Salesforce) }),
|
|
929
|
-
...(obj.ServiceNow && { ServiceNow: ServiceNowConnectorProfileCredentialsFilterSensitiveLog(obj.ServiceNow) }),
|
|
930
|
-
...(obj.Singular && { Singular: SingularConnectorProfileCredentialsFilterSensitiveLog(obj.Singular) }),
|
|
931
|
-
...(obj.Slack && { Slack: SlackConnectorProfileCredentialsFilterSensitiveLog(obj.Slack) }),
|
|
932
|
-
...(obj.Snowflake && { Snowflake: SnowflakeConnectorProfileCredentialsFilterSensitiveLog(obj.Snowflake) }),
|
|
933
|
-
...(obj.Trendmicro && { Trendmicro: TrendmicroConnectorProfileCredentialsFilterSensitiveLog(obj.Trendmicro) }),
|
|
934
|
-
...(obj.Veeva && { Veeva: VeevaConnectorProfileCredentialsFilterSensitiveLog(obj.Veeva) }),
|
|
935
|
-
...(obj.Zendesk && { Zendesk: ZendeskConnectorProfileCredentialsFilterSensitiveLog(obj.Zendesk) }),
|
|
936
|
-
...(obj.SAPOData && { SAPOData: SAPODataConnectorProfileCredentialsFilterSensitiveLog(obj.SAPOData) }),
|
|
937
|
-
...(obj.CustomConnector && {
|
|
938
|
-
CustomConnector: CustomConnectorProfileCredentialsFilterSensitiveLog(obj.CustomConnector),
|
|
939
|
-
}),
|
|
940
|
-
});
|
|
941
|
-
export const ConnectorProfileConfigFilterSensitiveLog = (obj) => ({
|
|
942
|
-
...obj,
|
|
943
|
-
...(obj.connectorProfileCredentials && {
|
|
944
|
-
connectorProfileCredentials: ConnectorProfileCredentialsFilterSensitiveLog(obj.connectorProfileCredentials),
|
|
945
|
-
}),
|
|
946
|
-
});
|
|
947
|
-
export const CreateConnectorProfileRequestFilterSensitiveLog = (obj) => ({
|
|
948
|
-
...obj,
|
|
949
|
-
});
|
|
950
|
-
export const CreateConnectorProfileResponseFilterSensitiveLog = (obj) => ({
|
|
951
|
-
...obj,
|
|
952
|
-
});
|
|
953
|
-
export const ErrorHandlingConfigFilterSensitiveLog = (obj) => ({
|
|
954
|
-
...obj,
|
|
955
|
-
});
|
|
956
|
-
export const CustomConnectorDestinationPropertiesFilterSensitiveLog = (obj) => ({
|
|
957
|
-
...obj,
|
|
958
|
-
});
|
|
959
|
-
export const CustomerProfilesDestinationPropertiesFilterSensitiveLog = (obj) => ({
|
|
960
|
-
...obj,
|
|
961
|
-
});
|
|
962
|
-
export const EventBridgeDestinationPropertiesFilterSensitiveLog = (obj) => ({
|
|
963
|
-
...obj,
|
|
964
|
-
});
|
|
965
|
-
export const HoneycodeDestinationPropertiesFilterSensitiveLog = (obj) => ({
|
|
966
|
-
...obj,
|
|
967
|
-
});
|
|
968
|
-
export const LookoutMetricsDestinationPropertiesFilterSensitiveLog = (obj) => ({
|
|
969
|
-
...obj,
|
|
970
|
-
});
|
|
971
|
-
export const MarketoDestinationPropertiesFilterSensitiveLog = (obj) => ({
|
|
972
|
-
...obj,
|
|
973
|
-
});
|
|
974
|
-
export const RedshiftDestinationPropertiesFilterSensitiveLog = (obj) => ({
|
|
975
|
-
...obj,
|
|
976
|
-
});
|
|
977
|
-
export const PrefixConfigFilterSensitiveLog = (obj) => ({
|
|
978
|
-
...obj,
|
|
979
|
-
});
|
|
980
|
-
export const S3OutputFormatConfigFilterSensitiveLog = (obj) => ({
|
|
981
|
-
...obj,
|
|
982
|
-
});
|
|
983
|
-
export const S3DestinationPropertiesFilterSensitiveLog = (obj) => ({
|
|
984
|
-
...obj,
|
|
985
|
-
});
|
|
986
|
-
export const SalesforceDestinationPropertiesFilterSensitiveLog = (obj) => ({
|
|
987
|
-
...obj,
|
|
988
|
-
});
|
|
989
|
-
export const SuccessResponseHandlingConfigFilterSensitiveLog = (obj) => ({
|
|
990
|
-
...obj,
|
|
991
|
-
});
|
|
992
|
-
export const SAPODataDestinationPropertiesFilterSensitiveLog = (obj) => ({
|
|
993
|
-
...obj,
|
|
994
|
-
});
|
|
995
|
-
export const SnowflakeDestinationPropertiesFilterSensitiveLog = (obj) => ({
|
|
996
|
-
...obj,
|
|
997
|
-
});
|
|
998
|
-
export const UpsolverS3OutputFormatConfigFilterSensitiveLog = (obj) => ({
|
|
999
|
-
...obj,
|
|
1000
|
-
});
|
|
1001
|
-
export const UpsolverDestinationPropertiesFilterSensitiveLog = (obj) => ({
|
|
1002
|
-
...obj,
|
|
1003
|
-
});
|
|
1004
|
-
export const ZendeskDestinationPropertiesFilterSensitiveLog = (obj) => ({
|
|
1005
|
-
...obj,
|
|
1006
|
-
});
|
|
1007
|
-
export const DestinationConnectorPropertiesFilterSensitiveLog = (obj) => ({
|
|
1008
|
-
...obj,
|
|
1009
|
-
});
|
|
1010
|
-
export const DestinationFlowConfigFilterSensitiveLog = (obj) => ({
|
|
1011
|
-
...obj,
|
|
1012
|
-
});
|
|
1013
|
-
export const IncrementalPullConfigFilterSensitiveLog = (obj) => ({
|
|
1014
|
-
...obj,
|
|
1015
|
-
});
|
|
1016
|
-
export const CustomConnectorSourcePropertiesFilterSensitiveLog = (obj) => ({
|
|
1017
|
-
...obj,
|
|
1018
|
-
});
|
|
1019
|
-
export const DatadogSourcePropertiesFilterSensitiveLog = (obj) => ({
|
|
1020
|
-
...obj,
|
|
1021
|
-
});
|
|
1022
|
-
export const DynatraceSourcePropertiesFilterSensitiveLog = (obj) => ({
|
|
1023
|
-
...obj,
|
|
1024
|
-
});
|
|
1025
|
-
export const GoogleAnalyticsSourcePropertiesFilterSensitiveLog = (obj) => ({
|
|
1026
|
-
...obj,
|
|
1027
|
-
});
|
|
1028
|
-
export const InforNexusSourcePropertiesFilterSensitiveLog = (obj) => ({
|
|
1029
|
-
...obj,
|
|
1030
|
-
});
|
|
1031
|
-
export const MarketoSourcePropertiesFilterSensitiveLog = (obj) => ({
|
|
1032
|
-
...obj,
|
|
1033
|
-
});
|
|
1034
|
-
export const S3InputFormatConfigFilterSensitiveLog = (obj) => ({
|
|
1035
|
-
...obj,
|
|
1036
|
-
});
|
|
1037
|
-
export const S3SourcePropertiesFilterSensitiveLog = (obj) => ({
|
|
1038
|
-
...obj,
|
|
1039
|
-
});
|
|
1040
|
-
export const SalesforceSourcePropertiesFilterSensitiveLog = (obj) => ({
|
|
1041
|
-
...obj,
|
|
1042
|
-
});
|
|
1043
|
-
export const SAPODataSourcePropertiesFilterSensitiveLog = (obj) => ({
|
|
1044
|
-
...obj,
|
|
1045
|
-
});
|
|
1046
|
-
export const ServiceNowSourcePropertiesFilterSensitiveLog = (obj) => ({
|
|
1047
|
-
...obj,
|
|
1048
|
-
});
|
|
1049
|
-
export const SingularSourcePropertiesFilterSensitiveLog = (obj) => ({
|
|
1050
|
-
...obj,
|
|
1051
|
-
});
|
|
1052
|
-
export const SlackSourcePropertiesFilterSensitiveLog = (obj) => ({
|
|
1053
|
-
...obj,
|
|
1054
|
-
});
|
|
1055
|
-
export const TrendmicroSourcePropertiesFilterSensitiveLog = (obj) => ({
|
|
1056
|
-
...obj,
|
|
1057
|
-
});
|
|
1058
|
-
export const VeevaSourcePropertiesFilterSensitiveLog = (obj) => ({
|
|
1059
|
-
...obj,
|
|
1060
|
-
});
|
|
1061
|
-
export const ZendeskSourcePropertiesFilterSensitiveLog = (obj) => ({
|
|
1062
|
-
...obj,
|
|
1063
|
-
});
|
|
1064
|
-
export const SourceConnectorPropertiesFilterSensitiveLog = (obj) => ({
|
|
1065
|
-
...obj,
|
|
1066
|
-
});
|
|
1067
|
-
export const SourceFlowConfigFilterSensitiveLog = (obj) => ({
|
|
1068
|
-
...obj,
|
|
1069
|
-
});
|
|
1070
|
-
export const TaskFilterSensitiveLog = (obj) => ({
|
|
1071
|
-
...obj,
|
|
1072
|
-
});
|
|
1073
|
-
export const ScheduledTriggerPropertiesFilterSensitiveLog = (obj) => ({
|
|
1074
|
-
...obj,
|
|
1075
|
-
});
|
|
1076
|
-
export const TriggerPropertiesFilterSensitiveLog = (obj) => ({
|
|
1077
|
-
...obj,
|
|
1078
|
-
});
|
|
1079
|
-
export const TriggerConfigFilterSensitiveLog = (obj) => ({
|
|
1080
|
-
...obj,
|
|
1081
|
-
});
|
|
1082
|
-
export const CreateFlowRequestFilterSensitiveLog = (obj) => ({
|
|
1083
|
-
...obj,
|
|
1084
|
-
});
|
|
1085
|
-
export const CreateFlowResponseFilterSensitiveLog = (obj) => ({
|
|
1086
|
-
...obj,
|
|
1087
|
-
});
|
|
1088
|
-
export const DeleteConnectorProfileRequestFilterSensitiveLog = (obj) => ({
|
|
1089
|
-
...obj,
|
|
1090
|
-
});
|
|
1091
|
-
export const DeleteConnectorProfileResponseFilterSensitiveLog = (obj) => ({
|
|
1092
|
-
...obj,
|
|
1093
|
-
});
|
|
1094
|
-
export const DeleteFlowRequestFilterSensitiveLog = (obj) => ({
|
|
1095
|
-
...obj,
|
|
1096
|
-
});
|
|
1097
|
-
export const DeleteFlowResponseFilterSensitiveLog = (obj) => ({
|
|
1098
|
-
...obj,
|
|
1099
|
-
});
|
|
1100
|
-
export const DescribeConnectorRequestFilterSensitiveLog = (obj) => ({
|
|
1101
|
-
...obj,
|
|
1102
|
-
});
|
|
1103
|
-
export const DescribeConnectorResponseFilterSensitiveLog = (obj) => ({
|
|
1104
|
-
...obj,
|
|
1105
|
-
});
|
|
1106
|
-
export const DescribeConnectorEntityRequestFilterSensitiveLog = (obj) => ({
|
|
1107
|
-
...obj,
|
|
1108
|
-
});
|
|
1109
|
-
export const DescribeConnectorEntityResponseFilterSensitiveLog = (obj) => ({
|
|
1110
|
-
...obj,
|
|
1111
|
-
});
|
|
1112
|
-
export const DescribeConnectorProfilesRequestFilterSensitiveLog = (obj) => ({
|
|
1113
|
-
...obj,
|
|
1114
|
-
});
|
|
1115
|
-
export const DescribeConnectorProfilesResponseFilterSensitiveLog = (obj) => ({
|
|
1116
|
-
...obj,
|
|
1117
|
-
});
|
|
1118
|
-
export const DescribeConnectorsRequestFilterSensitiveLog = (obj) => ({
|
|
1119
|
-
...obj,
|
|
1120
|
-
});
|
|
1121
|
-
export const DescribeConnectorsResponseFilterSensitiveLog = (obj) => ({
|
|
1122
|
-
...obj,
|
|
1123
|
-
});
|
|
1124
|
-
export const DescribeFlowRequestFilterSensitiveLog = (obj) => ({
|
|
1125
|
-
...obj,
|
|
1126
|
-
});
|
|
1127
|
-
export const ExecutionDetailsFilterSensitiveLog = (obj) => ({
|
|
1128
|
-
...obj,
|
|
1129
|
-
});
|
|
1130
|
-
export const DescribeFlowResponseFilterSensitiveLog = (obj) => ({
|
|
1131
|
-
...obj,
|
|
1132
|
-
});
|
|
1133
|
-
export const DescribeFlowExecutionRecordsRequestFilterSensitiveLog = (obj) => ({
|
|
1134
|
-
...obj,
|
|
1135
|
-
});
|
|
1136
|
-
export const ErrorInfoFilterSensitiveLog = (obj) => ({
|
|
1137
|
-
...obj,
|
|
1138
|
-
});
|
|
1139
|
-
export const ExecutionResultFilterSensitiveLog = (obj) => ({
|
|
1140
|
-
...obj,
|
|
1141
|
-
});
|
|
1142
|
-
export const ExecutionRecordFilterSensitiveLog = (obj) => ({
|
|
1143
|
-
...obj,
|
|
1144
|
-
});
|
|
1145
|
-
export const DescribeFlowExecutionRecordsResponseFilterSensitiveLog = (obj) => ({
|
|
1146
|
-
...obj,
|
|
1147
|
-
});
|
|
1148
|
-
export const FlowDefinitionFilterSensitiveLog = (obj) => ({
|
|
1149
|
-
...obj,
|
|
1150
|
-
});
|
|
1151
|
-
export const ListConnectorEntitiesRequestFilterSensitiveLog = (obj) => ({
|
|
1152
|
-
...obj,
|
|
1153
|
-
});
|
|
1154
|
-
export const ListConnectorEntitiesResponseFilterSensitiveLog = (obj) => ({
|
|
1155
|
-
...obj,
|
|
1156
|
-
});
|
|
1157
|
-
export const ListConnectorsRequestFilterSensitiveLog = (obj) => ({
|
|
1158
|
-
...obj,
|
|
1159
|
-
});
|
|
1160
|
-
export const ListConnectorsResponseFilterSensitiveLog = (obj) => ({
|
|
1161
|
-
...obj,
|
|
1162
|
-
});
|
|
1163
|
-
export const ListFlowsRequestFilterSensitiveLog = (obj) => ({
|
|
1164
|
-
...obj,
|
|
1165
|
-
});
|
|
1166
|
-
export const ListFlowsResponseFilterSensitiveLog = (obj) => ({
|
|
1167
|
-
...obj,
|
|
1168
|
-
});
|
|
1169
|
-
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
1170
|
-
...obj,
|
|
1171
|
-
});
|
|
1172
|
-
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
1173
|
-
...obj,
|
|
1174
|
-
});
|
|
1175
|
-
export const RegisterConnectorRequestFilterSensitiveLog = (obj) => ({
|
|
1176
|
-
...obj,
|
|
1177
|
-
});
|
|
1178
|
-
export const RegisterConnectorResponseFilterSensitiveLog = (obj) => ({
|
|
1179
|
-
...obj,
|
|
1180
|
-
});
|
|
1181
|
-
export const StartFlowRequestFilterSensitiveLog = (obj) => ({
|
|
1182
|
-
...obj,
|
|
1183
|
-
});
|
|
1184
|
-
export const StartFlowResponseFilterSensitiveLog = (obj) => ({
|
|
1185
|
-
...obj,
|
|
1186
|
-
});
|
|
1187
|
-
export const StopFlowRequestFilterSensitiveLog = (obj) => ({
|
|
1188
|
-
...obj,
|
|
1189
|
-
});
|
|
1190
|
-
export const StopFlowResponseFilterSensitiveLog = (obj) => ({
|
|
1191
|
-
...obj,
|
|
1192
|
-
});
|
|
1193
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
1194
|
-
...obj,
|
|
1195
|
-
});
|
|
1196
|
-
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
1197
|
-
...obj,
|
|
1198
|
-
});
|
|
1199
|
-
export const UnregisterConnectorRequestFilterSensitiveLog = (obj) => ({
|
|
1200
|
-
...obj,
|
|
1201
|
-
});
|
|
1202
|
-
export const UnregisterConnectorResponseFilterSensitiveLog = (obj) => ({
|
|
1203
|
-
...obj,
|
|
1204
|
-
});
|
|
1205
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
1206
|
-
...obj,
|
|
1207
|
-
});
|
|
1208
|
-
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
1209
|
-
...obj,
|
|
1210
|
-
});
|
|
1211
|
-
export const UpdateConnectorProfileRequestFilterSensitiveLog = (obj) => ({
|
|
1212
|
-
...obj,
|
|
1213
|
-
});
|
|
1214
|
-
export const UpdateConnectorProfileResponseFilterSensitiveLog = (obj) => ({
|
|
1215
|
-
...obj,
|
|
1216
|
-
});
|
|
1217
|
-
export const UpdateFlowRequestFilterSensitiveLog = (obj) => ({
|
|
1218
|
-
...obj,
|
|
1219
|
-
});
|
|
1220
|
-
export const UpdateFlowResponseFilterSensitiveLog = (obj) => ({
|
|
1221
|
-
...obj,
|
|
1222
|
-
});
|
|
611
|
+
return UnsupportedOperationException;
|
|
612
|
+
}(__BaseException));
|
|
613
|
+
export { UnsupportedOperationException };
|
|
614
|
+
export var AggregationConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
615
|
+
export var AmplitudeConnectorProfileCredentialsFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.apiKey && { apiKey: SENSITIVE_STRING })), (obj.secretKey && { secretKey: SENSITIVE_STRING }))); };
|
|
616
|
+
export var AmplitudeConnectorProfilePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
617
|
+
export var AmplitudeMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
618
|
+
export var AmplitudeSourcePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
619
|
+
export var ApiKeyCredentialsFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.apiKey && { apiKey: SENSITIVE_STRING })), (obj.apiSecretKey && { apiSecretKey: SENSITIVE_STRING }))); };
|
|
620
|
+
export var AuthParameterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
621
|
+
export var CustomAuthConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
622
|
+
export var OAuth2CustomParameterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
623
|
+
export var OAuth2DefaultsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
624
|
+
export var AuthenticationConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
625
|
+
export var BasicAuthCredentialsFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.password && { password: SENSITIVE_STRING }))); };
|
|
626
|
+
export var CustomerProfilesMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
627
|
+
export var DatadogMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
628
|
+
export var DynatraceMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
629
|
+
export var EventBridgeMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
630
|
+
export var GoogleAnalyticsMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
631
|
+
export var HoneycodeMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
632
|
+
export var InforNexusMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
633
|
+
export var MarketoMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
634
|
+
export var RedshiftMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
635
|
+
export var S3MetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
636
|
+
export var SalesforceMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
637
|
+
export var SAPODataMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
638
|
+
export var ServiceNowMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
639
|
+
export var SingularMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
640
|
+
export var SlackMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
641
|
+
export var SnowflakeMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
642
|
+
export var TrendmicroMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
643
|
+
export var UpsolverMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
644
|
+
export var VeevaMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
645
|
+
export var ZendeskMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
646
|
+
export var ConnectorMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
647
|
+
export var LambdaConnectorProvisioningConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
648
|
+
export var ConnectorProvisioningConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
649
|
+
export var ConnectorRuntimeSettingFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
650
|
+
export var ConnectorConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
651
|
+
export var ConnectorDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
652
|
+
export var ConnectorEntityFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
653
|
+
export var DestinationFieldPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
654
|
+
export var SourceFieldPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
655
|
+
export var RangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
656
|
+
export var FieldTypeDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
657
|
+
export var SupportedFieldTypeDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
658
|
+
export var ConnectorEntityFieldFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
659
|
+
export var ConnectorOAuthRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
660
|
+
export var ConnectorOperatorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
661
|
+
export var OAuth2PropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
662
|
+
export var CustomConnectorProfilePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
663
|
+
export var DatadogConnectorProfilePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
664
|
+
export var DynatraceConnectorProfilePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
665
|
+
export var GoogleAnalyticsConnectorProfilePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
666
|
+
export var HoneycodeConnectorProfilePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
667
|
+
export var InforNexusConnectorProfilePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
668
|
+
export var MarketoConnectorProfilePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
669
|
+
export var RedshiftConnectorProfilePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
670
|
+
export var SalesforceConnectorProfilePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
671
|
+
export var OAuthPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
672
|
+
export var SAPODataConnectorProfilePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
673
|
+
export var ServiceNowConnectorProfilePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
674
|
+
export var SingularConnectorProfilePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
675
|
+
export var SlackConnectorProfilePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
676
|
+
export var SnowflakeConnectorProfilePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
677
|
+
export var TrendmicroConnectorProfilePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
678
|
+
export var VeevaConnectorProfilePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
679
|
+
export var ZendeskConnectorProfilePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
680
|
+
export var ConnectorProfilePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
681
|
+
export var PrivateConnectionProvisioningStateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
682
|
+
export var ConnectorProfileFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
683
|
+
export var CustomAuthCredentialsFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.credentialsMap && { credentialsMap: SENSITIVE_STRING }))); };
|
|
684
|
+
export var OAuth2CredentialsFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.clientSecret && { clientSecret: SENSITIVE_STRING })), (obj.accessToken && { accessToken: SENSITIVE_STRING }))); };
|
|
685
|
+
export var CustomConnectorProfileCredentialsFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign({}, obj), (obj.basic && { basic: BasicAuthCredentialsFilterSensitiveLog(obj.basic) })), (obj.oauth2 && { oauth2: OAuth2CredentialsFilterSensitiveLog(obj.oauth2) })), (obj.apiKey && { apiKey: ApiKeyCredentialsFilterSensitiveLog(obj.apiKey) })), (obj.custom && { custom: CustomAuthCredentialsFilterSensitiveLog(obj.custom) }))); };
|
|
686
|
+
export var DatadogConnectorProfileCredentialsFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.apiKey && { apiKey: SENSITIVE_STRING }))); };
|
|
687
|
+
export var DynatraceConnectorProfileCredentialsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
688
|
+
export var GoogleAnalyticsConnectorProfileCredentialsFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.clientSecret && { clientSecret: SENSITIVE_STRING })), (obj.accessToken && { accessToken: SENSITIVE_STRING }))); };
|
|
689
|
+
export var HoneycodeConnectorProfileCredentialsFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.accessToken && { accessToken: SENSITIVE_STRING }))); };
|
|
690
|
+
export var InforNexusConnectorProfileCredentialsFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.accessKeyId && { accessKeyId: SENSITIVE_STRING }))); };
|
|
691
|
+
export var MarketoConnectorProfileCredentialsFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.clientSecret && { clientSecret: SENSITIVE_STRING })), (obj.accessToken && { accessToken: SENSITIVE_STRING }))); };
|
|
692
|
+
export var RedshiftConnectorProfileCredentialsFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.password && { password: SENSITIVE_STRING }))); };
|
|
693
|
+
export var SalesforceConnectorProfileCredentialsFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.accessToken && { accessToken: SENSITIVE_STRING })), (obj.clientCredentialsArn && { clientCredentialsArn: SENSITIVE_STRING }))); };
|
|
694
|
+
export var OAuthCredentialsFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.clientSecret && { clientSecret: SENSITIVE_STRING })), (obj.accessToken && { accessToken: SENSITIVE_STRING }))); };
|
|
695
|
+
export var SAPODataConnectorProfileCredentialsFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.basicAuthCredentials && {
|
|
696
|
+
basicAuthCredentials: BasicAuthCredentialsFilterSensitiveLog(obj.basicAuthCredentials),
|
|
697
|
+
})), (obj.oAuthCredentials && { oAuthCredentials: OAuthCredentialsFilterSensitiveLog(obj.oAuthCredentials) }))); };
|
|
698
|
+
export var ServiceNowConnectorProfileCredentialsFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.password && { password: SENSITIVE_STRING }))); };
|
|
699
|
+
export var SingularConnectorProfileCredentialsFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.apiKey && { apiKey: SENSITIVE_STRING }))); };
|
|
700
|
+
export var SlackConnectorProfileCredentialsFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.clientSecret && { clientSecret: SENSITIVE_STRING })), (obj.accessToken && { accessToken: SENSITIVE_STRING }))); };
|
|
701
|
+
export var SnowflakeConnectorProfileCredentialsFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.password && { password: SENSITIVE_STRING }))); };
|
|
702
|
+
export var TrendmicroConnectorProfileCredentialsFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.apiSecretKey && { apiSecretKey: SENSITIVE_STRING }))); };
|
|
703
|
+
export var VeevaConnectorProfileCredentialsFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.password && { password: SENSITIVE_STRING }))); };
|
|
704
|
+
export var ZendeskConnectorProfileCredentialsFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.clientSecret && { clientSecret: SENSITIVE_STRING })), (obj.accessToken && { accessToken: SENSITIVE_STRING }))); };
|
|
705
|
+
export var ConnectorProfileCredentialsFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, obj), (obj.Amplitude && { Amplitude: AmplitudeConnectorProfileCredentialsFilterSensitiveLog(obj.Amplitude) })), (obj.Datadog && { Datadog: DatadogConnectorProfileCredentialsFilterSensitiveLog(obj.Datadog) })), (obj.GoogleAnalytics && {
|
|
706
|
+
GoogleAnalytics: GoogleAnalyticsConnectorProfileCredentialsFilterSensitiveLog(obj.GoogleAnalytics),
|
|
707
|
+
})), (obj.Honeycode && { Honeycode: HoneycodeConnectorProfileCredentialsFilterSensitiveLog(obj.Honeycode) })), (obj.InforNexus && { InforNexus: InforNexusConnectorProfileCredentialsFilterSensitiveLog(obj.InforNexus) })), (obj.Marketo && { Marketo: MarketoConnectorProfileCredentialsFilterSensitiveLog(obj.Marketo) })), (obj.Redshift && { Redshift: RedshiftConnectorProfileCredentialsFilterSensitiveLog(obj.Redshift) })), (obj.Salesforce && { Salesforce: SalesforceConnectorProfileCredentialsFilterSensitiveLog(obj.Salesforce) })), (obj.ServiceNow && { ServiceNow: ServiceNowConnectorProfileCredentialsFilterSensitiveLog(obj.ServiceNow) })), (obj.Singular && { Singular: SingularConnectorProfileCredentialsFilterSensitiveLog(obj.Singular) })), (obj.Slack && { Slack: SlackConnectorProfileCredentialsFilterSensitiveLog(obj.Slack) })), (obj.Snowflake && { Snowflake: SnowflakeConnectorProfileCredentialsFilterSensitiveLog(obj.Snowflake) })), (obj.Trendmicro && { Trendmicro: TrendmicroConnectorProfileCredentialsFilterSensitiveLog(obj.Trendmicro) })), (obj.Veeva && { Veeva: VeevaConnectorProfileCredentialsFilterSensitiveLog(obj.Veeva) })), (obj.Zendesk && { Zendesk: ZendeskConnectorProfileCredentialsFilterSensitiveLog(obj.Zendesk) })), (obj.SAPOData && { SAPOData: SAPODataConnectorProfileCredentialsFilterSensitiveLog(obj.SAPOData) })), (obj.CustomConnector && {
|
|
708
|
+
CustomConnector: CustomConnectorProfileCredentialsFilterSensitiveLog(obj.CustomConnector),
|
|
709
|
+
}))); };
|
|
710
|
+
export var ConnectorProfileConfigFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.connectorProfileCredentials && {
|
|
711
|
+
connectorProfileCredentials: ConnectorProfileCredentialsFilterSensitiveLog(obj.connectorProfileCredentials),
|
|
712
|
+
}))); };
|
|
713
|
+
export var CreateConnectorProfileRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
714
|
+
export var CreateConnectorProfileResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
715
|
+
export var ErrorHandlingConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
716
|
+
export var CustomConnectorDestinationPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
717
|
+
export var CustomerProfilesDestinationPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
718
|
+
export var EventBridgeDestinationPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
719
|
+
export var HoneycodeDestinationPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
720
|
+
export var LookoutMetricsDestinationPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
721
|
+
export var MarketoDestinationPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
722
|
+
export var RedshiftDestinationPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
723
|
+
export var PrefixConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
724
|
+
export var S3OutputFormatConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
725
|
+
export var S3DestinationPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
726
|
+
export var SalesforceDestinationPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
727
|
+
export var SuccessResponseHandlingConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
728
|
+
export var SAPODataDestinationPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
729
|
+
export var SnowflakeDestinationPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
730
|
+
export var UpsolverS3OutputFormatConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
731
|
+
export var UpsolverDestinationPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
732
|
+
export var ZendeskDestinationPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
733
|
+
export var DestinationConnectorPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
734
|
+
export var DestinationFlowConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
735
|
+
export var IncrementalPullConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
736
|
+
export var CustomConnectorSourcePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
737
|
+
export var DatadogSourcePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
738
|
+
export var DynatraceSourcePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
739
|
+
export var GoogleAnalyticsSourcePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
740
|
+
export var InforNexusSourcePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
741
|
+
export var MarketoSourcePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
742
|
+
export var S3InputFormatConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
743
|
+
export var S3SourcePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
744
|
+
export var SalesforceSourcePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
745
|
+
export var SAPODataSourcePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
746
|
+
export var ServiceNowSourcePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
747
|
+
export var SingularSourcePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
748
|
+
export var SlackSourcePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
749
|
+
export var TrendmicroSourcePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
750
|
+
export var VeevaSourcePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
751
|
+
export var ZendeskSourcePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
752
|
+
export var SourceConnectorPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
753
|
+
export var SourceFlowConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
754
|
+
export var TaskFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
755
|
+
export var ScheduledTriggerPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
756
|
+
export var TriggerPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
757
|
+
export var TriggerConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
758
|
+
export var CreateFlowRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
759
|
+
export var CreateFlowResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
760
|
+
export var DeleteConnectorProfileRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
761
|
+
export var DeleteConnectorProfileResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
762
|
+
export var DeleteFlowRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
763
|
+
export var DeleteFlowResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
764
|
+
export var DescribeConnectorRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
765
|
+
export var DescribeConnectorResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
766
|
+
export var DescribeConnectorEntityRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
767
|
+
export var DescribeConnectorEntityResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
768
|
+
export var DescribeConnectorProfilesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
769
|
+
export var DescribeConnectorProfilesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
770
|
+
export var DescribeConnectorsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
771
|
+
export var DescribeConnectorsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
772
|
+
export var DescribeFlowRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
773
|
+
export var ExecutionDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
774
|
+
export var DescribeFlowResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
775
|
+
export var DescribeFlowExecutionRecordsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
776
|
+
export var ErrorInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
777
|
+
export var ExecutionResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
778
|
+
export var ExecutionRecordFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
779
|
+
export var DescribeFlowExecutionRecordsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
780
|
+
export var FlowDefinitionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
781
|
+
export var ListConnectorEntitiesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
782
|
+
export var ListConnectorEntitiesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
783
|
+
export var ListConnectorsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
784
|
+
export var ListConnectorsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
785
|
+
export var ListFlowsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
786
|
+
export var ListFlowsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
787
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
788
|
+
export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
789
|
+
export var RegisterConnectorRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
790
|
+
export var RegisterConnectorResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
791
|
+
export var StartFlowRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
792
|
+
export var StartFlowResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
793
|
+
export var StopFlowRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
794
|
+
export var StopFlowResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
795
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
796
|
+
export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
797
|
+
export var UnregisterConnectorRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
798
|
+
export var UnregisterConnectorResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
799
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
800
|
+
export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
801
|
+
export var UpdateConnectorProfileRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
802
|
+
export var UpdateConnectorProfileResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
803
|
+
export var UpdateFlowRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
804
|
+
export var UpdateFlowResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|