@aws-sdk/client-amplify 3.687.0 → 3.691.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +182 -182
- package/dist-types/ts3.4/models/models_0.d.ts +182 -182
- package/package.json +7 -7
|
@@ -16,16 +16,16 @@ export declare const Stage: {
|
|
|
16
16
|
};
|
|
17
17
|
export type Stage = (typeof Stage)[keyof typeof Stage];
|
|
18
18
|
export interface AutoBranchCreationConfig {
|
|
19
|
-
stage?: Stage;
|
|
20
|
-
framework?: string;
|
|
21
|
-
enableAutoBuild?: boolean;
|
|
22
|
-
environmentVariables?: Record<string, string
|
|
23
|
-
basicAuthCredentials?: string;
|
|
24
|
-
enableBasicAuth?: boolean;
|
|
25
|
-
enablePerformanceMode?: boolean;
|
|
26
|
-
buildSpec?: string;
|
|
27
|
-
enablePullRequestPreview?: boolean;
|
|
28
|
-
pullRequestEnvironmentName?: string;
|
|
19
|
+
stage?: Stage | undefined;
|
|
20
|
+
framework?: string | undefined;
|
|
21
|
+
enableAutoBuild?: boolean | undefined;
|
|
22
|
+
environmentVariables?: Record<string, string> | undefined;
|
|
23
|
+
basicAuthCredentials?: string | undefined;
|
|
24
|
+
enableBasicAuth?: boolean | undefined;
|
|
25
|
+
enablePerformanceMode?: boolean | undefined;
|
|
26
|
+
buildSpec?: string | undefined;
|
|
27
|
+
enablePullRequestPreview?: boolean | undefined;
|
|
28
|
+
pullRequestEnvironmentName?: string | undefined;
|
|
29
29
|
}
|
|
30
30
|
export declare const CacheConfigType: {
|
|
31
31
|
readonly AMPLIFY_MANAGED: "AMPLIFY_MANAGED";
|
|
@@ -39,8 +39,8 @@ export interface CacheConfig {
|
|
|
39
39
|
export interface CustomRule {
|
|
40
40
|
source: string | undefined;
|
|
41
41
|
target: string | undefined;
|
|
42
|
-
status?: string;
|
|
43
|
-
condition?: string;
|
|
42
|
+
status?: string | undefined;
|
|
43
|
+
condition?: string | undefined;
|
|
44
44
|
}
|
|
45
45
|
export declare const Platform: {
|
|
46
46
|
readonly WEB: "WEB";
|
|
@@ -50,31 +50,31 @@ export declare const Platform: {
|
|
|
50
50
|
export type Platform = (typeof Platform)[keyof typeof Platform];
|
|
51
51
|
export interface CreateAppRequest {
|
|
52
52
|
name: string | undefined;
|
|
53
|
-
description?: string;
|
|
54
|
-
repository?: string;
|
|
55
|
-
platform?: Platform;
|
|
56
|
-
iamServiceRoleArn?: string;
|
|
57
|
-
oauthToken?: string;
|
|
58
|
-
accessToken?: string;
|
|
59
|
-
environmentVariables?: Record<string, string
|
|
60
|
-
enableBranchAutoBuild?: boolean;
|
|
61
|
-
enableBranchAutoDeletion?: boolean;
|
|
62
|
-
enableBasicAuth?: boolean;
|
|
63
|
-
basicAuthCredentials?: string;
|
|
64
|
-
customRules?: CustomRule[];
|
|
65
|
-
tags?: Record<string, string
|
|
66
|
-
buildSpec?: string;
|
|
67
|
-
customHeaders?: string;
|
|
68
|
-
enableAutoBranchCreation?: boolean;
|
|
69
|
-
autoBranchCreationPatterns?: string[];
|
|
70
|
-
autoBranchCreationConfig?: AutoBranchCreationConfig;
|
|
71
|
-
cacheConfig?: CacheConfig;
|
|
53
|
+
description?: string | undefined;
|
|
54
|
+
repository?: string | undefined;
|
|
55
|
+
platform?: Platform | undefined;
|
|
56
|
+
iamServiceRoleArn?: string | undefined;
|
|
57
|
+
oauthToken?: string | undefined;
|
|
58
|
+
accessToken?: string | undefined;
|
|
59
|
+
environmentVariables?: Record<string, string> | undefined;
|
|
60
|
+
enableBranchAutoBuild?: boolean | undefined;
|
|
61
|
+
enableBranchAutoDeletion?: boolean | undefined;
|
|
62
|
+
enableBasicAuth?: boolean | undefined;
|
|
63
|
+
basicAuthCredentials?: string | undefined;
|
|
64
|
+
customRules?: CustomRule[] | undefined;
|
|
65
|
+
tags?: Record<string, string> | undefined;
|
|
66
|
+
buildSpec?: string | undefined;
|
|
67
|
+
customHeaders?: string | undefined;
|
|
68
|
+
enableAutoBranchCreation?: boolean | undefined;
|
|
69
|
+
autoBranchCreationPatterns?: string[] | undefined;
|
|
70
|
+
autoBranchCreationConfig?: AutoBranchCreationConfig | undefined;
|
|
71
|
+
cacheConfig?: CacheConfig | undefined;
|
|
72
72
|
}
|
|
73
73
|
export interface ProductionBranch {
|
|
74
|
-
lastDeployTime?: Date;
|
|
75
|
-
status?: string;
|
|
76
|
-
thumbnailUrl?: string;
|
|
77
|
-
branchName?: string;
|
|
74
|
+
lastDeployTime?: Date | undefined;
|
|
75
|
+
status?: string | undefined;
|
|
76
|
+
thumbnailUrl?: string | undefined;
|
|
77
|
+
branchName?: string | undefined;
|
|
78
78
|
}
|
|
79
79
|
export declare const RepositoryCloneMethod: {
|
|
80
80
|
readonly SIGV4: "SIGV4";
|
|
@@ -87,28 +87,28 @@ export interface App {
|
|
|
87
87
|
appId: string | undefined;
|
|
88
88
|
appArn: string | undefined;
|
|
89
89
|
name: string | undefined;
|
|
90
|
-
tags?: Record<string, string
|
|
90
|
+
tags?: Record<string, string> | undefined;
|
|
91
91
|
description: string | undefined;
|
|
92
92
|
repository: string | undefined;
|
|
93
93
|
platform: Platform | undefined;
|
|
94
94
|
createTime: Date | undefined;
|
|
95
95
|
updateTime: Date | undefined;
|
|
96
|
-
iamServiceRoleArn?: string;
|
|
96
|
+
iamServiceRoleArn?: string | undefined;
|
|
97
97
|
environmentVariables: Record<string, string> | undefined;
|
|
98
98
|
defaultDomain: string | undefined;
|
|
99
99
|
enableBranchAutoBuild: boolean | undefined;
|
|
100
|
-
enableBranchAutoDeletion?: boolean;
|
|
100
|
+
enableBranchAutoDeletion?: boolean | undefined;
|
|
101
101
|
enableBasicAuth: boolean | undefined;
|
|
102
|
-
basicAuthCredentials?: string;
|
|
103
|
-
customRules?: CustomRule[];
|
|
104
|
-
productionBranch?: ProductionBranch;
|
|
105
|
-
buildSpec?: string;
|
|
106
|
-
customHeaders?: string;
|
|
107
|
-
enableAutoBranchCreation?: boolean;
|
|
108
|
-
autoBranchCreationPatterns?: string[];
|
|
109
|
-
autoBranchCreationConfig?: AutoBranchCreationConfig;
|
|
110
|
-
repositoryCloneMethod?: RepositoryCloneMethod;
|
|
111
|
-
cacheConfig?: CacheConfig;
|
|
102
|
+
basicAuthCredentials?: string | undefined;
|
|
103
|
+
customRules?: CustomRule[] | undefined;
|
|
104
|
+
productionBranch?: ProductionBranch | undefined;
|
|
105
|
+
buildSpec?: string | undefined;
|
|
106
|
+
customHeaders?: string | undefined;
|
|
107
|
+
enableAutoBranchCreation?: boolean | undefined;
|
|
108
|
+
autoBranchCreationPatterns?: string[] | undefined;
|
|
109
|
+
autoBranchCreationConfig?: AutoBranchCreationConfig | undefined;
|
|
110
|
+
repositoryCloneMethod?: RepositoryCloneMethod | undefined;
|
|
111
|
+
cacheConfig?: CacheConfig | undefined;
|
|
112
112
|
}
|
|
113
113
|
export interface CreateAppResult {
|
|
114
114
|
app: App | undefined;
|
|
@@ -147,14 +147,14 @@ export declare class UnauthorizedException extends __BaseException {
|
|
|
147
147
|
export interface CreateBackendEnvironmentRequest {
|
|
148
148
|
appId: string | undefined;
|
|
149
149
|
environmentName: string | undefined;
|
|
150
|
-
stackName?: string;
|
|
151
|
-
deploymentArtifacts?: string;
|
|
150
|
+
stackName?: string | undefined;
|
|
151
|
+
deploymentArtifacts?: string | undefined;
|
|
152
152
|
}
|
|
153
153
|
export interface BackendEnvironment {
|
|
154
154
|
backendEnvironmentArn: string | undefined;
|
|
155
155
|
environmentName: string | undefined;
|
|
156
|
-
stackName?: string;
|
|
157
|
-
deploymentArtifacts?: string;
|
|
156
|
+
stackName?: string | undefined;
|
|
157
|
+
deploymentArtifacts?: string | undefined;
|
|
158
158
|
createTime: Date | undefined;
|
|
159
159
|
updateTime: Date | undefined;
|
|
160
160
|
}
|
|
@@ -167,34 +167,34 @@ export declare class NotFoundException extends __BaseException {
|
|
|
167
167
|
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
168
168
|
}
|
|
169
169
|
export interface Backend {
|
|
170
|
-
stackArn?: string;
|
|
170
|
+
stackArn?: string | undefined;
|
|
171
171
|
}
|
|
172
172
|
export interface CreateBranchRequest {
|
|
173
173
|
appId: string | undefined;
|
|
174
174
|
branchName: string | undefined;
|
|
175
|
-
description?: string;
|
|
176
|
-
stage?: Stage;
|
|
177
|
-
framework?: string;
|
|
178
|
-
enableNotification?: boolean;
|
|
179
|
-
enableAutoBuild?: boolean;
|
|
180
|
-
environmentVariables?: Record<string, string
|
|
181
|
-
basicAuthCredentials?: string;
|
|
182
|
-
enableBasicAuth?: boolean;
|
|
183
|
-
enablePerformanceMode?: boolean;
|
|
184
|
-
tags?: Record<string, string
|
|
185
|
-
buildSpec?: string;
|
|
186
|
-
ttl?: string;
|
|
187
|
-
displayName?: string;
|
|
188
|
-
enablePullRequestPreview?: boolean;
|
|
189
|
-
pullRequestEnvironmentName?: string;
|
|
190
|
-
backendEnvironmentArn?: string;
|
|
191
|
-
backend?: Backend;
|
|
175
|
+
description?: string | undefined;
|
|
176
|
+
stage?: Stage | undefined;
|
|
177
|
+
framework?: string | undefined;
|
|
178
|
+
enableNotification?: boolean | undefined;
|
|
179
|
+
enableAutoBuild?: boolean | undefined;
|
|
180
|
+
environmentVariables?: Record<string, string> | undefined;
|
|
181
|
+
basicAuthCredentials?: string | undefined;
|
|
182
|
+
enableBasicAuth?: boolean | undefined;
|
|
183
|
+
enablePerformanceMode?: boolean | undefined;
|
|
184
|
+
tags?: Record<string, string> | undefined;
|
|
185
|
+
buildSpec?: string | undefined;
|
|
186
|
+
ttl?: string | undefined;
|
|
187
|
+
displayName?: string | undefined;
|
|
188
|
+
enablePullRequestPreview?: boolean | undefined;
|
|
189
|
+
pullRequestEnvironmentName?: string | undefined;
|
|
190
|
+
backendEnvironmentArn?: string | undefined;
|
|
191
|
+
backend?: Backend | undefined;
|
|
192
192
|
}
|
|
193
193
|
export interface Branch {
|
|
194
194
|
branchArn: string | undefined;
|
|
195
195
|
branchName: string | undefined;
|
|
196
196
|
description: string | undefined;
|
|
197
|
-
tags?: Record<string, string
|
|
197
|
+
tags?: Record<string, string> | undefined;
|
|
198
198
|
stage: Stage | undefined;
|
|
199
199
|
displayName: string | undefined;
|
|
200
200
|
enableNotification: boolean | undefined;
|
|
@@ -207,18 +207,18 @@ export interface Branch {
|
|
|
207
207
|
activeJobId: string | undefined;
|
|
208
208
|
totalNumberOfJobs: string | undefined;
|
|
209
209
|
enableBasicAuth: boolean | undefined;
|
|
210
|
-
enablePerformanceMode?: boolean;
|
|
211
|
-
thumbnailUrl?: string;
|
|
212
|
-
basicAuthCredentials?: string;
|
|
213
|
-
buildSpec?: string;
|
|
210
|
+
enablePerformanceMode?: boolean | undefined;
|
|
211
|
+
thumbnailUrl?: string | undefined;
|
|
212
|
+
basicAuthCredentials?: string | undefined;
|
|
213
|
+
buildSpec?: string | undefined;
|
|
214
214
|
ttl: string | undefined;
|
|
215
|
-
associatedResources?: string[];
|
|
215
|
+
associatedResources?: string[] | undefined;
|
|
216
216
|
enablePullRequestPreview: boolean | undefined;
|
|
217
|
-
pullRequestEnvironmentName?: string;
|
|
218
|
-
destinationBranch?: string;
|
|
219
|
-
sourceBranch?: string;
|
|
220
|
-
backendEnvironmentArn?: string;
|
|
221
|
-
backend?: Backend;
|
|
217
|
+
pullRequestEnvironmentName?: string | undefined;
|
|
218
|
+
destinationBranch?: string | undefined;
|
|
219
|
+
sourceBranch?: string | undefined;
|
|
220
|
+
backendEnvironmentArn?: string | undefined;
|
|
221
|
+
backend?: Backend | undefined;
|
|
222
222
|
}
|
|
223
223
|
export interface CreateBranchResult {
|
|
224
224
|
branch: Branch | undefined;
|
|
@@ -226,10 +226,10 @@ export interface CreateBranchResult {
|
|
|
226
226
|
export interface CreateDeploymentRequest {
|
|
227
227
|
appId: string | undefined;
|
|
228
228
|
branchName: string | undefined;
|
|
229
|
-
fileMap?: Record<string, string
|
|
229
|
+
fileMap?: Record<string, string> | undefined;
|
|
230
230
|
}
|
|
231
231
|
export interface CreateDeploymentResult {
|
|
232
|
-
jobId?: string;
|
|
232
|
+
jobId?: string | undefined;
|
|
233
233
|
fileUploadUrls: Record<string, string> | undefined;
|
|
234
234
|
zipUploadUrl: string | undefined;
|
|
235
235
|
}
|
|
@@ -241,7 +241,7 @@ export type CertificateType =
|
|
|
241
241
|
(typeof CertificateType)[keyof typeof CertificateType];
|
|
242
242
|
export interface CertificateSettings {
|
|
243
243
|
type: CertificateType | undefined;
|
|
244
|
-
customCertificateArn?: string;
|
|
244
|
+
customCertificateArn?: string | undefined;
|
|
245
245
|
}
|
|
246
246
|
export interface SubDomainSetting {
|
|
247
247
|
prefix: string | undefined;
|
|
@@ -250,16 +250,16 @@ export interface SubDomainSetting {
|
|
|
250
250
|
export interface CreateDomainAssociationRequest {
|
|
251
251
|
appId: string | undefined;
|
|
252
252
|
domainName: string | undefined;
|
|
253
|
-
enableAutoSubDomain?: boolean;
|
|
253
|
+
enableAutoSubDomain?: boolean | undefined;
|
|
254
254
|
subDomainSettings: SubDomainSetting[] | undefined;
|
|
255
|
-
autoSubDomainCreationPatterns?: string[];
|
|
256
|
-
autoSubDomainIAMRole?: string;
|
|
257
|
-
certificateSettings?: CertificateSettings;
|
|
255
|
+
autoSubDomainCreationPatterns?: string[] | undefined;
|
|
256
|
+
autoSubDomainIAMRole?: string | undefined;
|
|
257
|
+
certificateSettings?: CertificateSettings | undefined;
|
|
258
258
|
}
|
|
259
259
|
export interface Certificate {
|
|
260
260
|
type: CertificateType | undefined;
|
|
261
|
-
customCertificateArn?: string;
|
|
262
|
-
certificateVerificationDNSRecord?: string;
|
|
261
|
+
customCertificateArn?: string | undefined;
|
|
262
|
+
certificateVerificationDNSRecord?: string | undefined;
|
|
263
263
|
}
|
|
264
264
|
export declare const DomainStatus: {
|
|
265
265
|
readonly AVAILABLE: "AVAILABLE";
|
|
@@ -293,14 +293,14 @@ export interface DomainAssociation {
|
|
|
293
293
|
domainAssociationArn: string | undefined;
|
|
294
294
|
domainName: string | undefined;
|
|
295
295
|
enableAutoSubDomain: boolean | undefined;
|
|
296
|
-
autoSubDomainCreationPatterns?: string[];
|
|
297
|
-
autoSubDomainIAMRole?: string;
|
|
296
|
+
autoSubDomainCreationPatterns?: string[] | undefined;
|
|
297
|
+
autoSubDomainIAMRole?: string | undefined;
|
|
298
298
|
domainStatus: DomainStatus | undefined;
|
|
299
|
-
updateStatus?: UpdateStatus;
|
|
299
|
+
updateStatus?: UpdateStatus | undefined;
|
|
300
300
|
statusReason: string | undefined;
|
|
301
|
-
certificateVerificationDNSRecord?: string;
|
|
301
|
+
certificateVerificationDNSRecord?: string | undefined;
|
|
302
302
|
subDomains: SubDomain[] | undefined;
|
|
303
|
-
certificate?: Certificate;
|
|
303
|
+
certificate?: Certificate | undefined;
|
|
304
304
|
}
|
|
305
305
|
export interface CreateDomainAssociationResult {
|
|
306
306
|
domainAssociation: DomainAssociation | undefined;
|
|
@@ -308,7 +308,7 @@ export interface CreateDomainAssociationResult {
|
|
|
308
308
|
export interface CreateWebhookRequest {
|
|
309
309
|
appId: string | undefined;
|
|
310
310
|
branchName: string | undefined;
|
|
311
|
-
description?: string;
|
|
311
|
+
description?: string | undefined;
|
|
312
312
|
}
|
|
313
313
|
export interface Webhook {
|
|
314
314
|
webhookArn: string | undefined;
|
|
@@ -384,10 +384,10 @@ export interface JobSummary {
|
|
|
384
384
|
commitTime: Date | undefined;
|
|
385
385
|
startTime: Date | undefined;
|
|
386
386
|
status: JobStatus | undefined;
|
|
387
|
-
endTime?: Date;
|
|
387
|
+
endTime?: Date | undefined;
|
|
388
388
|
jobType: JobType | undefined;
|
|
389
|
-
sourceUrl?: string;
|
|
390
|
-
sourceUrlType?: SourceUrlType;
|
|
389
|
+
sourceUrl?: string | undefined;
|
|
390
|
+
sourceUrlType?: SourceUrlType | undefined;
|
|
391
391
|
}
|
|
392
392
|
export interface DeleteJobResult {
|
|
393
393
|
jobSummary: JobSummary | undefined;
|
|
@@ -399,13 +399,13 @@ export interface DeleteWebhookResult {
|
|
|
399
399
|
webhook: Webhook | undefined;
|
|
400
400
|
}
|
|
401
401
|
export interface GenerateAccessLogsRequest {
|
|
402
|
-
startTime?: Date;
|
|
403
|
-
endTime?: Date;
|
|
402
|
+
startTime?: Date | undefined;
|
|
403
|
+
endTime?: Date | undefined;
|
|
404
404
|
domainName: string | undefined;
|
|
405
405
|
appId: string | undefined;
|
|
406
406
|
}
|
|
407
407
|
export interface GenerateAccessLogsResult {
|
|
408
|
-
logUrl?: string;
|
|
408
|
+
logUrl?: string | undefined;
|
|
409
409
|
}
|
|
410
410
|
export interface GetAppRequest {
|
|
411
411
|
appId: string | undefined;
|
|
@@ -451,13 +451,13 @@ export interface Step {
|
|
|
451
451
|
startTime: Date | undefined;
|
|
452
452
|
status: JobStatus | undefined;
|
|
453
453
|
endTime: Date | undefined;
|
|
454
|
-
logUrl?: string;
|
|
455
|
-
artifactsUrl?: string;
|
|
456
|
-
testArtifactsUrl?: string;
|
|
457
|
-
testConfigUrl?: string;
|
|
458
|
-
screenshots?: Record<string, string
|
|
459
|
-
statusReason?: string;
|
|
460
|
-
context?: string;
|
|
454
|
+
logUrl?: string | undefined;
|
|
455
|
+
artifactsUrl?: string | undefined;
|
|
456
|
+
testArtifactsUrl?: string | undefined;
|
|
457
|
+
testConfigUrl?: string | undefined;
|
|
458
|
+
screenshots?: Record<string, string> | undefined;
|
|
459
|
+
statusReason?: string | undefined;
|
|
460
|
+
context?: string | undefined;
|
|
461
461
|
}
|
|
462
462
|
export interface Job {
|
|
463
463
|
summary: JobSummary | undefined;
|
|
@@ -473,19 +473,19 @@ export interface GetWebhookResult {
|
|
|
473
473
|
webhook: Webhook | undefined;
|
|
474
474
|
}
|
|
475
475
|
export interface ListAppsRequest {
|
|
476
|
-
nextToken?: string;
|
|
477
|
-
maxResults?: number;
|
|
476
|
+
nextToken?: string | undefined;
|
|
477
|
+
maxResults?: number | undefined;
|
|
478
478
|
}
|
|
479
479
|
export interface ListAppsResult {
|
|
480
480
|
apps: App[] | undefined;
|
|
481
|
-
nextToken?: string;
|
|
481
|
+
nextToken?: string | undefined;
|
|
482
482
|
}
|
|
483
483
|
export interface ListArtifactsRequest {
|
|
484
484
|
appId: string | undefined;
|
|
485
485
|
branchName: string | undefined;
|
|
486
486
|
jobId: string | undefined;
|
|
487
|
-
nextToken?: string;
|
|
488
|
-
maxResults?: number;
|
|
487
|
+
nextToken?: string | undefined;
|
|
488
|
+
maxResults?: number | undefined;
|
|
489
489
|
}
|
|
490
490
|
export interface Artifact {
|
|
491
491
|
artifactFileName: string | undefined;
|
|
@@ -493,51 +493,51 @@ export interface Artifact {
|
|
|
493
493
|
}
|
|
494
494
|
export interface ListArtifactsResult {
|
|
495
495
|
artifacts: Artifact[] | undefined;
|
|
496
|
-
nextToken?: string;
|
|
496
|
+
nextToken?: string | undefined;
|
|
497
497
|
}
|
|
498
498
|
export interface ListBackendEnvironmentsRequest {
|
|
499
499
|
appId: string | undefined;
|
|
500
|
-
environmentName?: string;
|
|
501
|
-
nextToken?: string;
|
|
502
|
-
maxResults?: number;
|
|
500
|
+
environmentName?: string | undefined;
|
|
501
|
+
nextToken?: string | undefined;
|
|
502
|
+
maxResults?: number | undefined;
|
|
503
503
|
}
|
|
504
504
|
export interface ListBackendEnvironmentsResult {
|
|
505
505
|
backendEnvironments: BackendEnvironment[] | undefined;
|
|
506
|
-
nextToken?: string;
|
|
506
|
+
nextToken?: string | undefined;
|
|
507
507
|
}
|
|
508
508
|
export interface ListBranchesRequest {
|
|
509
509
|
appId: string | undefined;
|
|
510
|
-
nextToken?: string;
|
|
511
|
-
maxResults?: number;
|
|
510
|
+
nextToken?: string | undefined;
|
|
511
|
+
maxResults?: number | undefined;
|
|
512
512
|
}
|
|
513
513
|
export interface ListBranchesResult {
|
|
514
514
|
branches: Branch[] | undefined;
|
|
515
|
-
nextToken?: string;
|
|
515
|
+
nextToken?: string | undefined;
|
|
516
516
|
}
|
|
517
517
|
export interface ListDomainAssociationsRequest {
|
|
518
518
|
appId: string | undefined;
|
|
519
|
-
nextToken?: string;
|
|
520
|
-
maxResults?: number;
|
|
519
|
+
nextToken?: string | undefined;
|
|
520
|
+
maxResults?: number | undefined;
|
|
521
521
|
}
|
|
522
522
|
export interface ListDomainAssociationsResult {
|
|
523
523
|
domainAssociations: DomainAssociation[] | undefined;
|
|
524
|
-
nextToken?: string;
|
|
524
|
+
nextToken?: string | undefined;
|
|
525
525
|
}
|
|
526
526
|
export interface ListJobsRequest {
|
|
527
527
|
appId: string | undefined;
|
|
528
528
|
branchName: string | undefined;
|
|
529
|
-
nextToken?: string;
|
|
530
|
-
maxResults?: number;
|
|
529
|
+
nextToken?: string | undefined;
|
|
530
|
+
maxResults?: number | undefined;
|
|
531
531
|
}
|
|
532
532
|
export interface ListJobsResult {
|
|
533
533
|
jobSummaries: JobSummary[] | undefined;
|
|
534
|
-
nextToken?: string;
|
|
534
|
+
nextToken?: string | undefined;
|
|
535
535
|
}
|
|
536
536
|
export interface ListTagsForResourceRequest {
|
|
537
537
|
resourceArn: string | undefined;
|
|
538
538
|
}
|
|
539
539
|
export interface ListTagsForResourceResponse {
|
|
540
|
-
tags?: Record<string, string
|
|
540
|
+
tags?: Record<string, string> | undefined;
|
|
541
541
|
}
|
|
542
542
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
543
543
|
readonly name: "ResourceNotFoundException";
|
|
@@ -549,19 +549,19 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
549
549
|
}
|
|
550
550
|
export interface ListWebhooksRequest {
|
|
551
551
|
appId: string | undefined;
|
|
552
|
-
nextToken?: string;
|
|
553
|
-
maxResults?: number;
|
|
552
|
+
nextToken?: string | undefined;
|
|
553
|
+
maxResults?: number | undefined;
|
|
554
554
|
}
|
|
555
555
|
export interface ListWebhooksResult {
|
|
556
556
|
webhooks: Webhook[] | undefined;
|
|
557
|
-
nextToken?: string;
|
|
557
|
+
nextToken?: string | undefined;
|
|
558
558
|
}
|
|
559
559
|
export interface StartDeploymentRequest {
|
|
560
560
|
appId: string | undefined;
|
|
561
561
|
branchName: string | undefined;
|
|
562
|
-
jobId?: string;
|
|
563
|
-
sourceUrl?: string;
|
|
564
|
-
sourceUrlType?: SourceUrlType;
|
|
562
|
+
jobId?: string | undefined;
|
|
563
|
+
sourceUrl?: string | undefined;
|
|
564
|
+
sourceUrlType?: SourceUrlType | undefined;
|
|
565
565
|
}
|
|
566
566
|
export interface StartDeploymentResult {
|
|
567
567
|
jobSummary: JobSummary | undefined;
|
|
@@ -569,12 +569,12 @@ export interface StartDeploymentResult {
|
|
|
569
569
|
export interface StartJobRequest {
|
|
570
570
|
appId: string | undefined;
|
|
571
571
|
branchName: string | undefined;
|
|
572
|
-
jobId?: string;
|
|
572
|
+
jobId?: string | undefined;
|
|
573
573
|
jobType: JobType | undefined;
|
|
574
|
-
jobReason?: string;
|
|
575
|
-
commitId?: string;
|
|
576
|
-
commitMessage?: string;
|
|
577
|
-
commitTime?: Date;
|
|
574
|
+
jobReason?: string | undefined;
|
|
575
|
+
commitId?: string | undefined;
|
|
576
|
+
commitMessage?: string | undefined;
|
|
577
|
+
commitTime?: Date | undefined;
|
|
578
578
|
}
|
|
579
579
|
export interface StartJobResult {
|
|
580
580
|
jobSummary: JobSummary | undefined;
|
|
@@ -599,25 +599,25 @@ export interface UntagResourceRequest {
|
|
|
599
599
|
export interface UntagResourceResponse {}
|
|
600
600
|
export interface UpdateAppRequest {
|
|
601
601
|
appId: string | undefined;
|
|
602
|
-
name?: string;
|
|
603
|
-
description?: string;
|
|
604
|
-
platform?: Platform;
|
|
605
|
-
iamServiceRoleArn?: string;
|
|
606
|
-
environmentVariables?: Record<string, string
|
|
607
|
-
enableBranchAutoBuild?: boolean;
|
|
608
|
-
enableBranchAutoDeletion?: boolean;
|
|
609
|
-
enableBasicAuth?: boolean;
|
|
610
|
-
basicAuthCredentials?: string;
|
|
611
|
-
customRules?: CustomRule[];
|
|
612
|
-
buildSpec?: string;
|
|
613
|
-
customHeaders?: string;
|
|
614
|
-
enableAutoBranchCreation?: boolean;
|
|
615
|
-
autoBranchCreationPatterns?: string[];
|
|
616
|
-
autoBranchCreationConfig?: AutoBranchCreationConfig;
|
|
617
|
-
repository?: string;
|
|
618
|
-
oauthToken?: string;
|
|
619
|
-
accessToken?: string;
|
|
620
|
-
cacheConfig?: CacheConfig;
|
|
602
|
+
name?: string | undefined;
|
|
603
|
+
description?: string | undefined;
|
|
604
|
+
platform?: Platform | undefined;
|
|
605
|
+
iamServiceRoleArn?: string | undefined;
|
|
606
|
+
environmentVariables?: Record<string, string> | undefined;
|
|
607
|
+
enableBranchAutoBuild?: boolean | undefined;
|
|
608
|
+
enableBranchAutoDeletion?: boolean | undefined;
|
|
609
|
+
enableBasicAuth?: boolean | undefined;
|
|
610
|
+
basicAuthCredentials?: string | undefined;
|
|
611
|
+
customRules?: CustomRule[] | undefined;
|
|
612
|
+
buildSpec?: string | undefined;
|
|
613
|
+
customHeaders?: string | undefined;
|
|
614
|
+
enableAutoBranchCreation?: boolean | undefined;
|
|
615
|
+
autoBranchCreationPatterns?: string[] | undefined;
|
|
616
|
+
autoBranchCreationConfig?: AutoBranchCreationConfig | undefined;
|
|
617
|
+
repository?: string | undefined;
|
|
618
|
+
oauthToken?: string | undefined;
|
|
619
|
+
accessToken?: string | undefined;
|
|
620
|
+
cacheConfig?: CacheConfig | undefined;
|
|
621
621
|
}
|
|
622
622
|
export interface UpdateAppResult {
|
|
623
623
|
app: App | undefined;
|
|
@@ -625,22 +625,22 @@ export interface UpdateAppResult {
|
|
|
625
625
|
export interface UpdateBranchRequest {
|
|
626
626
|
appId: string | undefined;
|
|
627
627
|
branchName: string | undefined;
|
|
628
|
-
description?: string;
|
|
629
|
-
framework?: string;
|
|
630
|
-
stage?: Stage;
|
|
631
|
-
enableNotification?: boolean;
|
|
632
|
-
enableAutoBuild?: boolean;
|
|
633
|
-
environmentVariables?: Record<string, string
|
|
634
|
-
basicAuthCredentials?: string;
|
|
635
|
-
enableBasicAuth?: boolean;
|
|
636
|
-
enablePerformanceMode?: boolean;
|
|
637
|
-
buildSpec?: string;
|
|
638
|
-
ttl?: string;
|
|
639
|
-
displayName?: string;
|
|
640
|
-
enablePullRequestPreview?: boolean;
|
|
641
|
-
pullRequestEnvironmentName?: string;
|
|
642
|
-
backendEnvironmentArn?: string;
|
|
643
|
-
backend?: Backend;
|
|
628
|
+
description?: string | undefined;
|
|
629
|
+
framework?: string | undefined;
|
|
630
|
+
stage?: Stage | undefined;
|
|
631
|
+
enableNotification?: boolean | undefined;
|
|
632
|
+
enableAutoBuild?: boolean | undefined;
|
|
633
|
+
environmentVariables?: Record<string, string> | undefined;
|
|
634
|
+
basicAuthCredentials?: string | undefined;
|
|
635
|
+
enableBasicAuth?: boolean | undefined;
|
|
636
|
+
enablePerformanceMode?: boolean | undefined;
|
|
637
|
+
buildSpec?: string | undefined;
|
|
638
|
+
ttl?: string | undefined;
|
|
639
|
+
displayName?: string | undefined;
|
|
640
|
+
enablePullRequestPreview?: boolean | undefined;
|
|
641
|
+
pullRequestEnvironmentName?: string | undefined;
|
|
642
|
+
backendEnvironmentArn?: string | undefined;
|
|
643
|
+
backend?: Backend | undefined;
|
|
644
644
|
}
|
|
645
645
|
export interface UpdateBranchResult {
|
|
646
646
|
branch: Branch | undefined;
|
|
@@ -648,19 +648,19 @@ export interface UpdateBranchResult {
|
|
|
648
648
|
export interface UpdateDomainAssociationRequest {
|
|
649
649
|
appId: string | undefined;
|
|
650
650
|
domainName: string | undefined;
|
|
651
|
-
enableAutoSubDomain?: boolean;
|
|
652
|
-
subDomainSettings?: SubDomainSetting[];
|
|
653
|
-
autoSubDomainCreationPatterns?: string[];
|
|
654
|
-
autoSubDomainIAMRole?: string;
|
|
655
|
-
certificateSettings?: CertificateSettings;
|
|
651
|
+
enableAutoSubDomain?: boolean | undefined;
|
|
652
|
+
subDomainSettings?: SubDomainSetting[] | undefined;
|
|
653
|
+
autoSubDomainCreationPatterns?: string[] | undefined;
|
|
654
|
+
autoSubDomainIAMRole?: string | undefined;
|
|
655
|
+
certificateSettings?: CertificateSettings | undefined;
|
|
656
656
|
}
|
|
657
657
|
export interface UpdateDomainAssociationResult {
|
|
658
658
|
domainAssociation: DomainAssociation | undefined;
|
|
659
659
|
}
|
|
660
660
|
export interface UpdateWebhookRequest {
|
|
661
661
|
webhookId: string | undefined;
|
|
662
|
-
branchName?: string;
|
|
663
|
-
description?: string;
|
|
662
|
+
branchName?: string | undefined;
|
|
663
|
+
description?: string | undefined;
|
|
664
664
|
}
|
|
665
665
|
export interface UpdateWebhookResult {
|
|
666
666
|
webhook: Webhook | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-amplify",
|
|
3
3
|
"description": "AWS SDK for JavaScript Amplify Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.691.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-amplify",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|