@aws-sdk/client-amplify 3.131.0 → 3.142.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 +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/CreateAppCommand.js +2 -2
- package/dist-cjs/commands/CreateBackendEnvironmentCommand.js +2 -2
- package/dist-cjs/commands/CreateBranchCommand.js +2 -2
- package/dist-cjs/commands/CreateDeploymentCommand.js +2 -2
- package/dist-cjs/commands/CreateDomainAssociationCommand.js +2 -2
- package/dist-cjs/commands/CreateWebhookCommand.js +2 -2
- package/dist-cjs/commands/DeleteAppCommand.js +2 -2
- package/dist-cjs/commands/DeleteBackendEnvironmentCommand.js +2 -2
- package/dist-cjs/commands/DeleteBranchCommand.js +2 -2
- package/dist-cjs/commands/DeleteDomainAssociationCommand.js +2 -2
- package/dist-cjs/commands/DeleteJobCommand.js +2 -2
- package/dist-cjs/commands/DeleteWebhookCommand.js +2 -2
- package/dist-cjs/commands/GenerateAccessLogsCommand.js +2 -2
- package/dist-cjs/commands/GetAppCommand.js +2 -2
- package/dist-cjs/commands/GetArtifactUrlCommand.js +2 -2
- package/dist-cjs/commands/GetBackendEnvironmentCommand.js +2 -2
- package/dist-cjs/commands/GetBranchCommand.js +2 -2
- package/dist-cjs/commands/GetDomainAssociationCommand.js +2 -2
- package/dist-cjs/commands/GetJobCommand.js +2 -2
- package/dist-cjs/commands/GetWebhookCommand.js +2 -2
- package/dist-cjs/commands/ListAppsCommand.js +2 -2
- package/dist-cjs/commands/ListArtifactsCommand.js +2 -2
- package/dist-cjs/commands/ListBackendEnvironmentsCommand.js +2 -2
- package/dist-cjs/commands/ListBranchesCommand.js +2 -2
- package/dist-cjs/commands/ListDomainAssociationsCommand.js +2 -2
- package/dist-cjs/commands/ListJobsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/ListWebhooksCommand.js +2 -2
- package/dist-cjs/commands/StartDeploymentCommand.js +2 -2
- package/dist-cjs/commands/StartJobCommand.js +2 -2
- package/dist-cjs/commands/StopJobCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateAppCommand.js +2 -2
- package/dist-cjs/commands/UpdateBranchCommand.js +2 -2
- package/dist-cjs/commands/UpdateDomainAssociationCommand.js +2 -2
- package/dist-cjs/commands/UpdateWebhookCommand.js +2 -2
- package/dist-cjs/models/models_0.js +392 -568
- package/dist-cjs/protocols/Aws_restJson1.js +444 -1106
- package/dist-es/commands/CreateAppCommand.js +3 -3
- package/dist-es/commands/CreateBackendEnvironmentCommand.js +3 -3
- package/dist-es/commands/CreateBranchCommand.js +3 -3
- package/dist-es/commands/CreateDeploymentCommand.js +3 -3
- package/dist-es/commands/CreateDomainAssociationCommand.js +3 -3
- package/dist-es/commands/CreateWebhookCommand.js +3 -3
- package/dist-es/commands/DeleteAppCommand.js +3 -3
- package/dist-es/commands/DeleteBackendEnvironmentCommand.js +3 -3
- package/dist-es/commands/DeleteBranchCommand.js +3 -3
- package/dist-es/commands/DeleteDomainAssociationCommand.js +3 -3
- package/dist-es/commands/DeleteJobCommand.js +3 -3
- package/dist-es/commands/DeleteWebhookCommand.js +3 -3
- package/dist-es/commands/GenerateAccessLogsCommand.js +3 -3
- package/dist-es/commands/GetAppCommand.js +3 -3
- package/dist-es/commands/GetArtifactUrlCommand.js +3 -3
- package/dist-es/commands/GetBackendEnvironmentCommand.js +3 -3
- package/dist-es/commands/GetBranchCommand.js +3 -3
- package/dist-es/commands/GetDomainAssociationCommand.js +3 -3
- package/dist-es/commands/GetJobCommand.js +3 -3
- package/dist-es/commands/GetWebhookCommand.js +3 -3
- package/dist-es/commands/ListAppsCommand.js +3 -3
- package/dist-es/commands/ListArtifactsCommand.js +3 -3
- package/dist-es/commands/ListBackendEnvironmentsCommand.js +3 -3
- package/dist-es/commands/ListBranchesCommand.js +3 -3
- package/dist-es/commands/ListDomainAssociationsCommand.js +3 -3
- package/dist-es/commands/ListJobsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/ListWebhooksCommand.js +3 -3
- package/dist-es/commands/StartDeploymentCommand.js +3 -3
- package/dist-es/commands/StartJobCommand.js +3 -3
- package/dist-es/commands/StopJobCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateAppCommand.js +3 -3
- package/dist-es/commands/UpdateBranchCommand.js +3 -3
- package/dist-es/commands/UpdateDomainAssociationCommand.js +3 -3
- package/dist-es/commands/UpdateWebhookCommand.js +3 -3
- package/dist-es/models/models_0.js +94 -358
- package/dist-es/protocols/Aws_restJson1.js +591 -1118
- package/dist-types/models/models_0.d.ts +352 -528
- package/dist-types/ts3.4/models/models_0.d.ts +176 -352
- package/package.json +6 -6
|
@@ -68,12 +68,6 @@ export interface AutoBranchCreationConfig {
|
|
|
68
68
|
*/
|
|
69
69
|
pullRequestEnvironmentName?: string;
|
|
70
70
|
}
|
|
71
|
-
export declare namespace AutoBranchCreationConfig {
|
|
72
|
-
/**
|
|
73
|
-
* @internal
|
|
74
|
-
*/
|
|
75
|
-
const filterSensitiveLog: (obj: AutoBranchCreationConfig) => any;
|
|
76
|
-
}
|
|
77
71
|
/**
|
|
78
72
|
* <p> Describes a custom rewrite or redirect rule. </p>
|
|
79
73
|
*/
|
|
@@ -119,12 +113,6 @@ export interface CustomRule {
|
|
|
119
113
|
*/
|
|
120
114
|
condition?: string;
|
|
121
115
|
}
|
|
122
|
-
export declare namespace CustomRule {
|
|
123
|
-
/**
|
|
124
|
-
* @internal
|
|
125
|
-
*/
|
|
126
|
-
const filterSensitiveLog: (obj: CustomRule) => any;
|
|
127
|
-
}
|
|
128
116
|
export declare enum Platform {
|
|
129
117
|
WEB = "WEB",
|
|
130
118
|
WEB_DYNAMIC = "WEB_DYNAMIC"
|
|
@@ -235,12 +223,6 @@ export interface CreateAppRequest {
|
|
|
235
223
|
*/
|
|
236
224
|
autoBranchCreationConfig?: AutoBranchCreationConfig;
|
|
237
225
|
}
|
|
238
|
-
export declare namespace CreateAppRequest {
|
|
239
|
-
/**
|
|
240
|
-
* @internal
|
|
241
|
-
*/
|
|
242
|
-
const filterSensitiveLog: (obj: CreateAppRequest) => any;
|
|
243
|
-
}
|
|
244
226
|
/**
|
|
245
227
|
* <p> Describes the information about a production branch for an Amplify app. </p>
|
|
246
228
|
*/
|
|
@@ -262,12 +244,6 @@ export interface ProductionBranch {
|
|
|
262
244
|
*/
|
|
263
245
|
branchName?: string;
|
|
264
246
|
}
|
|
265
|
-
export declare namespace ProductionBranch {
|
|
266
|
-
/**
|
|
267
|
-
* @internal
|
|
268
|
-
*/
|
|
269
|
-
const filterSensitiveLog: (obj: ProductionBranch) => any;
|
|
270
|
-
}
|
|
271
247
|
export declare enum RepositoryCloneMethod {
|
|
272
248
|
SIGV4 = "SIGV4",
|
|
273
249
|
SSH = "SSH",
|
|
@@ -386,12 +362,6 @@ export interface App {
|
|
|
386
362
|
*/
|
|
387
363
|
repositoryCloneMethod?: RepositoryCloneMethod | string;
|
|
388
364
|
}
|
|
389
|
-
export declare namespace App {
|
|
390
|
-
/**
|
|
391
|
-
* @internal
|
|
392
|
-
*/
|
|
393
|
-
const filterSensitiveLog: (obj: App) => any;
|
|
394
|
-
}
|
|
395
365
|
export interface CreateAppResult {
|
|
396
366
|
/**
|
|
397
367
|
* <p> Represents the different branches of a repository for building, deploying, and
|
|
@@ -399,12 +369,6 @@ export interface CreateAppResult {
|
|
|
399
369
|
*/
|
|
400
370
|
app: App | undefined;
|
|
401
371
|
}
|
|
402
|
-
export declare namespace CreateAppResult {
|
|
403
|
-
/**
|
|
404
|
-
* @internal
|
|
405
|
-
*/
|
|
406
|
-
const filterSensitiveLog: (obj: CreateAppResult) => any;
|
|
407
|
-
}
|
|
408
372
|
/**
|
|
409
373
|
* <p> An operation failed because a dependent service threw an exception. </p>
|
|
410
374
|
*/
|
|
@@ -470,12 +434,6 @@ export interface CreateBackendEnvironmentRequest {
|
|
|
470
434
|
*/
|
|
471
435
|
deploymentArtifacts?: string;
|
|
472
436
|
}
|
|
473
|
-
export declare namespace CreateBackendEnvironmentRequest {
|
|
474
|
-
/**
|
|
475
|
-
* @internal
|
|
476
|
-
*/
|
|
477
|
-
const filterSensitiveLog: (obj: CreateBackendEnvironmentRequest) => any;
|
|
478
|
-
}
|
|
479
437
|
/**
|
|
480
438
|
* <p> Describes the backend environment for an Amplify app. </p>
|
|
481
439
|
*/
|
|
@@ -508,12 +466,6 @@ export interface BackendEnvironment {
|
|
|
508
466
|
*/
|
|
509
467
|
updateTime: Date | undefined;
|
|
510
468
|
}
|
|
511
|
-
export declare namespace BackendEnvironment {
|
|
512
|
-
/**
|
|
513
|
-
* @internal
|
|
514
|
-
*/
|
|
515
|
-
const filterSensitiveLog: (obj: BackendEnvironment) => any;
|
|
516
|
-
}
|
|
517
469
|
/**
|
|
518
470
|
* <p> The result structure for the create backend environment request. </p>
|
|
519
471
|
*/
|
|
@@ -523,12 +475,6 @@ export interface CreateBackendEnvironmentResult {
|
|
|
523
475
|
*/
|
|
524
476
|
backendEnvironment: BackendEnvironment | undefined;
|
|
525
477
|
}
|
|
526
|
-
export declare namespace CreateBackendEnvironmentResult {
|
|
527
|
-
/**
|
|
528
|
-
* @internal
|
|
529
|
-
*/
|
|
530
|
-
const filterSensitiveLog: (obj: CreateBackendEnvironmentResult) => any;
|
|
531
|
-
}
|
|
532
478
|
/**
|
|
533
479
|
* <p> An entity was not found during an operation. </p>
|
|
534
480
|
*/
|
|
@@ -623,12 +569,6 @@ export interface CreateBranchRequest {
|
|
|
623
569
|
*/
|
|
624
570
|
backendEnvironmentArn?: string;
|
|
625
571
|
}
|
|
626
|
-
export declare namespace CreateBranchRequest {
|
|
627
|
-
/**
|
|
628
|
-
* @internal
|
|
629
|
-
*/
|
|
630
|
-
const filterSensitiveLog: (obj: CreateBranchRequest) => any;
|
|
631
|
-
}
|
|
632
572
|
/**
|
|
633
573
|
* <p> The branch for an Amplify app, which maps to a third-party repository branch. </p>
|
|
634
574
|
*/
|
|
@@ -749,12 +689,6 @@ export interface Branch {
|
|
|
749
689
|
*/
|
|
750
690
|
backendEnvironmentArn?: string;
|
|
751
691
|
}
|
|
752
|
-
export declare namespace Branch {
|
|
753
|
-
/**
|
|
754
|
-
* @internal
|
|
755
|
-
*/
|
|
756
|
-
const filterSensitiveLog: (obj: Branch) => any;
|
|
757
|
-
}
|
|
758
692
|
/**
|
|
759
693
|
* <p> The result structure for create branch request. </p>
|
|
760
694
|
*/
|
|
@@ -765,12 +699,6 @@ export interface CreateBranchResult {
|
|
|
765
699
|
*/
|
|
766
700
|
branch: Branch | undefined;
|
|
767
701
|
}
|
|
768
|
-
export declare namespace CreateBranchResult {
|
|
769
|
-
/**
|
|
770
|
-
* @internal
|
|
771
|
-
*/
|
|
772
|
-
const filterSensitiveLog: (obj: CreateBranchResult) => any;
|
|
773
|
-
}
|
|
774
702
|
/**
|
|
775
703
|
* <p> The request structure for the create a new deployment request. </p>
|
|
776
704
|
*/
|
|
@@ -791,12 +719,6 @@ export interface CreateDeploymentRequest {
|
|
|
791
719
|
*/
|
|
792
720
|
fileMap?: Record<string, string>;
|
|
793
721
|
}
|
|
794
|
-
export declare namespace CreateDeploymentRequest {
|
|
795
|
-
/**
|
|
796
|
-
* @internal
|
|
797
|
-
*/
|
|
798
|
-
const filterSensitiveLog: (obj: CreateDeploymentRequest) => any;
|
|
799
|
-
}
|
|
800
722
|
/**
|
|
801
723
|
* <p> The result structure for the create a new deployment request. </p>
|
|
802
724
|
*/
|
|
@@ -816,12 +738,6 @@ export interface CreateDeploymentResult {
|
|
|
816
738
|
*/
|
|
817
739
|
zipUploadUrl: string | undefined;
|
|
818
740
|
}
|
|
819
|
-
export declare namespace CreateDeploymentResult {
|
|
820
|
-
/**
|
|
821
|
-
* @internal
|
|
822
|
-
*/
|
|
823
|
-
const filterSensitiveLog: (obj: CreateDeploymentResult) => any;
|
|
824
|
-
}
|
|
825
741
|
/**
|
|
826
742
|
* <p> Describes the settings for the subdomain. </p>
|
|
827
743
|
*/
|
|
@@ -835,12 +751,6 @@ export interface SubDomainSetting {
|
|
|
835
751
|
*/
|
|
836
752
|
branchName: string | undefined;
|
|
837
753
|
}
|
|
838
|
-
export declare namespace SubDomainSetting {
|
|
839
|
-
/**
|
|
840
|
-
* @internal
|
|
841
|
-
*/
|
|
842
|
-
const filterSensitiveLog: (obj: SubDomainSetting) => any;
|
|
843
|
-
}
|
|
844
754
|
/**
|
|
845
755
|
* <p> The request structure for the create domain association request. </p>
|
|
846
756
|
*/
|
|
@@ -871,12 +781,6 @@ export interface CreateDomainAssociationRequest {
|
|
|
871
781
|
*/
|
|
872
782
|
autoSubDomainIAMRole?: string;
|
|
873
783
|
}
|
|
874
|
-
export declare namespace CreateDomainAssociationRequest {
|
|
875
|
-
/**
|
|
876
|
-
* @internal
|
|
877
|
-
*/
|
|
878
|
-
const filterSensitiveLog: (obj: CreateDomainAssociationRequest) => any;
|
|
879
|
-
}
|
|
880
784
|
export declare enum DomainStatus {
|
|
881
785
|
AVAILABLE = "AVAILABLE",
|
|
882
786
|
CREATING = "CREATING",
|
|
@@ -904,12 +808,6 @@ export interface SubDomain {
|
|
|
904
808
|
*/
|
|
905
809
|
dnsRecord: string | undefined;
|
|
906
810
|
}
|
|
907
|
-
export declare namespace SubDomain {
|
|
908
|
-
/**
|
|
909
|
-
* @internal
|
|
910
|
-
*/
|
|
911
|
-
const filterSensitiveLog: (obj: SubDomain) => any;
|
|
912
|
-
}
|
|
913
811
|
/**
|
|
914
812
|
* <p> Describes a domain association that associates a custom domain with an Amplify app.
|
|
915
813
|
* </p>
|
|
@@ -953,12 +851,6 @@ export interface DomainAssociation {
|
|
|
953
851
|
*/
|
|
954
852
|
subDomains: SubDomain[] | undefined;
|
|
955
853
|
}
|
|
956
|
-
export declare namespace DomainAssociation {
|
|
957
|
-
/**
|
|
958
|
-
* @internal
|
|
959
|
-
*/
|
|
960
|
-
const filterSensitiveLog: (obj: DomainAssociation) => any;
|
|
961
|
-
}
|
|
962
854
|
/**
|
|
963
855
|
* <p> The result structure for the create domain association request. </p>
|
|
964
856
|
*/
|
|
@@ -969,12 +861,6 @@ export interface CreateDomainAssociationResult {
|
|
|
969
861
|
*/
|
|
970
862
|
domainAssociation: DomainAssociation | undefined;
|
|
971
863
|
}
|
|
972
|
-
export declare namespace CreateDomainAssociationResult {
|
|
973
|
-
/**
|
|
974
|
-
* @internal
|
|
975
|
-
*/
|
|
976
|
-
const filterSensitiveLog: (obj: CreateDomainAssociationResult) => any;
|
|
977
|
-
}
|
|
978
864
|
/**
|
|
979
865
|
* <p> The request structure for the create webhook request. </p>
|
|
980
866
|
*/
|
|
@@ -992,12 +878,6 @@ export interface CreateWebhookRequest {
|
|
|
992
878
|
*/
|
|
993
879
|
description?: string;
|
|
994
880
|
}
|
|
995
|
-
export declare namespace CreateWebhookRequest {
|
|
996
|
-
/**
|
|
997
|
-
* @internal
|
|
998
|
-
*/
|
|
999
|
-
const filterSensitiveLog: (obj: CreateWebhookRequest) => any;
|
|
1000
|
-
}
|
|
1001
881
|
/**
|
|
1002
882
|
* <p> Describes a webhook that connects repository events to an Amplify app. </p>
|
|
1003
883
|
*/
|
|
@@ -1031,12 +911,6 @@ export interface Webhook {
|
|
|
1031
911
|
*/
|
|
1032
912
|
updateTime: Date | undefined;
|
|
1033
913
|
}
|
|
1034
|
-
export declare namespace Webhook {
|
|
1035
|
-
/**
|
|
1036
|
-
* @internal
|
|
1037
|
-
*/
|
|
1038
|
-
const filterSensitiveLog: (obj: Webhook) => any;
|
|
1039
|
-
}
|
|
1040
914
|
/**
|
|
1041
915
|
* <p> The result structure for the create webhook request. </p>
|
|
1042
916
|
*/
|
|
@@ -1046,12 +920,6 @@ export interface CreateWebhookResult {
|
|
|
1046
920
|
*/
|
|
1047
921
|
webhook: Webhook | undefined;
|
|
1048
922
|
}
|
|
1049
|
-
export declare namespace CreateWebhookResult {
|
|
1050
|
-
/**
|
|
1051
|
-
* @internal
|
|
1052
|
-
*/
|
|
1053
|
-
const filterSensitiveLog: (obj: CreateWebhookResult) => any;
|
|
1054
|
-
}
|
|
1055
923
|
/**
|
|
1056
924
|
* <p> Describes the request structure for the delete app request. </p>
|
|
1057
925
|
*/
|
|
@@ -1061,12 +929,6 @@ export interface DeleteAppRequest {
|
|
|
1061
929
|
*/
|
|
1062
930
|
appId: string | undefined;
|
|
1063
931
|
}
|
|
1064
|
-
export declare namespace DeleteAppRequest {
|
|
1065
|
-
/**
|
|
1066
|
-
* @internal
|
|
1067
|
-
*/
|
|
1068
|
-
const filterSensitiveLog: (obj: DeleteAppRequest) => any;
|
|
1069
|
-
}
|
|
1070
932
|
/**
|
|
1071
933
|
* <p> The result structure for the delete app request. </p>
|
|
1072
934
|
*/
|
|
@@ -1077,12 +939,6 @@ export interface DeleteAppResult {
|
|
|
1077
939
|
*/
|
|
1078
940
|
app: App | undefined;
|
|
1079
941
|
}
|
|
1080
|
-
export declare namespace DeleteAppResult {
|
|
1081
|
-
/**
|
|
1082
|
-
* @internal
|
|
1083
|
-
*/
|
|
1084
|
-
const filterSensitiveLog: (obj: DeleteAppResult) => any;
|
|
1085
|
-
}
|
|
1086
942
|
/**
|
|
1087
943
|
* <p> The request structure for the delete backend environment request. </p>
|
|
1088
944
|
*/
|
|
@@ -1096,12 +952,6 @@ export interface DeleteBackendEnvironmentRequest {
|
|
|
1096
952
|
*/
|
|
1097
953
|
environmentName: string | undefined;
|
|
1098
954
|
}
|
|
1099
|
-
export declare namespace DeleteBackendEnvironmentRequest {
|
|
1100
|
-
/**
|
|
1101
|
-
* @internal
|
|
1102
|
-
*/
|
|
1103
|
-
const filterSensitiveLog: (obj: DeleteBackendEnvironmentRequest) => any;
|
|
1104
|
-
}
|
|
1105
955
|
/**
|
|
1106
956
|
* <p> The result structure of the delete backend environment result. </p>
|
|
1107
957
|
*/
|
|
@@ -1111,12 +961,6 @@ export interface DeleteBackendEnvironmentResult {
|
|
|
1111
961
|
*/
|
|
1112
962
|
backendEnvironment: BackendEnvironment | undefined;
|
|
1113
963
|
}
|
|
1114
|
-
export declare namespace DeleteBackendEnvironmentResult {
|
|
1115
|
-
/**
|
|
1116
|
-
* @internal
|
|
1117
|
-
*/
|
|
1118
|
-
const filterSensitiveLog: (obj: DeleteBackendEnvironmentResult) => any;
|
|
1119
|
-
}
|
|
1120
964
|
/**
|
|
1121
965
|
* <p> The request structure for the delete branch request. </p>
|
|
1122
966
|
*/
|
|
@@ -1130,12 +974,6 @@ export interface DeleteBranchRequest {
|
|
|
1130
974
|
*/
|
|
1131
975
|
branchName: string | undefined;
|
|
1132
976
|
}
|
|
1133
|
-
export declare namespace DeleteBranchRequest {
|
|
1134
|
-
/**
|
|
1135
|
-
* @internal
|
|
1136
|
-
*/
|
|
1137
|
-
const filterSensitiveLog: (obj: DeleteBranchRequest) => any;
|
|
1138
|
-
}
|
|
1139
977
|
/**
|
|
1140
978
|
* <p> The result structure for the delete branch request. </p>
|
|
1141
979
|
*/
|
|
@@ -1145,12 +983,6 @@ export interface DeleteBranchResult {
|
|
|
1145
983
|
*/
|
|
1146
984
|
branch: Branch | undefined;
|
|
1147
985
|
}
|
|
1148
|
-
export declare namespace DeleteBranchResult {
|
|
1149
|
-
/**
|
|
1150
|
-
* @internal
|
|
1151
|
-
*/
|
|
1152
|
-
const filterSensitiveLog: (obj: DeleteBranchResult) => any;
|
|
1153
|
-
}
|
|
1154
986
|
/**
|
|
1155
987
|
* <p> The request structure for the delete domain association request. </p>
|
|
1156
988
|
*/
|
|
@@ -1164,12 +996,6 @@ export interface DeleteDomainAssociationRequest {
|
|
|
1164
996
|
*/
|
|
1165
997
|
domainName: string | undefined;
|
|
1166
998
|
}
|
|
1167
|
-
export declare namespace DeleteDomainAssociationRequest {
|
|
1168
|
-
/**
|
|
1169
|
-
* @internal
|
|
1170
|
-
*/
|
|
1171
|
-
const filterSensitiveLog: (obj: DeleteDomainAssociationRequest) => any;
|
|
1172
|
-
}
|
|
1173
999
|
export interface DeleteDomainAssociationResult {
|
|
1174
1000
|
/**
|
|
1175
1001
|
* <p> Describes a domain association that associates a custom domain with an Amplify app.
|
|
@@ -1177,12 +1003,6 @@ export interface DeleteDomainAssociationResult {
|
|
|
1177
1003
|
*/
|
|
1178
1004
|
domainAssociation: DomainAssociation | undefined;
|
|
1179
1005
|
}
|
|
1180
|
-
export declare namespace DeleteDomainAssociationResult {
|
|
1181
|
-
/**
|
|
1182
|
-
* @internal
|
|
1183
|
-
*/
|
|
1184
|
-
const filterSensitiveLog: (obj: DeleteDomainAssociationResult) => any;
|
|
1185
|
-
}
|
|
1186
1006
|
/**
|
|
1187
1007
|
* <p> The request structure for the delete job request. </p>
|
|
1188
1008
|
*/
|
|
@@ -1200,12 +1020,6 @@ export interface DeleteJobRequest {
|
|
|
1200
1020
|
*/
|
|
1201
1021
|
jobId: string | undefined;
|
|
1202
1022
|
}
|
|
1203
|
-
export declare namespace DeleteJobRequest {
|
|
1204
|
-
/**
|
|
1205
|
-
* @internal
|
|
1206
|
-
*/
|
|
1207
|
-
const filterSensitiveLog: (obj: DeleteJobRequest) => any;
|
|
1208
|
-
}
|
|
1209
1023
|
export declare enum JobType {
|
|
1210
1024
|
MANUAL = "MANUAL",
|
|
1211
1025
|
RELEASE = "RELEASE",
|
|
@@ -1266,12 +1080,6 @@ export interface JobSummary {
|
|
|
1266
1080
|
*/
|
|
1267
1081
|
jobType: JobType | string | undefined;
|
|
1268
1082
|
}
|
|
1269
|
-
export declare namespace JobSummary {
|
|
1270
|
-
/**
|
|
1271
|
-
* @internal
|
|
1272
|
-
*/
|
|
1273
|
-
const filterSensitiveLog: (obj: JobSummary) => any;
|
|
1274
|
-
}
|
|
1275
1083
|
/**
|
|
1276
1084
|
* <p> The result structure for the delete job request. </p>
|
|
1277
1085
|
*/
|
|
@@ -1281,12 +1089,6 @@ export interface DeleteJobResult {
|
|
|
1281
1089
|
*/
|
|
1282
1090
|
jobSummary: JobSummary | undefined;
|
|
1283
1091
|
}
|
|
1284
|
-
export declare namespace DeleteJobResult {
|
|
1285
|
-
/**
|
|
1286
|
-
* @internal
|
|
1287
|
-
*/
|
|
1288
|
-
const filterSensitiveLog: (obj: DeleteJobResult) => any;
|
|
1289
|
-
}
|
|
1290
1092
|
/**
|
|
1291
1093
|
* <p> The request structure for the delete webhook request. </p>
|
|
1292
1094
|
*/
|
|
@@ -1296,12 +1098,6 @@ export interface DeleteWebhookRequest {
|
|
|
1296
1098
|
*/
|
|
1297
1099
|
webhookId: string | undefined;
|
|
1298
1100
|
}
|
|
1299
|
-
export declare namespace DeleteWebhookRequest {
|
|
1300
|
-
/**
|
|
1301
|
-
* @internal
|
|
1302
|
-
*/
|
|
1303
|
-
const filterSensitiveLog: (obj: DeleteWebhookRequest) => any;
|
|
1304
|
-
}
|
|
1305
1101
|
/**
|
|
1306
1102
|
* <p> The result structure for the delete webhook request. </p>
|
|
1307
1103
|
*/
|
|
@@ -1311,12 +1107,6 @@ export interface DeleteWebhookResult {
|
|
|
1311
1107
|
*/
|
|
1312
1108
|
webhook: Webhook | undefined;
|
|
1313
1109
|
}
|
|
1314
|
-
export declare namespace DeleteWebhookResult {
|
|
1315
|
-
/**
|
|
1316
|
-
* @internal
|
|
1317
|
-
*/
|
|
1318
|
-
const filterSensitiveLog: (obj: DeleteWebhookResult) => any;
|
|
1319
|
-
}
|
|
1320
1110
|
/**
|
|
1321
1111
|
* <p> The request structure for the generate access logs request. </p>
|
|
1322
1112
|
*/
|
|
@@ -1340,12 +1130,6 @@ export interface GenerateAccessLogsRequest {
|
|
|
1340
1130
|
*/
|
|
1341
1131
|
appId: string | undefined;
|
|
1342
1132
|
}
|
|
1343
|
-
export declare namespace GenerateAccessLogsRequest {
|
|
1344
|
-
/**
|
|
1345
|
-
* @internal
|
|
1346
|
-
*/
|
|
1347
|
-
const filterSensitiveLog: (obj: GenerateAccessLogsRequest) => any;
|
|
1348
|
-
}
|
|
1349
1133
|
/**
|
|
1350
1134
|
* <p> The result structure for the generate access logs request. </p>
|
|
1351
1135
|
*/
|
|
@@ -1355,12 +1139,6 @@ export interface GenerateAccessLogsResult {
|
|
|
1355
1139
|
*/
|
|
1356
1140
|
logUrl?: string;
|
|
1357
1141
|
}
|
|
1358
|
-
export declare namespace GenerateAccessLogsResult {
|
|
1359
|
-
/**
|
|
1360
|
-
* @internal
|
|
1361
|
-
*/
|
|
1362
|
-
const filterSensitiveLog: (obj: GenerateAccessLogsResult) => any;
|
|
1363
|
-
}
|
|
1364
1142
|
/**
|
|
1365
1143
|
* <p> The request structure for the get app request. </p>
|
|
1366
1144
|
*/
|
|
@@ -1370,12 +1148,6 @@ export interface GetAppRequest {
|
|
|
1370
1148
|
*/
|
|
1371
1149
|
appId: string | undefined;
|
|
1372
1150
|
}
|
|
1373
|
-
export declare namespace GetAppRequest {
|
|
1374
|
-
/**
|
|
1375
|
-
* @internal
|
|
1376
|
-
*/
|
|
1377
|
-
const filterSensitiveLog: (obj: GetAppRequest) => any;
|
|
1378
|
-
}
|
|
1379
1151
|
export interface GetAppResult {
|
|
1380
1152
|
/**
|
|
1381
1153
|
* <p> Represents the different branches of a repository for building, deploying, and
|
|
@@ -1383,12 +1155,6 @@ export interface GetAppResult {
|
|
|
1383
1155
|
*/
|
|
1384
1156
|
app: App | undefined;
|
|
1385
1157
|
}
|
|
1386
|
-
export declare namespace GetAppResult {
|
|
1387
|
-
/**
|
|
1388
|
-
* @internal
|
|
1389
|
-
*/
|
|
1390
|
-
const filterSensitiveLog: (obj: GetAppResult) => any;
|
|
1391
|
-
}
|
|
1392
1158
|
/**
|
|
1393
1159
|
* <p> Returns the request structure for the get artifact request. </p>
|
|
1394
1160
|
*/
|
|
@@ -1398,12 +1164,6 @@ export interface GetArtifactUrlRequest {
|
|
|
1398
1164
|
*/
|
|
1399
1165
|
artifactId: string | undefined;
|
|
1400
1166
|
}
|
|
1401
|
-
export declare namespace GetArtifactUrlRequest {
|
|
1402
|
-
/**
|
|
1403
|
-
* @internal
|
|
1404
|
-
*/
|
|
1405
|
-
const filterSensitiveLog: (obj: GetArtifactUrlRequest) => any;
|
|
1406
|
-
}
|
|
1407
1167
|
/**
|
|
1408
1168
|
* <p> Returns the result structure for the get artifact request. </p>
|
|
1409
1169
|
*/
|
|
@@ -1417,12 +1177,6 @@ export interface GetArtifactUrlResult {
|
|
|
1417
1177
|
*/
|
|
1418
1178
|
artifactUrl: string | undefined;
|
|
1419
1179
|
}
|
|
1420
|
-
export declare namespace GetArtifactUrlResult {
|
|
1421
|
-
/**
|
|
1422
|
-
* @internal
|
|
1423
|
-
*/
|
|
1424
|
-
const filterSensitiveLog: (obj: GetArtifactUrlResult) => any;
|
|
1425
|
-
}
|
|
1426
1180
|
/**
|
|
1427
1181
|
* <p> The request structure for the get backend environment request. </p>
|
|
1428
1182
|
*/
|
|
@@ -1436,12 +1190,6 @@ export interface GetBackendEnvironmentRequest {
|
|
|
1436
1190
|
*/
|
|
1437
1191
|
environmentName: string | undefined;
|
|
1438
1192
|
}
|
|
1439
|
-
export declare namespace GetBackendEnvironmentRequest {
|
|
1440
|
-
/**
|
|
1441
|
-
* @internal
|
|
1442
|
-
*/
|
|
1443
|
-
const filterSensitiveLog: (obj: GetBackendEnvironmentRequest) => any;
|
|
1444
|
-
}
|
|
1445
1193
|
/**
|
|
1446
1194
|
* <p> The result structure for the get backend environment result. </p>
|
|
1447
1195
|
*/
|
|
@@ -1451,12 +1199,6 @@ export interface GetBackendEnvironmentResult {
|
|
|
1451
1199
|
*/
|
|
1452
1200
|
backendEnvironment: BackendEnvironment | undefined;
|
|
1453
1201
|
}
|
|
1454
|
-
export declare namespace GetBackendEnvironmentResult {
|
|
1455
|
-
/**
|
|
1456
|
-
* @internal
|
|
1457
|
-
*/
|
|
1458
|
-
const filterSensitiveLog: (obj: GetBackendEnvironmentResult) => any;
|
|
1459
|
-
}
|
|
1460
1202
|
/**
|
|
1461
1203
|
* <p> The request structure for the get branch request. </p>
|
|
1462
1204
|
*/
|
|
@@ -1470,24 +1212,12 @@ export interface GetBranchRequest {
|
|
|
1470
1212
|
*/
|
|
1471
1213
|
branchName: string | undefined;
|
|
1472
1214
|
}
|
|
1473
|
-
export declare namespace GetBranchRequest {
|
|
1474
|
-
/**
|
|
1475
|
-
* @internal
|
|
1476
|
-
*/
|
|
1477
|
-
const filterSensitiveLog: (obj: GetBranchRequest) => any;
|
|
1478
|
-
}
|
|
1479
1215
|
export interface GetBranchResult {
|
|
1480
1216
|
/**
|
|
1481
1217
|
* <p> The branch for an Amplify app, which maps to a third-party repository branch. </p>
|
|
1482
1218
|
*/
|
|
1483
1219
|
branch: Branch | undefined;
|
|
1484
1220
|
}
|
|
1485
|
-
export declare namespace GetBranchResult {
|
|
1486
|
-
/**
|
|
1487
|
-
* @internal
|
|
1488
|
-
*/
|
|
1489
|
-
const filterSensitiveLog: (obj: GetBranchResult) => any;
|
|
1490
|
-
}
|
|
1491
1221
|
/**
|
|
1492
1222
|
* <p> The request structure for the get domain association request. </p>
|
|
1493
1223
|
*/
|
|
@@ -1501,12 +1231,6 @@ export interface GetDomainAssociationRequest {
|
|
|
1501
1231
|
*/
|
|
1502
1232
|
domainName: string | undefined;
|
|
1503
1233
|
}
|
|
1504
|
-
export declare namespace GetDomainAssociationRequest {
|
|
1505
|
-
/**
|
|
1506
|
-
* @internal
|
|
1507
|
-
*/
|
|
1508
|
-
const filterSensitiveLog: (obj: GetDomainAssociationRequest) => any;
|
|
1509
|
-
}
|
|
1510
1234
|
/**
|
|
1511
1235
|
* <p> The result structure for the get domain association request. </p>
|
|
1512
1236
|
*/
|
|
@@ -1517,12 +1241,6 @@ export interface GetDomainAssociationResult {
|
|
|
1517
1241
|
*/
|
|
1518
1242
|
domainAssociation: DomainAssociation | undefined;
|
|
1519
1243
|
}
|
|
1520
|
-
export declare namespace GetDomainAssociationResult {
|
|
1521
|
-
/**
|
|
1522
|
-
* @internal
|
|
1523
|
-
*/
|
|
1524
|
-
const filterSensitiveLog: (obj: GetDomainAssociationResult) => any;
|
|
1525
|
-
}
|
|
1526
1244
|
/**
|
|
1527
1245
|
* <p> The request structure for the get job request. </p>
|
|
1528
1246
|
*/
|
|
@@ -1540,12 +1258,6 @@ export interface GetJobRequest {
|
|
|
1540
1258
|
*/
|
|
1541
1259
|
jobId: string | undefined;
|
|
1542
1260
|
}
|
|
1543
|
-
export declare namespace GetJobRequest {
|
|
1544
|
-
/**
|
|
1545
|
-
* @internal
|
|
1546
|
-
*/
|
|
1547
|
-
const filterSensitiveLog: (obj: GetJobRequest) => any;
|
|
1548
|
-
}
|
|
1549
1261
|
/**
|
|
1550
1262
|
* <p> Describes an execution step, for an execution job, for an Amplify app. </p>
|
|
1551
1263
|
*/
|
|
@@ -1596,12 +1308,6 @@ export interface Step {
|
|
|
1596
1308
|
*/
|
|
1597
1309
|
context?: string;
|
|
1598
1310
|
}
|
|
1599
|
-
export declare namespace Step {
|
|
1600
|
-
/**
|
|
1601
|
-
* @internal
|
|
1602
|
-
*/
|
|
1603
|
-
const filterSensitiveLog: (obj: Step) => any;
|
|
1604
|
-
}
|
|
1605
1311
|
/**
|
|
1606
1312
|
* <p> Describes an execution job for an Amplify app. </p>
|
|
1607
1313
|
*/
|
|
@@ -1615,24 +1321,12 @@ export interface Job {
|
|
|
1615
1321
|
*/
|
|
1616
1322
|
steps: Step[] | undefined;
|
|
1617
1323
|
}
|
|
1618
|
-
export declare namespace Job {
|
|
1619
|
-
/**
|
|
1620
|
-
* @internal
|
|
1621
|
-
*/
|
|
1622
|
-
const filterSensitiveLog: (obj: Job) => any;
|
|
1623
|
-
}
|
|
1624
1324
|
export interface GetJobResult {
|
|
1625
1325
|
/**
|
|
1626
1326
|
* <p> Describes an execution job for an Amplify app. </p>
|
|
1627
1327
|
*/
|
|
1628
1328
|
job: Job | undefined;
|
|
1629
1329
|
}
|
|
1630
|
-
export declare namespace GetJobResult {
|
|
1631
|
-
/**
|
|
1632
|
-
* @internal
|
|
1633
|
-
*/
|
|
1634
|
-
const filterSensitiveLog: (obj: GetJobResult) => any;
|
|
1635
|
-
}
|
|
1636
1330
|
/**
|
|
1637
1331
|
* <p> The request structure for the get webhook request. </p>
|
|
1638
1332
|
*/
|
|
@@ -1642,12 +1336,6 @@ export interface GetWebhookRequest {
|
|
|
1642
1336
|
*/
|
|
1643
1337
|
webhookId: string | undefined;
|
|
1644
1338
|
}
|
|
1645
|
-
export declare namespace GetWebhookRequest {
|
|
1646
|
-
/**
|
|
1647
|
-
* @internal
|
|
1648
|
-
*/
|
|
1649
|
-
const filterSensitiveLog: (obj: GetWebhookRequest) => any;
|
|
1650
|
-
}
|
|
1651
1339
|
/**
|
|
1652
1340
|
* <p> The result structure for the get webhook request. </p>
|
|
1653
1341
|
*/
|
|
@@ -1657,12 +1345,6 @@ export interface GetWebhookResult {
|
|
|
1657
1345
|
*/
|
|
1658
1346
|
webhook: Webhook | undefined;
|
|
1659
1347
|
}
|
|
1660
|
-
export declare namespace GetWebhookResult {
|
|
1661
|
-
/**
|
|
1662
|
-
* @internal
|
|
1663
|
-
*/
|
|
1664
|
-
const filterSensitiveLog: (obj: GetWebhookResult) => any;
|
|
1665
|
-
}
|
|
1666
1348
|
/**
|
|
1667
1349
|
* <p> The request structure for the list apps request. </p>
|
|
1668
1350
|
*/
|
|
@@ -1677,12 +1359,6 @@ export interface ListAppsRequest {
|
|
|
1677
1359
|
*/
|
|
1678
1360
|
maxResults?: number;
|
|
1679
1361
|
}
|
|
1680
|
-
export declare namespace ListAppsRequest {
|
|
1681
|
-
/**
|
|
1682
|
-
* @internal
|
|
1683
|
-
*/
|
|
1684
|
-
const filterSensitiveLog: (obj: ListAppsRequest) => any;
|
|
1685
|
-
}
|
|
1686
1362
|
/**
|
|
1687
1363
|
* <p> The result structure for an Amplify app list request. </p>
|
|
1688
1364
|
*/
|
|
@@ -1698,12 +1374,6 @@ export interface ListAppsResult {
|
|
|
1698
1374
|
*/
|
|
1699
1375
|
nextToken?: string;
|
|
1700
1376
|
}
|
|
1701
|
-
export declare namespace ListAppsResult {
|
|
1702
|
-
/**
|
|
1703
|
-
* @internal
|
|
1704
|
-
*/
|
|
1705
|
-
const filterSensitiveLog: (obj: ListAppsResult) => any;
|
|
1706
|
-
}
|
|
1707
1377
|
/**
|
|
1708
1378
|
* <p> Describes the request structure for the list artifacts request. </p>
|
|
1709
1379
|
*/
|
|
@@ -1731,12 +1401,6 @@ export interface ListArtifactsRequest {
|
|
|
1731
1401
|
*/
|
|
1732
1402
|
maxResults?: number;
|
|
1733
1403
|
}
|
|
1734
|
-
export declare namespace ListArtifactsRequest {
|
|
1735
|
-
/**
|
|
1736
|
-
* @internal
|
|
1737
|
-
*/
|
|
1738
|
-
const filterSensitiveLog: (obj: ListArtifactsRequest) => any;
|
|
1739
|
-
}
|
|
1740
1404
|
/**
|
|
1741
1405
|
* <p> Describes an artifact. </p>
|
|
1742
1406
|
*/
|
|
@@ -1750,12 +1414,6 @@ export interface Artifact {
|
|
|
1750
1414
|
*/
|
|
1751
1415
|
artifactId: string | undefined;
|
|
1752
1416
|
}
|
|
1753
|
-
export declare namespace Artifact {
|
|
1754
|
-
/**
|
|
1755
|
-
* @internal
|
|
1756
|
-
*/
|
|
1757
|
-
const filterSensitiveLog: (obj: Artifact) => any;
|
|
1758
|
-
}
|
|
1759
1417
|
/**
|
|
1760
1418
|
* <p> The result structure for the list artifacts request. </p>
|
|
1761
1419
|
*/
|
|
@@ -1770,12 +1428,6 @@ export interface ListArtifactsResult {
|
|
|
1770
1428
|
*/
|
|
1771
1429
|
nextToken?: string;
|
|
1772
1430
|
}
|
|
1773
|
-
export declare namespace ListArtifactsResult {
|
|
1774
|
-
/**
|
|
1775
|
-
* @internal
|
|
1776
|
-
*/
|
|
1777
|
-
const filterSensitiveLog: (obj: ListArtifactsResult) => any;
|
|
1778
|
-
}
|
|
1779
1431
|
/**
|
|
1780
1432
|
* <p> The request structure for the list backend environments request. </p>
|
|
1781
1433
|
*/
|
|
@@ -1799,12 +1451,6 @@ export interface ListBackendEnvironmentsRequest {
|
|
|
1799
1451
|
*/
|
|
1800
1452
|
maxResults?: number;
|
|
1801
1453
|
}
|
|
1802
|
-
export declare namespace ListBackendEnvironmentsRequest {
|
|
1803
|
-
/**
|
|
1804
|
-
* @internal
|
|
1805
|
-
*/
|
|
1806
|
-
const filterSensitiveLog: (obj: ListBackendEnvironmentsRequest) => any;
|
|
1807
|
-
}
|
|
1808
1454
|
/**
|
|
1809
1455
|
* <p> The result structure for the list backend environments result. </p>
|
|
1810
1456
|
*/
|
|
@@ -1819,12 +1465,6 @@ export interface ListBackendEnvironmentsResult {
|
|
|
1819
1465
|
*/
|
|
1820
1466
|
nextToken?: string;
|
|
1821
1467
|
}
|
|
1822
|
-
export declare namespace ListBackendEnvironmentsResult {
|
|
1823
|
-
/**
|
|
1824
|
-
* @internal
|
|
1825
|
-
*/
|
|
1826
|
-
const filterSensitiveLog: (obj: ListBackendEnvironmentsResult) => any;
|
|
1827
|
-
}
|
|
1828
1468
|
/**
|
|
1829
1469
|
* <p> The request structure for the list branches request. </p>
|
|
1830
1470
|
*/
|
|
@@ -1844,12 +1484,6 @@ export interface ListBranchesRequest {
|
|
|
1844
1484
|
*/
|
|
1845
1485
|
maxResults?: number;
|
|
1846
1486
|
}
|
|
1847
|
-
export declare namespace ListBranchesRequest {
|
|
1848
|
-
/**
|
|
1849
|
-
* @internal
|
|
1850
|
-
*/
|
|
1851
|
-
const filterSensitiveLog: (obj: ListBranchesRequest) => any;
|
|
1852
|
-
}
|
|
1853
1487
|
/**
|
|
1854
1488
|
* <p> The result structure for the list branches request. </p>
|
|
1855
1489
|
*/
|
|
@@ -1864,12 +1498,6 @@ export interface ListBranchesResult {
|
|
|
1864
1498
|
*/
|
|
1865
1499
|
nextToken?: string;
|
|
1866
1500
|
}
|
|
1867
|
-
export declare namespace ListBranchesResult {
|
|
1868
|
-
/**
|
|
1869
|
-
* @internal
|
|
1870
|
-
*/
|
|
1871
|
-
const filterSensitiveLog: (obj: ListBranchesResult) => any;
|
|
1872
|
-
}
|
|
1873
1501
|
/**
|
|
1874
1502
|
* <p> The request structure for the list domain associations request. </p>
|
|
1875
1503
|
*/
|
|
@@ -1889,12 +1517,6 @@ export interface ListDomainAssociationsRequest {
|
|
|
1889
1517
|
*/
|
|
1890
1518
|
maxResults?: number;
|
|
1891
1519
|
}
|
|
1892
|
-
export declare namespace ListDomainAssociationsRequest {
|
|
1893
|
-
/**
|
|
1894
|
-
* @internal
|
|
1895
|
-
*/
|
|
1896
|
-
const filterSensitiveLog: (obj: ListDomainAssociationsRequest) => any;
|
|
1897
|
-
}
|
|
1898
1520
|
/**
|
|
1899
1521
|
* <p> The result structure for the list domain association request. </p>
|
|
1900
1522
|
*/
|
|
@@ -1909,12 +1531,6 @@ export interface ListDomainAssociationsResult {
|
|
|
1909
1531
|
*/
|
|
1910
1532
|
nextToken?: string;
|
|
1911
1533
|
}
|
|
1912
|
-
export declare namespace ListDomainAssociationsResult {
|
|
1913
|
-
/**
|
|
1914
|
-
* @internal
|
|
1915
|
-
*/
|
|
1916
|
-
const filterSensitiveLog: (obj: ListDomainAssociationsResult) => any;
|
|
1917
|
-
}
|
|
1918
1534
|
/**
|
|
1919
1535
|
* <p> The request structure for the list jobs request. </p>
|
|
1920
1536
|
*/
|
|
@@ -1938,12 +1554,6 @@ export interface ListJobsRequest {
|
|
|
1938
1554
|
*/
|
|
1939
1555
|
maxResults?: number;
|
|
1940
1556
|
}
|
|
1941
|
-
export declare namespace ListJobsRequest {
|
|
1942
|
-
/**
|
|
1943
|
-
* @internal
|
|
1944
|
-
*/
|
|
1945
|
-
const filterSensitiveLog: (obj: ListJobsRequest) => any;
|
|
1946
|
-
}
|
|
1947
1557
|
/**
|
|
1948
1558
|
* <p> The maximum number of records to list in a single response. </p>
|
|
1949
1559
|
*/
|
|
@@ -1958,12 +1568,6 @@ export interface ListJobsResult {
|
|
|
1958
1568
|
*/
|
|
1959
1569
|
nextToken?: string;
|
|
1960
1570
|
}
|
|
1961
|
-
export declare namespace ListJobsResult {
|
|
1962
|
-
/**
|
|
1963
|
-
* @internal
|
|
1964
|
-
*/
|
|
1965
|
-
const filterSensitiveLog: (obj: ListJobsResult) => any;
|
|
1966
|
-
}
|
|
1967
1571
|
/**
|
|
1968
1572
|
* <p> The request structure to use to list tags for a resource. </p>
|
|
1969
1573
|
*/
|
|
@@ -1973,12 +1577,6 @@ export interface ListTagsForResourceRequest {
|
|
|
1973
1577
|
*/
|
|
1974
1578
|
resourceArn: string | undefined;
|
|
1975
1579
|
}
|
|
1976
|
-
export declare namespace ListTagsForResourceRequest {
|
|
1977
|
-
/**
|
|
1978
|
-
* @internal
|
|
1979
|
-
*/
|
|
1980
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1981
|
-
}
|
|
1982
1580
|
/**
|
|
1983
1581
|
* <p> The response for the list tags for resource request. </p>
|
|
1984
1582
|
*/
|
|
@@ -1988,12 +1586,6 @@ export interface ListTagsForResourceResponse {
|
|
|
1988
1586
|
*/
|
|
1989
1587
|
tags?: Record<string, string>;
|
|
1990
1588
|
}
|
|
1991
|
-
export declare namespace ListTagsForResourceResponse {
|
|
1992
|
-
/**
|
|
1993
|
-
* @internal
|
|
1994
|
-
*/
|
|
1995
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1996
|
-
}
|
|
1997
1589
|
/**
|
|
1998
1590
|
* <p> An operation failed due to a non-existent resource. </p>
|
|
1999
1591
|
*/
|
|
@@ -2025,12 +1617,6 @@ export interface ListWebhooksRequest {
|
|
|
2025
1617
|
*/
|
|
2026
1618
|
maxResults?: number;
|
|
2027
1619
|
}
|
|
2028
|
-
export declare namespace ListWebhooksRequest {
|
|
2029
|
-
/**
|
|
2030
|
-
* @internal
|
|
2031
|
-
*/
|
|
2032
|
-
const filterSensitiveLog: (obj: ListWebhooksRequest) => any;
|
|
2033
|
-
}
|
|
2034
1620
|
/**
|
|
2035
1621
|
* <p> The result structure for the list webhooks request. </p>
|
|
2036
1622
|
*/
|
|
@@ -2045,12 +1631,6 @@ export interface ListWebhooksResult {
|
|
|
2045
1631
|
*/
|
|
2046
1632
|
nextToken?: string;
|
|
2047
1633
|
}
|
|
2048
|
-
export declare namespace ListWebhooksResult {
|
|
2049
|
-
/**
|
|
2050
|
-
* @internal
|
|
2051
|
-
*/
|
|
2052
|
-
const filterSensitiveLog: (obj: ListWebhooksResult) => any;
|
|
2053
|
-
}
|
|
2054
1634
|
/**
|
|
2055
1635
|
* <p> The request structure for the start a deployment request. </p>
|
|
2056
1636
|
*/
|
|
@@ -2074,12 +1654,6 @@ export interface StartDeploymentRequest {
|
|
|
2074
1654
|
*/
|
|
2075
1655
|
sourceUrl?: string;
|
|
2076
1656
|
}
|
|
2077
|
-
export declare namespace StartDeploymentRequest {
|
|
2078
|
-
/**
|
|
2079
|
-
* @internal
|
|
2080
|
-
*/
|
|
2081
|
-
const filterSensitiveLog: (obj: StartDeploymentRequest) => any;
|
|
2082
|
-
}
|
|
2083
1657
|
/**
|
|
2084
1658
|
* <p> The result structure for the start a deployment request. </p>
|
|
2085
1659
|
*/
|
|
@@ -2089,12 +1663,6 @@ export interface StartDeploymentResult {
|
|
|
2089
1663
|
*/
|
|
2090
1664
|
jobSummary: JobSummary | undefined;
|
|
2091
1665
|
}
|
|
2092
|
-
export declare namespace StartDeploymentResult {
|
|
2093
|
-
/**
|
|
2094
|
-
* @internal
|
|
2095
|
-
*/
|
|
2096
|
-
const filterSensitiveLog: (obj: StartDeploymentResult) => any;
|
|
2097
|
-
}
|
|
2098
1666
|
/**
|
|
2099
1667
|
* <p> The request structure for the start job request. </p>
|
|
2100
1668
|
*/
|
|
@@ -2137,12 +1705,6 @@ export interface StartJobRequest {
|
|
|
2137
1705
|
*/
|
|
2138
1706
|
commitTime?: Date;
|
|
2139
1707
|
}
|
|
2140
|
-
export declare namespace StartJobRequest {
|
|
2141
|
-
/**
|
|
2142
|
-
* @internal
|
|
2143
|
-
*/
|
|
2144
|
-
const filterSensitiveLog: (obj: StartJobRequest) => any;
|
|
2145
|
-
}
|
|
2146
1708
|
/**
|
|
2147
1709
|
* <p> The result structure for the run job request. </p>
|
|
2148
1710
|
*/
|
|
@@ -2152,12 +1714,6 @@ export interface StartJobResult {
|
|
|
2152
1714
|
*/
|
|
2153
1715
|
jobSummary: JobSummary | undefined;
|
|
2154
1716
|
}
|
|
2155
|
-
export declare namespace StartJobResult {
|
|
2156
|
-
/**
|
|
2157
|
-
* @internal
|
|
2158
|
-
*/
|
|
2159
|
-
const filterSensitiveLog: (obj: StartJobResult) => any;
|
|
2160
|
-
}
|
|
2161
1717
|
/**
|
|
2162
1718
|
* <p> The request structure for the stop job request. </p>
|
|
2163
1719
|
*/
|
|
@@ -2175,12 +1731,6 @@ export interface StopJobRequest {
|
|
|
2175
1731
|
*/
|
|
2176
1732
|
jobId: string | undefined;
|
|
2177
1733
|
}
|
|
2178
|
-
export declare namespace StopJobRequest {
|
|
2179
|
-
/**
|
|
2180
|
-
* @internal
|
|
2181
|
-
*/
|
|
2182
|
-
const filterSensitiveLog: (obj: StopJobRequest) => any;
|
|
2183
|
-
}
|
|
2184
1734
|
/**
|
|
2185
1735
|
* <p> The result structure for the stop job request. </p>
|
|
2186
1736
|
*/
|
|
@@ -2190,12 +1740,6 @@ export interface StopJobResult {
|
|
|
2190
1740
|
*/
|
|
2191
1741
|
jobSummary: JobSummary | undefined;
|
|
2192
1742
|
}
|
|
2193
|
-
export declare namespace StopJobResult {
|
|
2194
|
-
/**
|
|
2195
|
-
* @internal
|
|
2196
|
-
*/
|
|
2197
|
-
const filterSensitiveLog: (obj: StopJobResult) => any;
|
|
2198
|
-
}
|
|
2199
1743
|
/**
|
|
2200
1744
|
* <p> The request structure to tag a resource with a tag key and value. </p>
|
|
2201
1745
|
*/
|
|
@@ -2209,23 +1753,11 @@ export interface TagResourceRequest {
|
|
|
2209
1753
|
*/
|
|
2210
1754
|
tags: Record<string, string> | undefined;
|
|
2211
1755
|
}
|
|
2212
|
-
export declare namespace TagResourceRequest {
|
|
2213
|
-
/**
|
|
2214
|
-
* @internal
|
|
2215
|
-
*/
|
|
2216
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
2217
|
-
}
|
|
2218
1756
|
/**
|
|
2219
1757
|
* <p> The response for the tag resource request. </p>
|
|
2220
1758
|
*/
|
|
2221
1759
|
export interface TagResourceResponse {
|
|
2222
1760
|
}
|
|
2223
|
-
export declare namespace TagResourceResponse {
|
|
2224
|
-
/**
|
|
2225
|
-
* @internal
|
|
2226
|
-
*/
|
|
2227
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
2228
|
-
}
|
|
2229
1761
|
/**
|
|
2230
1762
|
* <p> The request structure for the untag resource request. </p>
|
|
2231
1763
|
*/
|
|
@@ -2239,23 +1771,11 @@ export interface UntagResourceRequest {
|
|
|
2239
1771
|
*/
|
|
2240
1772
|
tagKeys: string[] | undefined;
|
|
2241
1773
|
}
|
|
2242
|
-
export declare namespace UntagResourceRequest {
|
|
2243
|
-
/**
|
|
2244
|
-
* @internal
|
|
2245
|
-
*/
|
|
2246
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
2247
|
-
}
|
|
2248
1774
|
/**
|
|
2249
1775
|
* <p> The response for the untag resource request. </p>
|
|
2250
1776
|
*/
|
|
2251
1777
|
export interface UntagResourceResponse {
|
|
2252
1778
|
}
|
|
2253
|
-
export declare namespace UntagResourceResponse {
|
|
2254
|
-
/**
|
|
2255
|
-
* @internal
|
|
2256
|
-
*/
|
|
2257
|
-
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
2258
|
-
}
|
|
2259
1779
|
/**
|
|
2260
1780
|
* <p> The request structure for the update app request. </p>
|
|
2261
1781
|
*/
|
|
@@ -2362,12 +1882,6 @@ export interface UpdateAppRequest {
|
|
|
2362
1882
|
*/
|
|
2363
1883
|
accessToken?: string;
|
|
2364
1884
|
}
|
|
2365
|
-
export declare namespace UpdateAppRequest {
|
|
2366
|
-
/**
|
|
2367
|
-
* @internal
|
|
2368
|
-
*/
|
|
2369
|
-
const filterSensitiveLog: (obj: UpdateAppRequest) => any;
|
|
2370
|
-
}
|
|
2371
1885
|
/**
|
|
2372
1886
|
* <p> The result structure for an Amplify app update request. </p>
|
|
2373
1887
|
*/
|
|
@@ -2377,12 +1891,6 @@ export interface UpdateAppResult {
|
|
|
2377
1891
|
*/
|
|
2378
1892
|
app: App | undefined;
|
|
2379
1893
|
}
|
|
2380
|
-
export declare namespace UpdateAppResult {
|
|
2381
|
-
/**
|
|
2382
|
-
* @internal
|
|
2383
|
-
*/
|
|
2384
|
-
const filterSensitiveLog: (obj: UpdateAppResult) => any;
|
|
2385
|
-
}
|
|
2386
1894
|
/**
|
|
2387
1895
|
* <p> The request structure for the update branch request. </p>
|
|
2388
1896
|
*/
|
|
@@ -2462,12 +1970,6 @@ export interface UpdateBranchRequest {
|
|
|
2462
1970
|
*/
|
|
2463
1971
|
backendEnvironmentArn?: string;
|
|
2464
1972
|
}
|
|
2465
|
-
export declare namespace UpdateBranchRequest {
|
|
2466
|
-
/**
|
|
2467
|
-
* @internal
|
|
2468
|
-
*/
|
|
2469
|
-
const filterSensitiveLog: (obj: UpdateBranchRequest) => any;
|
|
2470
|
-
}
|
|
2471
1973
|
/**
|
|
2472
1974
|
* <p> The result structure for the update branch request. </p>
|
|
2473
1975
|
*/
|
|
@@ -2477,12 +1979,6 @@ export interface UpdateBranchResult {
|
|
|
2477
1979
|
*/
|
|
2478
1980
|
branch: Branch | undefined;
|
|
2479
1981
|
}
|
|
2480
|
-
export declare namespace UpdateBranchResult {
|
|
2481
|
-
/**
|
|
2482
|
-
* @internal
|
|
2483
|
-
*/
|
|
2484
|
-
const filterSensitiveLog: (obj: UpdateBranchResult) => any;
|
|
2485
|
-
}
|
|
2486
1982
|
/**
|
|
2487
1983
|
* <p> The request structure for the update domain association request. </p>
|
|
2488
1984
|
*/
|
|
@@ -2513,12 +2009,6 @@ export interface UpdateDomainAssociationRequest {
|
|
|
2513
2009
|
*/
|
|
2514
2010
|
autoSubDomainIAMRole?: string;
|
|
2515
2011
|
}
|
|
2516
|
-
export declare namespace UpdateDomainAssociationRequest {
|
|
2517
|
-
/**
|
|
2518
|
-
* @internal
|
|
2519
|
-
*/
|
|
2520
|
-
const filterSensitiveLog: (obj: UpdateDomainAssociationRequest) => any;
|
|
2521
|
-
}
|
|
2522
2012
|
/**
|
|
2523
2013
|
* <p> The result structure for the update domain association request. </p>
|
|
2524
2014
|
*/
|
|
@@ -2529,12 +2019,6 @@ export interface UpdateDomainAssociationResult {
|
|
|
2529
2019
|
*/
|
|
2530
2020
|
domainAssociation: DomainAssociation | undefined;
|
|
2531
2021
|
}
|
|
2532
|
-
export declare namespace UpdateDomainAssociationResult {
|
|
2533
|
-
/**
|
|
2534
|
-
* @internal
|
|
2535
|
-
*/
|
|
2536
|
-
const filterSensitiveLog: (obj: UpdateDomainAssociationResult) => any;
|
|
2537
|
-
}
|
|
2538
2022
|
/**
|
|
2539
2023
|
* <p> The request structure for the update webhook request. </p>
|
|
2540
2024
|
*/
|
|
@@ -2552,12 +2036,6 @@ export interface UpdateWebhookRequest {
|
|
|
2552
2036
|
*/
|
|
2553
2037
|
description?: string;
|
|
2554
2038
|
}
|
|
2555
|
-
export declare namespace UpdateWebhookRequest {
|
|
2556
|
-
/**
|
|
2557
|
-
* @internal
|
|
2558
|
-
*/
|
|
2559
|
-
const filterSensitiveLog: (obj: UpdateWebhookRequest) => any;
|
|
2560
|
-
}
|
|
2561
2039
|
/**
|
|
2562
2040
|
* <p> The result structure for the update webhook request. </p>
|
|
2563
2041
|
*/
|
|
@@ -2567,9 +2045,355 @@ export interface UpdateWebhookResult {
|
|
|
2567
2045
|
*/
|
|
2568
2046
|
webhook: Webhook | undefined;
|
|
2569
2047
|
}
|
|
2570
|
-
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
2048
|
+
/**
|
|
2049
|
+
* @internal
|
|
2050
|
+
*/
|
|
2051
|
+
export declare const AutoBranchCreationConfigFilterSensitiveLog: (obj: AutoBranchCreationConfig) => any;
|
|
2052
|
+
/**
|
|
2053
|
+
* @internal
|
|
2054
|
+
*/
|
|
2055
|
+
export declare const CustomRuleFilterSensitiveLog: (obj: CustomRule) => any;
|
|
2056
|
+
/**
|
|
2057
|
+
* @internal
|
|
2058
|
+
*/
|
|
2059
|
+
export declare const CreateAppRequestFilterSensitiveLog: (obj: CreateAppRequest) => any;
|
|
2060
|
+
/**
|
|
2061
|
+
* @internal
|
|
2062
|
+
*/
|
|
2063
|
+
export declare const ProductionBranchFilterSensitiveLog: (obj: ProductionBranch) => any;
|
|
2064
|
+
/**
|
|
2065
|
+
* @internal
|
|
2066
|
+
*/
|
|
2067
|
+
export declare const AppFilterSensitiveLog: (obj: App) => any;
|
|
2068
|
+
/**
|
|
2069
|
+
* @internal
|
|
2070
|
+
*/
|
|
2071
|
+
export declare const CreateAppResultFilterSensitiveLog: (obj: CreateAppResult) => any;
|
|
2072
|
+
/**
|
|
2073
|
+
* @internal
|
|
2074
|
+
*/
|
|
2075
|
+
export declare const CreateBackendEnvironmentRequestFilterSensitiveLog: (obj: CreateBackendEnvironmentRequest) => any;
|
|
2076
|
+
/**
|
|
2077
|
+
* @internal
|
|
2078
|
+
*/
|
|
2079
|
+
export declare const BackendEnvironmentFilterSensitiveLog: (obj: BackendEnvironment) => any;
|
|
2080
|
+
/**
|
|
2081
|
+
* @internal
|
|
2082
|
+
*/
|
|
2083
|
+
export declare const CreateBackendEnvironmentResultFilterSensitiveLog: (obj: CreateBackendEnvironmentResult) => any;
|
|
2084
|
+
/**
|
|
2085
|
+
* @internal
|
|
2086
|
+
*/
|
|
2087
|
+
export declare const CreateBranchRequestFilterSensitiveLog: (obj: CreateBranchRequest) => any;
|
|
2088
|
+
/**
|
|
2089
|
+
* @internal
|
|
2090
|
+
*/
|
|
2091
|
+
export declare const BranchFilterSensitiveLog: (obj: Branch) => any;
|
|
2092
|
+
/**
|
|
2093
|
+
* @internal
|
|
2094
|
+
*/
|
|
2095
|
+
export declare const CreateBranchResultFilterSensitiveLog: (obj: CreateBranchResult) => any;
|
|
2096
|
+
/**
|
|
2097
|
+
* @internal
|
|
2098
|
+
*/
|
|
2099
|
+
export declare const CreateDeploymentRequestFilterSensitiveLog: (obj: CreateDeploymentRequest) => any;
|
|
2100
|
+
/**
|
|
2101
|
+
* @internal
|
|
2102
|
+
*/
|
|
2103
|
+
export declare const CreateDeploymentResultFilterSensitiveLog: (obj: CreateDeploymentResult) => any;
|
|
2104
|
+
/**
|
|
2105
|
+
* @internal
|
|
2106
|
+
*/
|
|
2107
|
+
export declare const SubDomainSettingFilterSensitiveLog: (obj: SubDomainSetting) => any;
|
|
2108
|
+
/**
|
|
2109
|
+
* @internal
|
|
2110
|
+
*/
|
|
2111
|
+
export declare const CreateDomainAssociationRequestFilterSensitiveLog: (obj: CreateDomainAssociationRequest) => any;
|
|
2112
|
+
/**
|
|
2113
|
+
* @internal
|
|
2114
|
+
*/
|
|
2115
|
+
export declare const SubDomainFilterSensitiveLog: (obj: SubDomain) => any;
|
|
2116
|
+
/**
|
|
2117
|
+
* @internal
|
|
2118
|
+
*/
|
|
2119
|
+
export declare const DomainAssociationFilterSensitiveLog: (obj: DomainAssociation) => any;
|
|
2120
|
+
/**
|
|
2121
|
+
* @internal
|
|
2122
|
+
*/
|
|
2123
|
+
export declare const CreateDomainAssociationResultFilterSensitiveLog: (obj: CreateDomainAssociationResult) => any;
|
|
2124
|
+
/**
|
|
2125
|
+
* @internal
|
|
2126
|
+
*/
|
|
2127
|
+
export declare const CreateWebhookRequestFilterSensitiveLog: (obj: CreateWebhookRequest) => any;
|
|
2128
|
+
/**
|
|
2129
|
+
* @internal
|
|
2130
|
+
*/
|
|
2131
|
+
export declare const WebhookFilterSensitiveLog: (obj: Webhook) => any;
|
|
2132
|
+
/**
|
|
2133
|
+
* @internal
|
|
2134
|
+
*/
|
|
2135
|
+
export declare const CreateWebhookResultFilterSensitiveLog: (obj: CreateWebhookResult) => any;
|
|
2136
|
+
/**
|
|
2137
|
+
* @internal
|
|
2138
|
+
*/
|
|
2139
|
+
export declare const DeleteAppRequestFilterSensitiveLog: (obj: DeleteAppRequest) => any;
|
|
2140
|
+
/**
|
|
2141
|
+
* @internal
|
|
2142
|
+
*/
|
|
2143
|
+
export declare const DeleteAppResultFilterSensitiveLog: (obj: DeleteAppResult) => any;
|
|
2144
|
+
/**
|
|
2145
|
+
* @internal
|
|
2146
|
+
*/
|
|
2147
|
+
export declare const DeleteBackendEnvironmentRequestFilterSensitiveLog: (obj: DeleteBackendEnvironmentRequest) => any;
|
|
2148
|
+
/**
|
|
2149
|
+
* @internal
|
|
2150
|
+
*/
|
|
2151
|
+
export declare const DeleteBackendEnvironmentResultFilterSensitiveLog: (obj: DeleteBackendEnvironmentResult) => any;
|
|
2152
|
+
/**
|
|
2153
|
+
* @internal
|
|
2154
|
+
*/
|
|
2155
|
+
export declare const DeleteBranchRequestFilterSensitiveLog: (obj: DeleteBranchRequest) => any;
|
|
2156
|
+
/**
|
|
2157
|
+
* @internal
|
|
2158
|
+
*/
|
|
2159
|
+
export declare const DeleteBranchResultFilterSensitiveLog: (obj: DeleteBranchResult) => any;
|
|
2160
|
+
/**
|
|
2161
|
+
* @internal
|
|
2162
|
+
*/
|
|
2163
|
+
export declare const DeleteDomainAssociationRequestFilterSensitiveLog: (obj: DeleteDomainAssociationRequest) => any;
|
|
2164
|
+
/**
|
|
2165
|
+
* @internal
|
|
2166
|
+
*/
|
|
2167
|
+
export declare const DeleteDomainAssociationResultFilterSensitiveLog: (obj: DeleteDomainAssociationResult) => any;
|
|
2168
|
+
/**
|
|
2169
|
+
* @internal
|
|
2170
|
+
*/
|
|
2171
|
+
export declare const DeleteJobRequestFilterSensitiveLog: (obj: DeleteJobRequest) => any;
|
|
2172
|
+
/**
|
|
2173
|
+
* @internal
|
|
2174
|
+
*/
|
|
2175
|
+
export declare const JobSummaryFilterSensitiveLog: (obj: JobSummary) => any;
|
|
2176
|
+
/**
|
|
2177
|
+
* @internal
|
|
2178
|
+
*/
|
|
2179
|
+
export declare const DeleteJobResultFilterSensitiveLog: (obj: DeleteJobResult) => any;
|
|
2180
|
+
/**
|
|
2181
|
+
* @internal
|
|
2182
|
+
*/
|
|
2183
|
+
export declare const DeleteWebhookRequestFilterSensitiveLog: (obj: DeleteWebhookRequest) => any;
|
|
2184
|
+
/**
|
|
2185
|
+
* @internal
|
|
2186
|
+
*/
|
|
2187
|
+
export declare const DeleteWebhookResultFilterSensitiveLog: (obj: DeleteWebhookResult) => any;
|
|
2188
|
+
/**
|
|
2189
|
+
* @internal
|
|
2190
|
+
*/
|
|
2191
|
+
export declare const GenerateAccessLogsRequestFilterSensitiveLog: (obj: GenerateAccessLogsRequest) => any;
|
|
2192
|
+
/**
|
|
2193
|
+
* @internal
|
|
2194
|
+
*/
|
|
2195
|
+
export declare const GenerateAccessLogsResultFilterSensitiveLog: (obj: GenerateAccessLogsResult) => any;
|
|
2196
|
+
/**
|
|
2197
|
+
* @internal
|
|
2198
|
+
*/
|
|
2199
|
+
export declare const GetAppRequestFilterSensitiveLog: (obj: GetAppRequest) => any;
|
|
2200
|
+
/**
|
|
2201
|
+
* @internal
|
|
2202
|
+
*/
|
|
2203
|
+
export declare const GetAppResultFilterSensitiveLog: (obj: GetAppResult) => any;
|
|
2204
|
+
/**
|
|
2205
|
+
* @internal
|
|
2206
|
+
*/
|
|
2207
|
+
export declare const GetArtifactUrlRequestFilterSensitiveLog: (obj: GetArtifactUrlRequest) => any;
|
|
2208
|
+
/**
|
|
2209
|
+
* @internal
|
|
2210
|
+
*/
|
|
2211
|
+
export declare const GetArtifactUrlResultFilterSensitiveLog: (obj: GetArtifactUrlResult) => any;
|
|
2212
|
+
/**
|
|
2213
|
+
* @internal
|
|
2214
|
+
*/
|
|
2215
|
+
export declare const GetBackendEnvironmentRequestFilterSensitiveLog: (obj: GetBackendEnvironmentRequest) => any;
|
|
2216
|
+
/**
|
|
2217
|
+
* @internal
|
|
2218
|
+
*/
|
|
2219
|
+
export declare const GetBackendEnvironmentResultFilterSensitiveLog: (obj: GetBackendEnvironmentResult) => any;
|
|
2220
|
+
/**
|
|
2221
|
+
* @internal
|
|
2222
|
+
*/
|
|
2223
|
+
export declare const GetBranchRequestFilterSensitiveLog: (obj: GetBranchRequest) => any;
|
|
2224
|
+
/**
|
|
2225
|
+
* @internal
|
|
2226
|
+
*/
|
|
2227
|
+
export declare const GetBranchResultFilterSensitiveLog: (obj: GetBranchResult) => any;
|
|
2228
|
+
/**
|
|
2229
|
+
* @internal
|
|
2230
|
+
*/
|
|
2231
|
+
export declare const GetDomainAssociationRequestFilterSensitiveLog: (obj: GetDomainAssociationRequest) => any;
|
|
2232
|
+
/**
|
|
2233
|
+
* @internal
|
|
2234
|
+
*/
|
|
2235
|
+
export declare const GetDomainAssociationResultFilterSensitiveLog: (obj: GetDomainAssociationResult) => any;
|
|
2236
|
+
/**
|
|
2237
|
+
* @internal
|
|
2238
|
+
*/
|
|
2239
|
+
export declare const GetJobRequestFilterSensitiveLog: (obj: GetJobRequest) => any;
|
|
2240
|
+
/**
|
|
2241
|
+
* @internal
|
|
2242
|
+
*/
|
|
2243
|
+
export declare const StepFilterSensitiveLog: (obj: Step) => any;
|
|
2244
|
+
/**
|
|
2245
|
+
* @internal
|
|
2246
|
+
*/
|
|
2247
|
+
export declare const JobFilterSensitiveLog: (obj: Job) => any;
|
|
2248
|
+
/**
|
|
2249
|
+
* @internal
|
|
2250
|
+
*/
|
|
2251
|
+
export declare const GetJobResultFilterSensitiveLog: (obj: GetJobResult) => any;
|
|
2252
|
+
/**
|
|
2253
|
+
* @internal
|
|
2254
|
+
*/
|
|
2255
|
+
export declare const GetWebhookRequestFilterSensitiveLog: (obj: GetWebhookRequest) => any;
|
|
2256
|
+
/**
|
|
2257
|
+
* @internal
|
|
2258
|
+
*/
|
|
2259
|
+
export declare const GetWebhookResultFilterSensitiveLog: (obj: GetWebhookResult) => any;
|
|
2260
|
+
/**
|
|
2261
|
+
* @internal
|
|
2262
|
+
*/
|
|
2263
|
+
export declare const ListAppsRequestFilterSensitiveLog: (obj: ListAppsRequest) => any;
|
|
2264
|
+
/**
|
|
2265
|
+
* @internal
|
|
2266
|
+
*/
|
|
2267
|
+
export declare const ListAppsResultFilterSensitiveLog: (obj: ListAppsResult) => any;
|
|
2268
|
+
/**
|
|
2269
|
+
* @internal
|
|
2270
|
+
*/
|
|
2271
|
+
export declare const ListArtifactsRequestFilterSensitiveLog: (obj: ListArtifactsRequest) => any;
|
|
2272
|
+
/**
|
|
2273
|
+
* @internal
|
|
2274
|
+
*/
|
|
2275
|
+
export declare const ArtifactFilterSensitiveLog: (obj: Artifact) => any;
|
|
2276
|
+
/**
|
|
2277
|
+
* @internal
|
|
2278
|
+
*/
|
|
2279
|
+
export declare const ListArtifactsResultFilterSensitiveLog: (obj: ListArtifactsResult) => any;
|
|
2280
|
+
/**
|
|
2281
|
+
* @internal
|
|
2282
|
+
*/
|
|
2283
|
+
export declare const ListBackendEnvironmentsRequestFilterSensitiveLog: (obj: ListBackendEnvironmentsRequest) => any;
|
|
2284
|
+
/**
|
|
2285
|
+
* @internal
|
|
2286
|
+
*/
|
|
2287
|
+
export declare const ListBackendEnvironmentsResultFilterSensitiveLog: (obj: ListBackendEnvironmentsResult) => any;
|
|
2288
|
+
/**
|
|
2289
|
+
* @internal
|
|
2290
|
+
*/
|
|
2291
|
+
export declare const ListBranchesRequestFilterSensitiveLog: (obj: ListBranchesRequest) => any;
|
|
2292
|
+
/**
|
|
2293
|
+
* @internal
|
|
2294
|
+
*/
|
|
2295
|
+
export declare const ListBranchesResultFilterSensitiveLog: (obj: ListBranchesResult) => any;
|
|
2296
|
+
/**
|
|
2297
|
+
* @internal
|
|
2298
|
+
*/
|
|
2299
|
+
export declare const ListDomainAssociationsRequestFilterSensitiveLog: (obj: ListDomainAssociationsRequest) => any;
|
|
2300
|
+
/**
|
|
2301
|
+
* @internal
|
|
2302
|
+
*/
|
|
2303
|
+
export declare const ListDomainAssociationsResultFilterSensitiveLog: (obj: ListDomainAssociationsResult) => any;
|
|
2304
|
+
/**
|
|
2305
|
+
* @internal
|
|
2306
|
+
*/
|
|
2307
|
+
export declare const ListJobsRequestFilterSensitiveLog: (obj: ListJobsRequest) => any;
|
|
2308
|
+
/**
|
|
2309
|
+
* @internal
|
|
2310
|
+
*/
|
|
2311
|
+
export declare const ListJobsResultFilterSensitiveLog: (obj: ListJobsResult) => any;
|
|
2312
|
+
/**
|
|
2313
|
+
* @internal
|
|
2314
|
+
*/
|
|
2315
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
2316
|
+
/**
|
|
2317
|
+
* @internal
|
|
2318
|
+
*/
|
|
2319
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
2320
|
+
/**
|
|
2321
|
+
* @internal
|
|
2322
|
+
*/
|
|
2323
|
+
export declare const ListWebhooksRequestFilterSensitiveLog: (obj: ListWebhooksRequest) => any;
|
|
2324
|
+
/**
|
|
2325
|
+
* @internal
|
|
2326
|
+
*/
|
|
2327
|
+
export declare const ListWebhooksResultFilterSensitiveLog: (obj: ListWebhooksResult) => any;
|
|
2328
|
+
/**
|
|
2329
|
+
* @internal
|
|
2330
|
+
*/
|
|
2331
|
+
export declare const StartDeploymentRequestFilterSensitiveLog: (obj: StartDeploymentRequest) => any;
|
|
2332
|
+
/**
|
|
2333
|
+
* @internal
|
|
2334
|
+
*/
|
|
2335
|
+
export declare const StartDeploymentResultFilterSensitiveLog: (obj: StartDeploymentResult) => any;
|
|
2336
|
+
/**
|
|
2337
|
+
* @internal
|
|
2338
|
+
*/
|
|
2339
|
+
export declare const StartJobRequestFilterSensitiveLog: (obj: StartJobRequest) => any;
|
|
2340
|
+
/**
|
|
2341
|
+
* @internal
|
|
2342
|
+
*/
|
|
2343
|
+
export declare const StartJobResultFilterSensitiveLog: (obj: StartJobResult) => any;
|
|
2344
|
+
/**
|
|
2345
|
+
* @internal
|
|
2346
|
+
*/
|
|
2347
|
+
export declare const StopJobRequestFilterSensitiveLog: (obj: StopJobRequest) => any;
|
|
2348
|
+
/**
|
|
2349
|
+
* @internal
|
|
2350
|
+
*/
|
|
2351
|
+
export declare const StopJobResultFilterSensitiveLog: (obj: StopJobResult) => any;
|
|
2352
|
+
/**
|
|
2353
|
+
* @internal
|
|
2354
|
+
*/
|
|
2355
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
2356
|
+
/**
|
|
2357
|
+
* @internal
|
|
2358
|
+
*/
|
|
2359
|
+
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
2360
|
+
/**
|
|
2361
|
+
* @internal
|
|
2362
|
+
*/
|
|
2363
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
2364
|
+
/**
|
|
2365
|
+
* @internal
|
|
2366
|
+
*/
|
|
2367
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
2368
|
+
/**
|
|
2369
|
+
* @internal
|
|
2370
|
+
*/
|
|
2371
|
+
export declare const UpdateAppRequestFilterSensitiveLog: (obj: UpdateAppRequest) => any;
|
|
2372
|
+
/**
|
|
2373
|
+
* @internal
|
|
2374
|
+
*/
|
|
2375
|
+
export declare const UpdateAppResultFilterSensitiveLog: (obj: UpdateAppResult) => any;
|
|
2376
|
+
/**
|
|
2377
|
+
* @internal
|
|
2378
|
+
*/
|
|
2379
|
+
export declare const UpdateBranchRequestFilterSensitiveLog: (obj: UpdateBranchRequest) => any;
|
|
2380
|
+
/**
|
|
2381
|
+
* @internal
|
|
2382
|
+
*/
|
|
2383
|
+
export declare const UpdateBranchResultFilterSensitiveLog: (obj: UpdateBranchResult) => any;
|
|
2384
|
+
/**
|
|
2385
|
+
* @internal
|
|
2386
|
+
*/
|
|
2387
|
+
export declare const UpdateDomainAssociationRequestFilterSensitiveLog: (obj: UpdateDomainAssociationRequest) => any;
|
|
2388
|
+
/**
|
|
2389
|
+
* @internal
|
|
2390
|
+
*/
|
|
2391
|
+
export declare const UpdateDomainAssociationResultFilterSensitiveLog: (obj: UpdateDomainAssociationResult) => any;
|
|
2392
|
+
/**
|
|
2393
|
+
* @internal
|
|
2394
|
+
*/
|
|
2395
|
+
export declare const UpdateWebhookRequestFilterSensitiveLog: (obj: UpdateWebhookRequest) => any;
|
|
2396
|
+
/**
|
|
2397
|
+
* @internal
|
|
2398
|
+
*/
|
|
2399
|
+
export declare const UpdateWebhookResultFilterSensitiveLog: (obj: UpdateWebhookResult) => any;
|