@aws-sdk/client-resiliencehub 3.687.0 → 3.692.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 +404 -404
- package/dist-types/ts3.4/models/models_0.d.ts +418 -408
- package/package.json +35 -35
|
@@ -32,8 +32,8 @@ export declare class InternalServerException extends __BaseException {
|
|
|
32
32
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
33
33
|
readonly name: "ResourceNotFoundException";
|
|
34
34
|
readonly $fault: "client";
|
|
35
|
-
resourceId?: string;
|
|
36
|
-
resourceType?: string;
|
|
35
|
+
resourceId?: string | undefined;
|
|
36
|
+
resourceType?: string | undefined;
|
|
37
37
|
constructor(
|
|
38
38
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
39
39
|
);
|
|
@@ -41,7 +41,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
41
41
|
export declare class ThrottlingException extends __BaseException {
|
|
42
42
|
readonly name: "ThrottlingException";
|
|
43
43
|
readonly $fault: "client";
|
|
44
|
-
retryAfterSeconds?: number;
|
|
44
|
+
retryAfterSeconds?: number | undefined;
|
|
45
45
|
constructor(
|
|
46
46
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
47
47
|
);
|
|
@@ -72,18 +72,18 @@ export type PhysicalIdentifierType =
|
|
|
72
72
|
export interface PhysicalResourceId {
|
|
73
73
|
identifier: string | undefined;
|
|
74
74
|
type: PhysicalIdentifierType | undefined;
|
|
75
|
-
awsRegion?: string;
|
|
76
|
-
awsAccountId?: string;
|
|
75
|
+
awsRegion?: string | undefined;
|
|
76
|
+
awsAccountId?: string | undefined;
|
|
77
77
|
}
|
|
78
78
|
export interface ResourceMapping {
|
|
79
|
-
resourceName?: string;
|
|
80
|
-
logicalStackName?: string;
|
|
81
|
-
appRegistryAppName?: string;
|
|
82
|
-
resourceGroupName?: string;
|
|
79
|
+
resourceName?: string | undefined;
|
|
80
|
+
logicalStackName?: string | undefined;
|
|
81
|
+
appRegistryAppName?: string | undefined;
|
|
82
|
+
resourceGroupName?: string | undefined;
|
|
83
83
|
mappingType: ResourceMappingType | undefined;
|
|
84
84
|
physicalResourceId: PhysicalResourceId | undefined;
|
|
85
|
-
terraformSourceName?: string;
|
|
86
|
-
eksSourceName?: string;
|
|
85
|
+
terraformSourceName?: string | undefined;
|
|
86
|
+
eksSourceName?: string | undefined;
|
|
87
87
|
}
|
|
88
88
|
export interface AddDraftAppVersionResourceMappingsRequest {
|
|
89
89
|
appArn: string | undefined;
|
|
@@ -97,8 +97,8 @@ export interface AddDraftAppVersionResourceMappingsResponse {
|
|
|
97
97
|
export declare class ConflictException extends __BaseException {
|
|
98
98
|
readonly name: "ConflictException";
|
|
99
99
|
readonly $fault: "client";
|
|
100
|
-
resourceId?: string;
|
|
101
|
-
resourceType?: string;
|
|
100
|
+
resourceId?: string | undefined;
|
|
101
|
+
resourceType?: string | undefined;
|
|
102
102
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
103
103
|
}
|
|
104
104
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
@@ -116,12 +116,12 @@ export declare const ExcludeRecommendationReason: {
|
|
|
116
116
|
export type ExcludeRecommendationReason =
|
|
117
117
|
(typeof ExcludeRecommendationReason)[keyof typeof ExcludeRecommendationReason];
|
|
118
118
|
export interface RecommendationItem {
|
|
119
|
-
resourceId?: string;
|
|
120
|
-
targetAccountId?: string;
|
|
121
|
-
targetRegion?: string;
|
|
122
|
-
alreadyImplemented?: boolean;
|
|
123
|
-
excluded?: boolean;
|
|
124
|
-
excludeReason?: ExcludeRecommendationReason;
|
|
119
|
+
resourceId?: string | undefined;
|
|
120
|
+
targetAccountId?: string | undefined;
|
|
121
|
+
targetRegion?: string | undefined;
|
|
122
|
+
alreadyImplemented?: boolean | undefined;
|
|
123
|
+
excluded?: boolean | undefined;
|
|
124
|
+
excludeReason?: ExcludeRecommendationReason | undefined;
|
|
125
125
|
}
|
|
126
126
|
export declare const RecommendationStatus: {
|
|
127
127
|
readonly EXCLUDED: "Excluded";
|
|
@@ -143,13 +143,13 @@ export interface AlarmRecommendation {
|
|
|
143
143
|
recommendationId: string | undefined;
|
|
144
144
|
referenceId: string | undefined;
|
|
145
145
|
name: string | undefined;
|
|
146
|
-
description?: string;
|
|
146
|
+
description?: string | undefined;
|
|
147
147
|
type: AlarmType | undefined;
|
|
148
|
-
appComponentName?: string;
|
|
149
|
-
items?: RecommendationItem[];
|
|
150
|
-
prerequisite?: string;
|
|
151
|
-
appComponentNames?: string[];
|
|
152
|
-
recommendationStatus?: RecommendationStatus;
|
|
148
|
+
appComponentName?: string | undefined;
|
|
149
|
+
items?: RecommendationItem[] | undefined;
|
|
150
|
+
prerequisite?: string | undefined;
|
|
151
|
+
appComponentNames?: string[] | undefined;
|
|
152
|
+
recommendationStatus?: RecommendationStatus | undefined;
|
|
153
153
|
}
|
|
154
154
|
export declare const AppAssessmentScheduleType: {
|
|
155
155
|
readonly DAILY: "Daily";
|
|
@@ -182,7 +182,7 @@ export type EventType = (typeof EventType)[keyof typeof EventType];
|
|
|
182
182
|
export interface EventSubscription {
|
|
183
183
|
name: string | undefined;
|
|
184
184
|
eventType: EventType | undefined;
|
|
185
|
-
snsTopicArn?: string;
|
|
185
|
+
snsTopicArn?: string | undefined;
|
|
186
186
|
}
|
|
187
187
|
export declare const PermissionModelType: {
|
|
188
188
|
readonly LEGACY_IAM_USER: "LegacyIAMUser";
|
|
@@ -192,8 +192,8 @@ export type PermissionModelType =
|
|
|
192
192
|
(typeof PermissionModelType)[keyof typeof PermissionModelType];
|
|
193
193
|
export interface PermissionModel {
|
|
194
194
|
type: PermissionModelType | undefined;
|
|
195
|
-
invokerRoleName?: string;
|
|
196
|
-
crossAccountRoleArns?: string[];
|
|
195
|
+
invokerRoleName?: string | undefined;
|
|
196
|
+
crossAccountRoleArns?: string[] | undefined;
|
|
197
197
|
}
|
|
198
198
|
export declare const AppStatusType: {
|
|
199
199
|
readonly ACTIVE: "Active";
|
|
@@ -203,23 +203,23 @@ export type AppStatusType = (typeof AppStatusType)[keyof typeof AppStatusType];
|
|
|
203
203
|
export interface App {
|
|
204
204
|
appArn: string | undefined;
|
|
205
205
|
name: string | undefined;
|
|
206
|
-
description?: string;
|
|
207
|
-
policyArn?: string;
|
|
206
|
+
description?: string | undefined;
|
|
207
|
+
policyArn?: string | undefined;
|
|
208
208
|
creationTime: Date | undefined;
|
|
209
|
-
status?: AppStatusType;
|
|
210
|
-
complianceStatus?: AppComplianceStatusType;
|
|
211
|
-
lastAppComplianceEvaluationTime?: Date;
|
|
212
|
-
resiliencyScore?: number;
|
|
213
|
-
lastResiliencyScoreEvaluationTime?: Date;
|
|
214
|
-
tags?: Record<string, string
|
|
215
|
-
assessmentSchedule?: AppAssessmentScheduleType;
|
|
216
|
-
permissionModel?: PermissionModel;
|
|
217
|
-
eventSubscriptions?: EventSubscription[];
|
|
218
|
-
driftStatus?: AppDriftStatusType;
|
|
219
|
-
lastDriftEvaluationTime?: Date;
|
|
220
|
-
rtoInSecs?: number;
|
|
221
|
-
rpoInSecs?: number;
|
|
222
|
-
awsApplicationArn?: string;
|
|
209
|
+
status?: AppStatusType | undefined;
|
|
210
|
+
complianceStatus?: AppComplianceStatusType | undefined;
|
|
211
|
+
lastAppComplianceEvaluationTime?: Date | undefined;
|
|
212
|
+
resiliencyScore?: number | undefined;
|
|
213
|
+
lastResiliencyScoreEvaluationTime?: Date | undefined;
|
|
214
|
+
tags?: Record<string, string> | undefined;
|
|
215
|
+
assessmentSchedule?: AppAssessmentScheduleType | undefined;
|
|
216
|
+
permissionModel?: PermissionModel | undefined;
|
|
217
|
+
eventSubscriptions?: EventSubscription[] | undefined;
|
|
218
|
+
driftStatus?: AppDriftStatusType | undefined;
|
|
219
|
+
lastDriftEvaluationTime?: Date | undefined;
|
|
220
|
+
rtoInSecs?: number | undefined;
|
|
221
|
+
rpoInSecs?: number | undefined;
|
|
222
|
+
awsApplicationArn?: string | undefined;
|
|
223
223
|
}
|
|
224
224
|
export declare const AssessmentStatus: {
|
|
225
225
|
readonly FAILED: "Failed";
|
|
@@ -246,16 +246,16 @@ export declare const ComplianceStatus: {
|
|
|
246
246
|
export type ComplianceStatus =
|
|
247
247
|
(typeof ComplianceStatus)[keyof typeof ComplianceStatus];
|
|
248
248
|
export interface DisruptionCompliance {
|
|
249
|
-
achievableRtoInSecs?: number;
|
|
250
|
-
currentRtoInSecs?: number;
|
|
251
|
-
rtoReferenceId?: string;
|
|
252
|
-
rtoDescription?: string;
|
|
253
|
-
currentRpoInSecs?: number;
|
|
254
|
-
rpoReferenceId?: string;
|
|
255
|
-
rpoDescription?: string;
|
|
249
|
+
achievableRtoInSecs?: number | undefined;
|
|
250
|
+
currentRtoInSecs?: number | undefined;
|
|
251
|
+
rtoReferenceId?: string | undefined;
|
|
252
|
+
rtoDescription?: string | undefined;
|
|
253
|
+
currentRpoInSecs?: number | undefined;
|
|
254
|
+
rpoReferenceId?: string | undefined;
|
|
255
|
+
rpoDescription?: string | undefined;
|
|
256
256
|
complianceStatus: ComplianceStatus | undefined;
|
|
257
|
-
achievableRpoInSecs?: number;
|
|
258
|
-
message?: string;
|
|
257
|
+
achievableRpoInSecs?: number | undefined;
|
|
258
|
+
message?: string | undefined;
|
|
259
259
|
}
|
|
260
260
|
export declare const CostFrequency: {
|
|
261
261
|
readonly DAILY: "Daily";
|
|
@@ -311,15 +311,15 @@ export declare const ResiliencyPolicyTier: {
|
|
|
311
311
|
export type ResiliencyPolicyTier =
|
|
312
312
|
(typeof ResiliencyPolicyTier)[keyof typeof ResiliencyPolicyTier];
|
|
313
313
|
export interface ResiliencyPolicy {
|
|
314
|
-
policyArn?: string;
|
|
315
|
-
policyName?: string;
|
|
316
|
-
policyDescription?: string;
|
|
317
|
-
dataLocationConstraint?: DataLocationConstraint;
|
|
318
|
-
tier?: ResiliencyPolicyTier;
|
|
319
|
-
estimatedCostTier?: EstimatedCostTier;
|
|
320
|
-
policy?: Partial<Record<DisruptionType, FailurePolicy
|
|
321
|
-
creationTime?: Date;
|
|
322
|
-
tags?: Record<string, string
|
|
314
|
+
policyArn?: string | undefined;
|
|
315
|
+
policyName?: string | undefined;
|
|
316
|
+
policyDescription?: string | undefined;
|
|
317
|
+
dataLocationConstraint?: DataLocationConstraint | undefined;
|
|
318
|
+
tier?: ResiliencyPolicyTier | undefined;
|
|
319
|
+
estimatedCostTier?: EstimatedCostTier | undefined;
|
|
320
|
+
policy?: Partial<Record<DisruptionType, FailurePolicy>> | undefined;
|
|
321
|
+
creationTime?: Date | undefined;
|
|
322
|
+
tags?: Record<string, string> | undefined;
|
|
323
323
|
}
|
|
324
324
|
export declare const ResiliencyScoreType: {
|
|
325
325
|
readonly ALARM: "Alarm";
|
|
@@ -330,86 +330,90 @@ export declare const ResiliencyScoreType: {
|
|
|
330
330
|
export type ResiliencyScoreType =
|
|
331
331
|
(typeof ResiliencyScoreType)[keyof typeof ResiliencyScoreType];
|
|
332
332
|
export interface ScoringComponentResiliencyScore {
|
|
333
|
-
score?: number;
|
|
334
|
-
possibleScore?: number;
|
|
335
|
-
outstandingCount?: number;
|
|
336
|
-
excludedCount?: number;
|
|
333
|
+
score?: number | undefined;
|
|
334
|
+
possibleScore?: number | undefined;
|
|
335
|
+
outstandingCount?: number | undefined;
|
|
336
|
+
excludedCount?: number | undefined;
|
|
337
337
|
}
|
|
338
338
|
export interface ResiliencyScore {
|
|
339
339
|
score: number | undefined;
|
|
340
340
|
disruptionScore: Partial<Record<DisruptionType, number>> | undefined;
|
|
341
|
-
componentScore?:
|
|
342
|
-
Record<ResiliencyScoreType, ScoringComponentResiliencyScore
|
|
343
|
-
|
|
341
|
+
componentScore?:
|
|
342
|
+
| Partial<Record<ResiliencyScoreType, ScoringComponentResiliencyScore>>
|
|
343
|
+
| undefined;
|
|
344
344
|
}
|
|
345
345
|
export interface ResourceError {
|
|
346
|
-
logicalResourceId?: string;
|
|
347
|
-
physicalResourceId?: string;
|
|
348
|
-
reason?: string;
|
|
346
|
+
logicalResourceId?: string | undefined;
|
|
347
|
+
physicalResourceId?: string | undefined;
|
|
348
|
+
reason?: string | undefined;
|
|
349
349
|
}
|
|
350
350
|
export interface ResourceErrorsDetails {
|
|
351
|
-
resourceErrors?: ResourceError[];
|
|
352
|
-
hasMoreErrors?: boolean;
|
|
351
|
+
resourceErrors?: ResourceError[] | undefined;
|
|
352
|
+
hasMoreErrors?: boolean | undefined;
|
|
353
353
|
}
|
|
354
354
|
export interface AssessmentRiskRecommendation {
|
|
355
|
-
risk?: string;
|
|
356
|
-
recommendation?: string;
|
|
357
|
-
appComponents?: string[];
|
|
355
|
+
risk?: string | undefined;
|
|
356
|
+
recommendation?: string | undefined;
|
|
357
|
+
appComponents?: string[] | undefined;
|
|
358
358
|
}
|
|
359
359
|
export interface AssessmentSummary {
|
|
360
|
-
summary?: string;
|
|
361
|
-
riskRecommendations?: AssessmentRiskRecommendation[];
|
|
360
|
+
summary?: string | undefined;
|
|
361
|
+
riskRecommendations?: AssessmentRiskRecommendation[] | undefined;
|
|
362
362
|
}
|
|
363
363
|
export interface AppAssessment {
|
|
364
|
-
appArn?: string;
|
|
365
|
-
appVersion?: string;
|
|
364
|
+
appArn?: string | undefined;
|
|
365
|
+
appVersion?: string | undefined;
|
|
366
366
|
invoker: AssessmentInvoker | undefined;
|
|
367
|
-
cost?: Cost;
|
|
368
|
-
resiliencyScore?: ResiliencyScore;
|
|
369
|
-
compliance?:
|
|
370
|
-
|
|
367
|
+
cost?: Cost | undefined;
|
|
368
|
+
resiliencyScore?: ResiliencyScore | undefined;
|
|
369
|
+
compliance?:
|
|
370
|
+
| Partial<Record<DisruptionType, DisruptionCompliance>>
|
|
371
|
+
| undefined;
|
|
372
|
+
complianceStatus?: ComplianceStatus | undefined;
|
|
371
373
|
assessmentStatus: AssessmentStatus | undefined;
|
|
372
|
-
startTime?: Date;
|
|
373
|
-
endTime?: Date;
|
|
374
|
-
message?: string;
|
|
375
|
-
assessmentName?: string;
|
|
374
|
+
startTime?: Date | undefined;
|
|
375
|
+
endTime?: Date | undefined;
|
|
376
|
+
message?: string | undefined;
|
|
377
|
+
assessmentName?: string | undefined;
|
|
376
378
|
assessmentArn: string | undefined;
|
|
377
|
-
policy?: ResiliencyPolicy;
|
|
378
|
-
tags?: Record<string, string
|
|
379
|
-
resourceErrorsDetails?: ResourceErrorsDetails;
|
|
380
|
-
versionName?: string;
|
|
381
|
-
driftStatus?: DriftStatus;
|
|
382
|
-
summary?: AssessmentSummary;
|
|
379
|
+
policy?: ResiliencyPolicy | undefined;
|
|
380
|
+
tags?: Record<string, string> | undefined;
|
|
381
|
+
resourceErrorsDetails?: ResourceErrorsDetails | undefined;
|
|
382
|
+
versionName?: string | undefined;
|
|
383
|
+
driftStatus?: DriftStatus | undefined;
|
|
384
|
+
summary?: AssessmentSummary | undefined;
|
|
383
385
|
}
|
|
384
386
|
export interface AppAssessmentSummary {
|
|
385
|
-
appArn?: string;
|
|
386
|
-
appVersion?: string;
|
|
387
|
+
appArn?: string | undefined;
|
|
388
|
+
appVersion?: string | undefined;
|
|
387
389
|
assessmentStatus: AssessmentStatus | undefined;
|
|
388
|
-
invoker?: AssessmentInvoker;
|
|
389
|
-
startTime?: Date;
|
|
390
|
-
endTime?: Date;
|
|
391
|
-
message?: string;
|
|
392
|
-
assessmentName?: string;
|
|
390
|
+
invoker?: AssessmentInvoker | undefined;
|
|
391
|
+
startTime?: Date | undefined;
|
|
392
|
+
endTime?: Date | undefined;
|
|
393
|
+
message?: string | undefined;
|
|
394
|
+
assessmentName?: string | undefined;
|
|
393
395
|
assessmentArn: string | undefined;
|
|
394
|
-
complianceStatus?: ComplianceStatus;
|
|
395
|
-
cost?: Cost;
|
|
396
|
-
resiliencyScore?: number;
|
|
397
|
-
versionName?: string;
|
|
398
|
-
driftStatus?: DriftStatus;
|
|
396
|
+
complianceStatus?: ComplianceStatus | undefined;
|
|
397
|
+
cost?: Cost | undefined;
|
|
398
|
+
resiliencyScore?: number | undefined;
|
|
399
|
+
versionName?: string | undefined;
|
|
400
|
+
driftStatus?: DriftStatus | undefined;
|
|
399
401
|
}
|
|
400
402
|
export interface AppComponent {
|
|
401
403
|
name: string | undefined;
|
|
402
404
|
type: string | undefined;
|
|
403
|
-
id?: string;
|
|
404
|
-
additionalInfo?: Record<string, string[]
|
|
405
|
+
id?: string | undefined;
|
|
406
|
+
additionalInfo?: Record<string, string[]> | undefined;
|
|
405
407
|
}
|
|
406
408
|
export interface AppComponentCompliance {
|
|
407
|
-
cost?: Cost;
|
|
408
|
-
appComponentName?: string;
|
|
409
|
-
compliance?:
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
409
|
+
cost?: Cost | undefined;
|
|
410
|
+
appComponentName?: string | undefined;
|
|
411
|
+
compliance?:
|
|
412
|
+
| Partial<Record<DisruptionType, DisruptionCompliance>>
|
|
413
|
+
| undefined;
|
|
414
|
+
message?: string | undefined;
|
|
415
|
+
status?: ComplianceStatus | undefined;
|
|
416
|
+
resiliencyScore?: ResiliencyScore | undefined;
|
|
413
417
|
}
|
|
414
418
|
export interface EksSourceClusterNamespace {
|
|
415
419
|
eksClusterArn: string | undefined;
|
|
@@ -419,45 +423,45 @@ export interface TerraformSource {
|
|
|
419
423
|
s3StateFileUrl: string | undefined;
|
|
420
424
|
}
|
|
421
425
|
export interface AppInputSource {
|
|
422
|
-
sourceName?: string;
|
|
426
|
+
sourceName?: string | undefined;
|
|
423
427
|
importType: ResourceMappingType | undefined;
|
|
424
|
-
sourceArn?: string;
|
|
425
|
-
terraformSource?: TerraformSource;
|
|
426
|
-
resourceCount?: number;
|
|
427
|
-
eksSourceClusterNamespace?: EksSourceClusterNamespace;
|
|
428
|
+
sourceArn?: string | undefined;
|
|
429
|
+
terraformSource?: TerraformSource | undefined;
|
|
430
|
+
resourceCount?: number | undefined;
|
|
431
|
+
eksSourceClusterNamespace?: EksSourceClusterNamespace | undefined;
|
|
428
432
|
}
|
|
429
433
|
export interface AppSummary {
|
|
430
434
|
appArn: string | undefined;
|
|
431
435
|
name: string | undefined;
|
|
432
|
-
description?: string;
|
|
436
|
+
description?: string | undefined;
|
|
433
437
|
creationTime: Date | undefined;
|
|
434
|
-
complianceStatus?: AppComplianceStatusType;
|
|
435
|
-
resiliencyScore?: number;
|
|
436
|
-
assessmentSchedule?: AppAssessmentScheduleType;
|
|
437
|
-
status?: AppStatusType;
|
|
438
|
-
driftStatus?: AppDriftStatusType;
|
|
439
|
-
lastAppComplianceEvaluationTime?: Date;
|
|
440
|
-
rtoInSecs?: number;
|
|
441
|
-
rpoInSecs?: number;
|
|
442
|
-
awsApplicationArn?: string;
|
|
438
|
+
complianceStatus?: AppComplianceStatusType | undefined;
|
|
439
|
+
resiliencyScore?: number | undefined;
|
|
440
|
+
assessmentSchedule?: AppAssessmentScheduleType | undefined;
|
|
441
|
+
status?: AppStatusType | undefined;
|
|
442
|
+
driftStatus?: AppDriftStatusType | undefined;
|
|
443
|
+
lastAppComplianceEvaluationTime?: Date | undefined;
|
|
444
|
+
rtoInSecs?: number | undefined;
|
|
445
|
+
rpoInSecs?: number | undefined;
|
|
446
|
+
awsApplicationArn?: string | undefined;
|
|
443
447
|
}
|
|
444
448
|
export interface AppVersionSummary {
|
|
445
449
|
appVersion: string | undefined;
|
|
446
|
-
identifier?: number;
|
|
447
|
-
creationTime?: Date;
|
|
448
|
-
versionName?: string;
|
|
450
|
+
identifier?: number | undefined;
|
|
451
|
+
creationTime?: Date | undefined;
|
|
452
|
+
versionName?: string | undefined;
|
|
449
453
|
}
|
|
450
454
|
export interface UpdateRecommendationStatusItem {
|
|
451
|
-
resourceId?: string;
|
|
452
|
-
targetAccountId?: string;
|
|
453
|
-
targetRegion?: string;
|
|
455
|
+
resourceId?: string | undefined;
|
|
456
|
+
targetAccountId?: string | undefined;
|
|
457
|
+
targetRegion?: string | undefined;
|
|
454
458
|
}
|
|
455
459
|
export interface UpdateRecommendationStatusRequestEntry {
|
|
456
460
|
entryId: string | undefined;
|
|
457
461
|
referenceId: string | undefined;
|
|
458
|
-
item?: UpdateRecommendationStatusItem;
|
|
462
|
+
item?: UpdateRecommendationStatusItem | undefined;
|
|
459
463
|
excluded: boolean | undefined;
|
|
460
|
-
excludeReason?: ExcludeRecommendationReason;
|
|
464
|
+
excludeReason?: ExcludeRecommendationReason | undefined;
|
|
461
465
|
}
|
|
462
466
|
export interface BatchUpdateRecommendationStatusRequest {
|
|
463
467
|
appArn: string | undefined;
|
|
@@ -470,9 +474,9 @@ export interface BatchUpdateRecommendationStatusFailedEntry {
|
|
|
470
474
|
export interface BatchUpdateRecommendationStatusSuccessfulEntry {
|
|
471
475
|
entryId: string | undefined;
|
|
472
476
|
referenceId: string | undefined;
|
|
473
|
-
item?: UpdateRecommendationStatusItem;
|
|
477
|
+
item?: UpdateRecommendationStatusItem | undefined;
|
|
474
478
|
excluded: boolean | undefined;
|
|
475
|
-
excludeReason?: ExcludeRecommendationReason;
|
|
479
|
+
excludeReason?: ExcludeRecommendationReason | undefined;
|
|
476
480
|
}
|
|
477
481
|
export interface BatchUpdateRecommendationStatusResponse {
|
|
478
482
|
appArn: string | undefined;
|
|
@@ -483,49 +487,49 @@ export interface BatchUpdateRecommendationStatusResponse {
|
|
|
483
487
|
}
|
|
484
488
|
export interface CreateAppRequest {
|
|
485
489
|
name: string | undefined;
|
|
486
|
-
description?: string;
|
|
487
|
-
policyArn?: string;
|
|
488
|
-
tags?: Record<string, string
|
|
489
|
-
clientToken?: string;
|
|
490
|
-
assessmentSchedule?: AppAssessmentScheduleType;
|
|
491
|
-
permissionModel?: PermissionModel;
|
|
492
|
-
eventSubscriptions?: EventSubscription[];
|
|
493
|
-
awsApplicationArn?: string;
|
|
490
|
+
description?: string | undefined;
|
|
491
|
+
policyArn?: string | undefined;
|
|
492
|
+
tags?: Record<string, string> | undefined;
|
|
493
|
+
clientToken?: string | undefined;
|
|
494
|
+
assessmentSchedule?: AppAssessmentScheduleType | undefined;
|
|
495
|
+
permissionModel?: PermissionModel | undefined;
|
|
496
|
+
eventSubscriptions?: EventSubscription[] | undefined;
|
|
497
|
+
awsApplicationArn?: string | undefined;
|
|
494
498
|
}
|
|
495
499
|
export interface CreateAppResponse {
|
|
496
500
|
app: App | undefined;
|
|
497
501
|
}
|
|
498
502
|
export interface CreateAppVersionAppComponentRequest {
|
|
499
503
|
appArn: string | undefined;
|
|
500
|
-
id?: string;
|
|
504
|
+
id?: string | undefined;
|
|
501
505
|
name: string | undefined;
|
|
502
506
|
type: string | undefined;
|
|
503
|
-
additionalInfo?: Record<string, string[]
|
|
504
|
-
clientToken?: string;
|
|
507
|
+
additionalInfo?: Record<string, string[]> | undefined;
|
|
508
|
+
clientToken?: string | undefined;
|
|
505
509
|
}
|
|
506
510
|
export interface CreateAppVersionAppComponentResponse {
|
|
507
511
|
appArn: string | undefined;
|
|
508
512
|
appVersion: string | undefined;
|
|
509
|
-
appComponent?: AppComponent;
|
|
513
|
+
appComponent?: AppComponent | undefined;
|
|
510
514
|
}
|
|
511
515
|
export interface LogicalResourceId {
|
|
512
516
|
identifier: string | undefined;
|
|
513
|
-
logicalStackName?: string;
|
|
514
|
-
resourceGroupName?: string;
|
|
515
|
-
terraformSourceName?: string;
|
|
516
|
-
eksSourceName?: string;
|
|
517
|
+
logicalStackName?: string | undefined;
|
|
518
|
+
resourceGroupName?: string | undefined;
|
|
519
|
+
terraformSourceName?: string | undefined;
|
|
520
|
+
eksSourceName?: string | undefined;
|
|
517
521
|
}
|
|
518
522
|
export interface CreateAppVersionResourceRequest {
|
|
519
523
|
appArn: string | undefined;
|
|
520
|
-
resourceName?: string;
|
|
524
|
+
resourceName?: string | undefined;
|
|
521
525
|
logicalResourceId: LogicalResourceId | undefined;
|
|
522
526
|
physicalResourceId: string | undefined;
|
|
523
|
-
awsRegion?: string;
|
|
524
|
-
awsAccountId?: string;
|
|
527
|
+
awsRegion?: string | undefined;
|
|
528
|
+
awsAccountId?: string | undefined;
|
|
525
529
|
resourceType: string | undefined;
|
|
526
530
|
appComponents: string[] | undefined;
|
|
527
|
-
additionalInfo?: Record<string, string[]
|
|
528
|
-
clientToken?: string;
|
|
531
|
+
additionalInfo?: Record<string, string[]> | undefined;
|
|
532
|
+
clientToken?: string | undefined;
|
|
529
533
|
}
|
|
530
534
|
export declare const ResourceSourceType: {
|
|
531
535
|
readonly APP_TEMPLATE: "AppTemplate";
|
|
@@ -534,20 +538,20 @@ export declare const ResourceSourceType: {
|
|
|
534
538
|
export type ResourceSourceType =
|
|
535
539
|
(typeof ResourceSourceType)[keyof typeof ResourceSourceType];
|
|
536
540
|
export interface PhysicalResource {
|
|
537
|
-
resourceName?: string;
|
|
541
|
+
resourceName?: string | undefined;
|
|
538
542
|
logicalResourceId: LogicalResourceId | undefined;
|
|
539
543
|
physicalResourceId: PhysicalResourceId | undefined;
|
|
540
544
|
resourceType: string | undefined;
|
|
541
|
-
appComponents?: AppComponent[];
|
|
542
|
-
additionalInfo?: Record<string, string[]
|
|
543
|
-
excluded?: boolean;
|
|
544
|
-
sourceType?: ResourceSourceType;
|
|
545
|
-
parentResourceName?: string;
|
|
545
|
+
appComponents?: AppComponent[] | undefined;
|
|
546
|
+
additionalInfo?: Record<string, string[]> | undefined;
|
|
547
|
+
excluded?: boolean | undefined;
|
|
548
|
+
sourceType?: ResourceSourceType | undefined;
|
|
549
|
+
parentResourceName?: string | undefined;
|
|
546
550
|
}
|
|
547
551
|
export interface CreateAppVersionResourceResponse {
|
|
548
552
|
appArn: string | undefined;
|
|
549
553
|
appVersion: string | undefined;
|
|
550
|
-
physicalResource?: PhysicalResource;
|
|
554
|
+
physicalResource?: PhysicalResource | undefined;
|
|
551
555
|
}
|
|
552
556
|
export declare const TemplateFormat: {
|
|
553
557
|
readonly CFN_JSON: "CfnJson";
|
|
@@ -563,14 +567,14 @@ export declare const RenderRecommendationType: {
|
|
|
563
567
|
export type RenderRecommendationType =
|
|
564
568
|
(typeof RenderRecommendationType)[keyof typeof RenderRecommendationType];
|
|
565
569
|
export interface CreateRecommendationTemplateRequest {
|
|
566
|
-
recommendationIds?: string[];
|
|
567
|
-
format?: TemplateFormat;
|
|
568
|
-
recommendationTypes?: RenderRecommendationType[];
|
|
570
|
+
recommendationIds?: string[] | undefined;
|
|
571
|
+
format?: TemplateFormat | undefined;
|
|
572
|
+
recommendationTypes?: RenderRecommendationType[] | undefined;
|
|
569
573
|
assessmentArn: string | undefined;
|
|
570
574
|
name: string | undefined;
|
|
571
|
-
clientToken?: string;
|
|
572
|
-
tags?: Record<string, string
|
|
573
|
-
bucketName?: string;
|
|
575
|
+
clientToken?: string | undefined;
|
|
576
|
+
tags?: Record<string, string> | undefined;
|
|
577
|
+
bucketName?: string | undefined;
|
|
574
578
|
}
|
|
575
579
|
export declare const RecommendationTemplateStatus: {
|
|
576
580
|
readonly FAILED: "Failed";
|
|
@@ -581,51 +585,51 @@ export declare const RecommendationTemplateStatus: {
|
|
|
581
585
|
export type RecommendationTemplateStatus =
|
|
582
586
|
(typeof RecommendationTemplateStatus)[keyof typeof RecommendationTemplateStatus];
|
|
583
587
|
export interface S3Location {
|
|
584
|
-
bucket?: string;
|
|
585
|
-
prefix?: string;
|
|
588
|
+
bucket?: string | undefined;
|
|
589
|
+
prefix?: string | undefined;
|
|
586
590
|
}
|
|
587
591
|
export interface RecommendationTemplate {
|
|
588
|
-
templatesLocation?: S3Location;
|
|
592
|
+
templatesLocation?: S3Location | undefined;
|
|
589
593
|
assessmentArn: string | undefined;
|
|
590
|
-
appArn?: string;
|
|
591
|
-
recommendationIds?: string[];
|
|
594
|
+
appArn?: string | undefined;
|
|
595
|
+
recommendationIds?: string[] | undefined;
|
|
592
596
|
recommendationTypes: RenderRecommendationType[] | undefined;
|
|
593
597
|
format: TemplateFormat | undefined;
|
|
594
598
|
recommendationTemplateArn: string | undefined;
|
|
595
|
-
message?: string;
|
|
599
|
+
message?: string | undefined;
|
|
596
600
|
status: RecommendationTemplateStatus | undefined;
|
|
597
601
|
name: string | undefined;
|
|
598
|
-
startTime?: Date;
|
|
599
|
-
endTime?: Date;
|
|
600
|
-
tags?: Record<string, string
|
|
601
|
-
needsReplacements?: boolean;
|
|
602
|
+
startTime?: Date | undefined;
|
|
603
|
+
endTime?: Date | undefined;
|
|
604
|
+
tags?: Record<string, string> | undefined;
|
|
605
|
+
needsReplacements?: boolean | undefined;
|
|
602
606
|
}
|
|
603
607
|
export interface CreateRecommendationTemplateResponse {
|
|
604
|
-
recommendationTemplate?: RecommendationTemplate;
|
|
608
|
+
recommendationTemplate?: RecommendationTemplate | undefined;
|
|
605
609
|
}
|
|
606
610
|
export interface CreateResiliencyPolicyRequest {
|
|
607
611
|
policyName: string | undefined;
|
|
608
|
-
policyDescription?: string;
|
|
609
|
-
dataLocationConstraint?: DataLocationConstraint;
|
|
612
|
+
policyDescription?: string | undefined;
|
|
613
|
+
dataLocationConstraint?: DataLocationConstraint | undefined;
|
|
610
614
|
tier: ResiliencyPolicyTier | undefined;
|
|
611
615
|
policy: Partial<Record<DisruptionType, FailurePolicy>> | undefined;
|
|
612
|
-
clientToken?: string;
|
|
613
|
-
tags?: Record<string, string
|
|
616
|
+
clientToken?: string | undefined;
|
|
617
|
+
tags?: Record<string, string> | undefined;
|
|
614
618
|
}
|
|
615
619
|
export interface CreateResiliencyPolicyResponse {
|
|
616
620
|
policy: ResiliencyPolicy | undefined;
|
|
617
621
|
}
|
|
618
622
|
export interface DeleteAppRequest {
|
|
619
623
|
appArn: string | undefined;
|
|
620
|
-
forceDelete?: boolean;
|
|
621
|
-
clientToken?: string;
|
|
624
|
+
forceDelete?: boolean | undefined;
|
|
625
|
+
clientToken?: string | undefined;
|
|
622
626
|
}
|
|
623
627
|
export interface DeleteAppResponse {
|
|
624
628
|
appArn: string | undefined;
|
|
625
629
|
}
|
|
626
630
|
export interface DeleteAppAssessmentRequest {
|
|
627
631
|
assessmentArn: string | undefined;
|
|
628
|
-
clientToken?: string;
|
|
632
|
+
clientToken?: string | undefined;
|
|
629
633
|
}
|
|
630
634
|
export interface DeleteAppAssessmentResponse {
|
|
631
635
|
assessmentArn: string | undefined;
|
|
@@ -633,42 +637,42 @@ export interface DeleteAppAssessmentResponse {
|
|
|
633
637
|
}
|
|
634
638
|
export interface DeleteAppInputSourceRequest {
|
|
635
639
|
appArn: string | undefined;
|
|
636
|
-
sourceArn?: string;
|
|
637
|
-
terraformSource?: TerraformSource;
|
|
638
|
-
clientToken?: string;
|
|
639
|
-
eksSourceClusterNamespace?: EksSourceClusterNamespace;
|
|
640
|
+
sourceArn?: string | undefined;
|
|
641
|
+
terraformSource?: TerraformSource | undefined;
|
|
642
|
+
clientToken?: string | undefined;
|
|
643
|
+
eksSourceClusterNamespace?: EksSourceClusterNamespace | undefined;
|
|
640
644
|
}
|
|
641
645
|
export interface DeleteAppInputSourceResponse {
|
|
642
|
-
appArn?: string;
|
|
643
|
-
appInputSource?: AppInputSource;
|
|
646
|
+
appArn?: string | undefined;
|
|
647
|
+
appInputSource?: AppInputSource | undefined;
|
|
644
648
|
}
|
|
645
649
|
export interface DeleteAppVersionAppComponentRequest {
|
|
646
650
|
appArn: string | undefined;
|
|
647
651
|
id: string | undefined;
|
|
648
|
-
clientToken?: string;
|
|
652
|
+
clientToken?: string | undefined;
|
|
649
653
|
}
|
|
650
654
|
export interface DeleteAppVersionAppComponentResponse {
|
|
651
655
|
appArn: string | undefined;
|
|
652
656
|
appVersion: string | undefined;
|
|
653
|
-
appComponent?: AppComponent;
|
|
657
|
+
appComponent?: AppComponent | undefined;
|
|
654
658
|
}
|
|
655
659
|
export interface DeleteAppVersionResourceRequest {
|
|
656
660
|
appArn: string | undefined;
|
|
657
|
-
resourceName?: string;
|
|
658
|
-
logicalResourceId?: LogicalResourceId;
|
|
659
|
-
physicalResourceId?: string;
|
|
660
|
-
awsRegion?: string;
|
|
661
|
-
awsAccountId?: string;
|
|
662
|
-
clientToken?: string;
|
|
661
|
+
resourceName?: string | undefined;
|
|
662
|
+
logicalResourceId?: LogicalResourceId | undefined;
|
|
663
|
+
physicalResourceId?: string | undefined;
|
|
664
|
+
awsRegion?: string | undefined;
|
|
665
|
+
awsAccountId?: string | undefined;
|
|
666
|
+
clientToken?: string | undefined;
|
|
663
667
|
}
|
|
664
668
|
export interface DeleteAppVersionResourceResponse {
|
|
665
669
|
appArn: string | undefined;
|
|
666
670
|
appVersion: string | undefined;
|
|
667
|
-
physicalResource?: PhysicalResource;
|
|
671
|
+
physicalResource?: PhysicalResource | undefined;
|
|
668
672
|
}
|
|
669
673
|
export interface DeleteRecommendationTemplateRequest {
|
|
670
674
|
recommendationTemplateArn: string | undefined;
|
|
671
|
-
clientToken?: string;
|
|
675
|
+
clientToken?: string | undefined;
|
|
672
676
|
}
|
|
673
677
|
export interface DeleteRecommendationTemplateResponse {
|
|
674
678
|
recommendationTemplateArn: string | undefined;
|
|
@@ -676,7 +680,7 @@ export interface DeleteRecommendationTemplateResponse {
|
|
|
676
680
|
}
|
|
677
681
|
export interface DeleteResiliencyPolicyRequest {
|
|
678
682
|
policyArn: string | undefined;
|
|
679
|
-
clientToken?: string;
|
|
683
|
+
clientToken?: string | undefined;
|
|
680
684
|
}
|
|
681
685
|
export interface DeleteResiliencyPolicyResponse {
|
|
682
686
|
policyArn: string | undefined;
|
|
@@ -700,7 +704,7 @@ export interface DescribeAppVersionRequest {
|
|
|
700
704
|
export interface DescribeAppVersionResponse {
|
|
701
705
|
appArn: string | undefined;
|
|
702
706
|
appVersion: string | undefined;
|
|
703
|
-
additionalInfo?: Record<string, string[]
|
|
707
|
+
additionalInfo?: Record<string, string[]> | undefined;
|
|
704
708
|
}
|
|
705
709
|
export interface DescribeAppVersionAppComponentRequest {
|
|
706
710
|
appArn: string | undefined;
|
|
@@ -710,26 +714,26 @@ export interface DescribeAppVersionAppComponentRequest {
|
|
|
710
714
|
export interface DescribeAppVersionAppComponentResponse {
|
|
711
715
|
appArn: string | undefined;
|
|
712
716
|
appVersion: string | undefined;
|
|
713
|
-
appComponent?: AppComponent;
|
|
717
|
+
appComponent?: AppComponent | undefined;
|
|
714
718
|
}
|
|
715
719
|
export interface DescribeAppVersionResourceRequest {
|
|
716
720
|
appArn: string | undefined;
|
|
717
721
|
appVersion: string | undefined;
|
|
718
|
-
resourceName?: string;
|
|
719
|
-
logicalResourceId?: LogicalResourceId;
|
|
720
|
-
physicalResourceId?: string;
|
|
721
|
-
awsRegion?: string;
|
|
722
|
-
awsAccountId?: string;
|
|
722
|
+
resourceName?: string | undefined;
|
|
723
|
+
logicalResourceId?: LogicalResourceId | undefined;
|
|
724
|
+
physicalResourceId?: string | undefined;
|
|
725
|
+
awsRegion?: string | undefined;
|
|
726
|
+
awsAccountId?: string | undefined;
|
|
723
727
|
}
|
|
724
728
|
export interface DescribeAppVersionResourceResponse {
|
|
725
729
|
appArn: string | undefined;
|
|
726
730
|
appVersion: string | undefined;
|
|
727
|
-
physicalResource?: PhysicalResource;
|
|
731
|
+
physicalResource?: PhysicalResource | undefined;
|
|
728
732
|
}
|
|
729
733
|
export interface DescribeAppVersionResourcesResolutionStatusRequest {
|
|
730
734
|
appArn: string | undefined;
|
|
731
735
|
appVersion: string | undefined;
|
|
732
|
-
resolutionId?: string;
|
|
736
|
+
resolutionId?: string | undefined;
|
|
733
737
|
}
|
|
734
738
|
export declare const ResourceResolutionStatusType: {
|
|
735
739
|
readonly FAILED: "Failed";
|
|
@@ -744,7 +748,7 @@ export interface DescribeAppVersionResourcesResolutionStatusResponse {
|
|
|
744
748
|
appVersion: string | undefined;
|
|
745
749
|
resolutionId: string | undefined;
|
|
746
750
|
status: ResourceResolutionStatusType | undefined;
|
|
747
|
-
errorMessage?: string;
|
|
751
|
+
errorMessage?: string | undefined;
|
|
748
752
|
}
|
|
749
753
|
export interface DescribeAppVersionTemplateRequest {
|
|
750
754
|
appArn: string | undefined;
|
|
@@ -759,7 +763,7 @@ export interface DescribeDraftAppVersionResourcesImportStatusRequest {
|
|
|
759
763
|
appArn: string | undefined;
|
|
760
764
|
}
|
|
761
765
|
export interface ErrorDetail {
|
|
762
|
-
errorMessage?: string;
|
|
766
|
+
errorMessage?: string | undefined;
|
|
763
767
|
}
|
|
764
768
|
export declare const ResourceImportStatusType: {
|
|
765
769
|
readonly FAILED: "Failed";
|
|
@@ -774,8 +778,8 @@ export interface DescribeDraftAppVersionResourcesImportStatusResponse {
|
|
|
774
778
|
appVersion: string | undefined;
|
|
775
779
|
status: ResourceImportStatusType | undefined;
|
|
776
780
|
statusChangeTime: Date | undefined;
|
|
777
|
-
errorMessage?: string;
|
|
778
|
-
errorDetails?: ErrorDetail[];
|
|
781
|
+
errorMessage?: string | undefined;
|
|
782
|
+
errorDetails?: ErrorDetail[] | undefined;
|
|
779
783
|
}
|
|
780
784
|
export interface DescribeResiliencyPolicyRequest {
|
|
781
785
|
policyArn: string | undefined;
|
|
@@ -785,7 +789,7 @@ export interface DescribeResiliencyPolicyResponse {
|
|
|
785
789
|
}
|
|
786
790
|
export interface DescribeResourceGroupingRecommendationTaskRequest {
|
|
787
791
|
appArn: string | undefined;
|
|
788
|
-
groupingId?: string;
|
|
792
|
+
groupingId?: string | undefined;
|
|
789
793
|
}
|
|
790
794
|
export declare const ResourcesGroupingRecGenStatusType: {
|
|
791
795
|
readonly FAILED: "Failed";
|
|
@@ -798,7 +802,7 @@ export type ResourcesGroupingRecGenStatusType =
|
|
|
798
802
|
export interface DescribeResourceGroupingRecommendationTaskResponse {
|
|
799
803
|
groupingId: string | undefined;
|
|
800
804
|
status: ResourcesGroupingRecGenStatusType | undefined;
|
|
801
|
-
errorMessage?: string;
|
|
805
|
+
errorMessage?: string | undefined;
|
|
802
806
|
}
|
|
803
807
|
export interface EksSource {
|
|
804
808
|
eksClusterArn: string | undefined;
|
|
@@ -812,32 +816,32 @@ export type ResourceImportStrategyType =
|
|
|
812
816
|
(typeof ResourceImportStrategyType)[keyof typeof ResourceImportStrategyType];
|
|
813
817
|
export interface ImportResourcesToDraftAppVersionRequest {
|
|
814
818
|
appArn: string | undefined;
|
|
815
|
-
sourceArns?: string[];
|
|
816
|
-
terraformSources?: TerraformSource[];
|
|
817
|
-
importStrategy?: ResourceImportStrategyType;
|
|
818
|
-
eksSources?: EksSource[];
|
|
819
|
+
sourceArns?: string[] | undefined;
|
|
820
|
+
terraformSources?: TerraformSource[] | undefined;
|
|
821
|
+
importStrategy?: ResourceImportStrategyType | undefined;
|
|
822
|
+
eksSources?: EksSource[] | undefined;
|
|
819
823
|
}
|
|
820
824
|
export interface ImportResourcesToDraftAppVersionResponse {
|
|
821
825
|
appArn: string | undefined;
|
|
822
826
|
appVersion: string | undefined;
|
|
823
|
-
sourceArns?: string[];
|
|
827
|
+
sourceArns?: string[] | undefined;
|
|
824
828
|
status: ResourceImportStatusType | undefined;
|
|
825
|
-
terraformSources?: TerraformSource[];
|
|
826
|
-
eksSources?: EksSource[];
|
|
829
|
+
terraformSources?: TerraformSource[] | undefined;
|
|
830
|
+
eksSources?: EksSource[] | undefined;
|
|
827
831
|
}
|
|
828
832
|
export interface ListAlarmRecommendationsRequest {
|
|
829
833
|
assessmentArn: string | undefined;
|
|
830
|
-
nextToken?: string;
|
|
831
|
-
maxResults?: number;
|
|
834
|
+
nextToken?: string | undefined;
|
|
835
|
+
maxResults?: number | undefined;
|
|
832
836
|
}
|
|
833
837
|
export interface ListAlarmRecommendationsResponse {
|
|
834
838
|
alarmRecommendations: AlarmRecommendation[] | undefined;
|
|
835
|
-
nextToken?: string;
|
|
839
|
+
nextToken?: string | undefined;
|
|
836
840
|
}
|
|
837
841
|
export interface ListAppAssessmentComplianceDriftsRequest {
|
|
838
842
|
assessmentArn: string | undefined;
|
|
839
|
-
nextToken?: string;
|
|
840
|
-
maxResults?: number;
|
|
843
|
+
nextToken?: string | undefined;
|
|
844
|
+
maxResults?: number | undefined;
|
|
841
845
|
}
|
|
842
846
|
export declare const DifferenceType: {
|
|
843
847
|
readonly ADDED: "Added";
|
|
@@ -852,68 +856,72 @@ export declare const DriftType: {
|
|
|
852
856
|
};
|
|
853
857
|
export type DriftType = (typeof DriftType)[keyof typeof DriftType];
|
|
854
858
|
export interface ComplianceDrift {
|
|
855
|
-
entityId?: string;
|
|
856
|
-
entityType?: string;
|
|
857
|
-
driftType?: DriftType;
|
|
858
|
-
appId?: string;
|
|
859
|
-
appVersion?: string;
|
|
860
|
-
expectedReferenceId?: string;
|
|
861
|
-
expectedValue?:
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
859
|
+
entityId?: string | undefined;
|
|
860
|
+
entityType?: string | undefined;
|
|
861
|
+
driftType?: DriftType | undefined;
|
|
862
|
+
appId?: string | undefined;
|
|
863
|
+
appVersion?: string | undefined;
|
|
864
|
+
expectedReferenceId?: string | undefined;
|
|
865
|
+
expectedValue?:
|
|
866
|
+
| Partial<Record<DisruptionType, DisruptionCompliance>>
|
|
867
|
+
| undefined;
|
|
868
|
+
actualReferenceId?: string | undefined;
|
|
869
|
+
actualValue?:
|
|
870
|
+
| Partial<Record<DisruptionType, DisruptionCompliance>>
|
|
871
|
+
| undefined;
|
|
872
|
+
diffType?: DifferenceType | undefined;
|
|
865
873
|
}
|
|
866
874
|
export interface ListAppAssessmentComplianceDriftsResponse {
|
|
867
875
|
complianceDrifts: ComplianceDrift[] | undefined;
|
|
868
|
-
nextToken?: string;
|
|
876
|
+
nextToken?: string | undefined;
|
|
869
877
|
}
|
|
870
878
|
export interface ListAppAssessmentResourceDriftsRequest {
|
|
871
879
|
assessmentArn: string | undefined;
|
|
872
|
-
nextToken?: string;
|
|
873
|
-
maxResults?: number;
|
|
880
|
+
nextToken?: string | undefined;
|
|
881
|
+
maxResults?: number | undefined;
|
|
874
882
|
}
|
|
875
883
|
export interface ResourceIdentifier {
|
|
876
|
-
logicalResourceId?: LogicalResourceId;
|
|
877
|
-
resourceType?: string;
|
|
884
|
+
logicalResourceId?: LogicalResourceId | undefined;
|
|
885
|
+
resourceType?: string | undefined;
|
|
878
886
|
}
|
|
879
887
|
export interface ResourceDrift {
|
|
880
|
-
appArn?: string;
|
|
881
|
-
appVersion?: string;
|
|
882
|
-
referenceId?: string;
|
|
883
|
-
resourceIdentifier?: ResourceIdentifier;
|
|
884
|
-
diffType?: DifferenceType;
|
|
888
|
+
appArn?: string | undefined;
|
|
889
|
+
appVersion?: string | undefined;
|
|
890
|
+
referenceId?: string | undefined;
|
|
891
|
+
resourceIdentifier?: ResourceIdentifier | undefined;
|
|
892
|
+
diffType?: DifferenceType | undefined;
|
|
885
893
|
}
|
|
886
894
|
export interface ListAppAssessmentResourceDriftsResponse {
|
|
887
895
|
resourceDrifts: ResourceDrift[] | undefined;
|
|
888
|
-
nextToken?: string;
|
|
896
|
+
nextToken?: string | undefined;
|
|
889
897
|
}
|
|
890
898
|
export interface ListAppAssessmentsRequest {
|
|
891
|
-
appArn?: string;
|
|
892
|
-
assessmentName?: string;
|
|
893
|
-
assessmentStatus?: AssessmentStatus[];
|
|
894
|
-
complianceStatus?: ComplianceStatus;
|
|
895
|
-
invoker?: AssessmentInvoker;
|
|
896
|
-
reverseOrder?: boolean;
|
|
897
|
-
nextToken?: string;
|
|
898
|
-
maxResults?: number;
|
|
899
|
+
appArn?: string | undefined;
|
|
900
|
+
assessmentName?: string | undefined;
|
|
901
|
+
assessmentStatus?: AssessmentStatus[] | undefined;
|
|
902
|
+
complianceStatus?: ComplianceStatus | undefined;
|
|
903
|
+
invoker?: AssessmentInvoker | undefined;
|
|
904
|
+
reverseOrder?: boolean | undefined;
|
|
905
|
+
nextToken?: string | undefined;
|
|
906
|
+
maxResults?: number | undefined;
|
|
899
907
|
}
|
|
900
908
|
export interface ListAppAssessmentsResponse {
|
|
901
|
-
nextToken?: string;
|
|
909
|
+
nextToken?: string | undefined;
|
|
902
910
|
assessmentSummaries: AppAssessmentSummary[] | undefined;
|
|
903
911
|
}
|
|
904
912
|
export interface ListAppComponentCompliancesRequest {
|
|
905
|
-
nextToken?: string;
|
|
906
|
-
maxResults?: number;
|
|
913
|
+
nextToken?: string | undefined;
|
|
914
|
+
maxResults?: number | undefined;
|
|
907
915
|
assessmentArn: string | undefined;
|
|
908
916
|
}
|
|
909
917
|
export interface ListAppComponentCompliancesResponse {
|
|
910
918
|
componentCompliances: AppComponentCompliance[] | undefined;
|
|
911
|
-
nextToken?: string;
|
|
919
|
+
nextToken?: string | undefined;
|
|
912
920
|
}
|
|
913
921
|
export interface ListAppComponentRecommendationsRequest {
|
|
914
922
|
assessmentArn: string | undefined;
|
|
915
|
-
nextToken?: string;
|
|
916
|
-
maxResults?: number;
|
|
923
|
+
nextToken?: string | undefined;
|
|
924
|
+
maxResults?: number | undefined;
|
|
917
925
|
}
|
|
918
926
|
export declare const HaArchitecture: {
|
|
919
927
|
readonly BACKUP_AND_RESTORE: "BackupAndRestore";
|
|
@@ -936,23 +944,25 @@ export type ConfigRecommendationOptimizationType =
|
|
|
936
944
|
(typeof ConfigRecommendationOptimizationType)[keyof typeof ConfigRecommendationOptimizationType];
|
|
937
945
|
export interface RecommendationDisruptionCompliance {
|
|
938
946
|
expectedComplianceStatus: ComplianceStatus | undefined;
|
|
939
|
-
expectedRtoInSecs?: number;
|
|
940
|
-
expectedRtoDescription?: string;
|
|
941
|
-
expectedRpoInSecs?: number;
|
|
942
|
-
expectedRpoDescription?: string;
|
|
947
|
+
expectedRtoInSecs?: number | undefined;
|
|
948
|
+
expectedRtoDescription?: string | undefined;
|
|
949
|
+
expectedRpoInSecs?: number | undefined;
|
|
950
|
+
expectedRpoDescription?: string | undefined;
|
|
943
951
|
}
|
|
944
952
|
export interface ConfigRecommendation {
|
|
945
|
-
cost?: Cost;
|
|
946
|
-
appComponentName?: string;
|
|
947
|
-
compliance?:
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
953
|
+
cost?: Cost | undefined;
|
|
954
|
+
appComponentName?: string | undefined;
|
|
955
|
+
compliance?:
|
|
956
|
+
| Partial<Record<DisruptionType, DisruptionCompliance>>
|
|
957
|
+
| undefined;
|
|
958
|
+
recommendationCompliance?:
|
|
959
|
+
| Partial<Record<DisruptionType, RecommendationDisruptionCompliance>>
|
|
960
|
+
| undefined;
|
|
951
961
|
optimizationType: ConfigRecommendationOptimizationType | undefined;
|
|
952
962
|
name: string | undefined;
|
|
953
|
-
description?: string;
|
|
954
|
-
suggestedChanges?: string[];
|
|
955
|
-
haArchitecture?: HaArchitecture;
|
|
963
|
+
description?: string | undefined;
|
|
964
|
+
suggestedChanges?: string[] | undefined;
|
|
965
|
+
haArchitecture?: HaArchitecture | undefined;
|
|
956
966
|
referenceId: string | undefined;
|
|
957
967
|
}
|
|
958
968
|
export declare const RecommendationComplianceStatus: {
|
|
@@ -970,103 +980,103 @@ export interface ComponentRecommendation {
|
|
|
970
980
|
}
|
|
971
981
|
export interface ListAppComponentRecommendationsResponse {
|
|
972
982
|
componentRecommendations: ComponentRecommendation[] | undefined;
|
|
973
|
-
nextToken?: string;
|
|
983
|
+
nextToken?: string | undefined;
|
|
974
984
|
}
|
|
975
985
|
export interface ListAppInputSourcesRequest {
|
|
976
986
|
appArn: string | undefined;
|
|
977
987
|
appVersion: string | undefined;
|
|
978
|
-
nextToken?: string;
|
|
979
|
-
maxResults?: number;
|
|
988
|
+
nextToken?: string | undefined;
|
|
989
|
+
maxResults?: number | undefined;
|
|
980
990
|
}
|
|
981
991
|
export interface ListAppInputSourcesResponse {
|
|
982
992
|
appInputSources: AppInputSource[] | undefined;
|
|
983
|
-
nextToken?: string;
|
|
993
|
+
nextToken?: string | undefined;
|
|
984
994
|
}
|
|
985
995
|
export interface ListAppsRequest {
|
|
986
|
-
nextToken?: string;
|
|
987
|
-
maxResults?: number;
|
|
988
|
-
name?: string;
|
|
989
|
-
appArn?: string;
|
|
990
|
-
fromLastAssessmentTime?: Date;
|
|
991
|
-
toLastAssessmentTime?: Date;
|
|
992
|
-
reverseOrder?: boolean;
|
|
993
|
-
awsApplicationArn?: string;
|
|
996
|
+
nextToken?: string | undefined;
|
|
997
|
+
maxResults?: number | undefined;
|
|
998
|
+
name?: string | undefined;
|
|
999
|
+
appArn?: string | undefined;
|
|
1000
|
+
fromLastAssessmentTime?: Date | undefined;
|
|
1001
|
+
toLastAssessmentTime?: Date | undefined;
|
|
1002
|
+
reverseOrder?: boolean | undefined;
|
|
1003
|
+
awsApplicationArn?: string | undefined;
|
|
994
1004
|
}
|
|
995
1005
|
export interface ListAppsResponse {
|
|
996
1006
|
appSummaries: AppSummary[] | undefined;
|
|
997
|
-
nextToken?: string;
|
|
1007
|
+
nextToken?: string | undefined;
|
|
998
1008
|
}
|
|
999
1009
|
export interface ListAppVersionAppComponentsRequest {
|
|
1000
1010
|
appArn: string | undefined;
|
|
1001
1011
|
appVersion: string | undefined;
|
|
1002
|
-
nextToken?: string;
|
|
1003
|
-
maxResults?: number;
|
|
1012
|
+
nextToken?: string | undefined;
|
|
1013
|
+
maxResults?: number | undefined;
|
|
1004
1014
|
}
|
|
1005
1015
|
export interface ListAppVersionAppComponentsResponse {
|
|
1006
1016
|
appArn: string | undefined;
|
|
1007
1017
|
appVersion: string | undefined;
|
|
1008
|
-
appComponents?: AppComponent[];
|
|
1009
|
-
nextToken?: string;
|
|
1018
|
+
appComponents?: AppComponent[] | undefined;
|
|
1019
|
+
nextToken?: string | undefined;
|
|
1010
1020
|
}
|
|
1011
1021
|
export interface ListAppVersionResourceMappingsRequest {
|
|
1012
1022
|
appArn: string | undefined;
|
|
1013
1023
|
appVersion: string | undefined;
|
|
1014
|
-
nextToken?: string;
|
|
1015
|
-
maxResults?: number;
|
|
1024
|
+
nextToken?: string | undefined;
|
|
1025
|
+
maxResults?: number | undefined;
|
|
1016
1026
|
}
|
|
1017
1027
|
export interface ListAppVersionResourceMappingsResponse {
|
|
1018
1028
|
resourceMappings: ResourceMapping[] | undefined;
|
|
1019
|
-
nextToken?: string;
|
|
1029
|
+
nextToken?: string | undefined;
|
|
1020
1030
|
}
|
|
1021
1031
|
export interface ListAppVersionResourcesRequest {
|
|
1022
1032
|
appArn: string | undefined;
|
|
1023
1033
|
appVersion: string | undefined;
|
|
1024
|
-
resolutionId?: string;
|
|
1025
|
-
nextToken?: string;
|
|
1026
|
-
maxResults?: number;
|
|
1034
|
+
resolutionId?: string | undefined;
|
|
1035
|
+
nextToken?: string | undefined;
|
|
1036
|
+
maxResults?: number | undefined;
|
|
1027
1037
|
}
|
|
1028
1038
|
export interface ListAppVersionResourcesResponse {
|
|
1029
1039
|
physicalResources: PhysicalResource[] | undefined;
|
|
1030
1040
|
resolutionId: string | undefined;
|
|
1031
|
-
nextToken?: string;
|
|
1041
|
+
nextToken?: string | undefined;
|
|
1032
1042
|
}
|
|
1033
1043
|
export interface ListAppVersionsRequest {
|
|
1034
1044
|
appArn: string | undefined;
|
|
1035
|
-
nextToken?: string;
|
|
1036
|
-
maxResults?: number;
|
|
1037
|
-
startTime?: Date;
|
|
1038
|
-
endTime?: Date;
|
|
1045
|
+
nextToken?: string | undefined;
|
|
1046
|
+
maxResults?: number | undefined;
|
|
1047
|
+
startTime?: Date | undefined;
|
|
1048
|
+
endTime?: Date | undefined;
|
|
1039
1049
|
}
|
|
1040
1050
|
export interface ListAppVersionsResponse {
|
|
1041
1051
|
appVersions: AppVersionSummary[] | undefined;
|
|
1042
|
-
nextToken?: string;
|
|
1052
|
+
nextToken?: string | undefined;
|
|
1043
1053
|
}
|
|
1044
1054
|
export interface ListRecommendationTemplatesRequest {
|
|
1045
|
-
assessmentArn?: string;
|
|
1046
|
-
reverseOrder?: boolean;
|
|
1047
|
-
status?: RecommendationTemplateStatus[];
|
|
1048
|
-
recommendationTemplateArn?: string;
|
|
1049
|
-
name?: string;
|
|
1050
|
-
nextToken?: string;
|
|
1051
|
-
maxResults?: number;
|
|
1055
|
+
assessmentArn?: string | undefined;
|
|
1056
|
+
reverseOrder?: boolean | undefined;
|
|
1057
|
+
status?: RecommendationTemplateStatus[] | undefined;
|
|
1058
|
+
recommendationTemplateArn?: string | undefined;
|
|
1059
|
+
name?: string | undefined;
|
|
1060
|
+
nextToken?: string | undefined;
|
|
1061
|
+
maxResults?: number | undefined;
|
|
1052
1062
|
}
|
|
1053
1063
|
export interface ListRecommendationTemplatesResponse {
|
|
1054
|
-
nextToken?: string;
|
|
1055
|
-
recommendationTemplates?: RecommendationTemplate[];
|
|
1064
|
+
nextToken?: string | undefined;
|
|
1065
|
+
recommendationTemplates?: RecommendationTemplate[] | undefined;
|
|
1056
1066
|
}
|
|
1057
1067
|
export interface ListResiliencyPoliciesRequest {
|
|
1058
|
-
policyName?: string;
|
|
1059
|
-
nextToken?: string;
|
|
1060
|
-
maxResults?: number;
|
|
1068
|
+
policyName?: string | undefined;
|
|
1069
|
+
nextToken?: string | undefined;
|
|
1070
|
+
maxResults?: number | undefined;
|
|
1061
1071
|
}
|
|
1062
1072
|
export interface ListResiliencyPoliciesResponse {
|
|
1063
1073
|
resiliencyPolicies: ResiliencyPolicy[] | undefined;
|
|
1064
|
-
nextToken?: string;
|
|
1074
|
+
nextToken?: string | undefined;
|
|
1065
1075
|
}
|
|
1066
1076
|
export interface ListResourceGroupingRecommendationsRequest {
|
|
1067
|
-
appArn?: string;
|
|
1068
|
-
nextToken?: string;
|
|
1069
|
-
maxResults?: number;
|
|
1077
|
+
appArn?: string | undefined;
|
|
1078
|
+
nextToken?: string | undefined;
|
|
1079
|
+
maxResults?: number | undefined;
|
|
1070
1080
|
}
|
|
1071
1081
|
export declare const GroupingRecommendationConfidenceLevel: {
|
|
1072
1082
|
readonly HIGH: "High";
|
|
@@ -1110,15 +1120,15 @@ export interface GroupingRecommendation {
|
|
|
1110
1120
|
status: GroupingRecommendationStatusType | undefined;
|
|
1111
1121
|
confidenceLevel: GroupingRecommendationConfidenceLevel | undefined;
|
|
1112
1122
|
creationTime: Date | undefined;
|
|
1113
|
-
rejectionReason?: GroupingRecommendationRejectionReason;
|
|
1123
|
+
rejectionReason?: GroupingRecommendationRejectionReason | undefined;
|
|
1114
1124
|
}
|
|
1115
1125
|
export interface ListResourceGroupingRecommendationsResponse {
|
|
1116
1126
|
groupingRecommendations: GroupingRecommendation[] | undefined;
|
|
1117
|
-
nextToken?: string;
|
|
1127
|
+
nextToken?: string | undefined;
|
|
1118
1128
|
}
|
|
1119
1129
|
export interface ListSopRecommendationsRequest {
|
|
1120
|
-
nextToken?: string;
|
|
1121
|
-
maxResults?: number;
|
|
1130
|
+
nextToken?: string | undefined;
|
|
1131
|
+
maxResults?: number | undefined;
|
|
1122
1132
|
assessmentArn: string | undefined;
|
|
1123
1133
|
}
|
|
1124
1134
|
export declare const SopServiceType: {
|
|
@@ -1128,36 +1138,36 @@ export type SopServiceType =
|
|
|
1128
1138
|
(typeof SopServiceType)[keyof typeof SopServiceType];
|
|
1129
1139
|
export interface SopRecommendation {
|
|
1130
1140
|
serviceType: SopServiceType | undefined;
|
|
1131
|
-
appComponentName?: string;
|
|
1132
|
-
description?: string;
|
|
1141
|
+
appComponentName?: string | undefined;
|
|
1142
|
+
description?: string | undefined;
|
|
1133
1143
|
recommendationId: string | undefined;
|
|
1134
|
-
name?: string;
|
|
1135
|
-
items?: RecommendationItem[];
|
|
1144
|
+
name?: string | undefined;
|
|
1145
|
+
items?: RecommendationItem[] | undefined;
|
|
1136
1146
|
referenceId: string | undefined;
|
|
1137
|
-
prerequisite?: string;
|
|
1138
|
-
recommendationStatus?: RecommendationStatus;
|
|
1147
|
+
prerequisite?: string | undefined;
|
|
1148
|
+
recommendationStatus?: RecommendationStatus | undefined;
|
|
1139
1149
|
}
|
|
1140
1150
|
export interface ListSopRecommendationsResponse {
|
|
1141
|
-
nextToken?: string;
|
|
1151
|
+
nextToken?: string | undefined;
|
|
1142
1152
|
sopRecommendations: SopRecommendation[] | undefined;
|
|
1143
1153
|
}
|
|
1144
1154
|
export interface ListSuggestedResiliencyPoliciesRequest {
|
|
1145
|
-
nextToken?: string;
|
|
1146
|
-
maxResults?: number;
|
|
1155
|
+
nextToken?: string | undefined;
|
|
1156
|
+
maxResults?: number | undefined;
|
|
1147
1157
|
}
|
|
1148
1158
|
export interface ListSuggestedResiliencyPoliciesResponse {
|
|
1149
1159
|
resiliencyPolicies: ResiliencyPolicy[] | undefined;
|
|
1150
|
-
nextToken?: string;
|
|
1160
|
+
nextToken?: string | undefined;
|
|
1151
1161
|
}
|
|
1152
1162
|
export interface ListTagsForResourceRequest {
|
|
1153
1163
|
resourceArn: string | undefined;
|
|
1154
1164
|
}
|
|
1155
1165
|
export interface ListTagsForResourceResponse {
|
|
1156
|
-
tags?: Record<string, string
|
|
1166
|
+
tags?: Record<string, string> | undefined;
|
|
1157
1167
|
}
|
|
1158
1168
|
export interface ListTestRecommendationsRequest {
|
|
1159
|
-
nextToken?: string;
|
|
1160
|
-
maxResults?: number;
|
|
1169
|
+
nextToken?: string | undefined;
|
|
1170
|
+
maxResults?: number | undefined;
|
|
1161
1171
|
assessmentArn: string | undefined;
|
|
1162
1172
|
}
|
|
1163
1173
|
export declare const TestRisk: {
|
|
@@ -1174,62 +1184,62 @@ export declare const TestType: {
|
|
|
1174
1184
|
};
|
|
1175
1185
|
export type TestType = (typeof TestType)[keyof typeof TestType];
|
|
1176
1186
|
export interface TestRecommendation {
|
|
1177
|
-
recommendationId?: string;
|
|
1187
|
+
recommendationId?: string | undefined;
|
|
1178
1188
|
referenceId: string | undefined;
|
|
1179
|
-
appComponentName?: string;
|
|
1180
|
-
name?: string;
|
|
1181
|
-
intent?: string;
|
|
1182
|
-
risk?: TestRisk;
|
|
1183
|
-
type?: TestType;
|
|
1184
|
-
description?: string;
|
|
1185
|
-
items?: RecommendationItem[];
|
|
1186
|
-
prerequisite?: string;
|
|
1187
|
-
dependsOnAlarms?: string[];
|
|
1188
|
-
recommendationStatus?: RecommendationStatus;
|
|
1189
|
+
appComponentName?: string | undefined;
|
|
1190
|
+
name?: string | undefined;
|
|
1191
|
+
intent?: string | undefined;
|
|
1192
|
+
risk?: TestRisk | undefined;
|
|
1193
|
+
type?: TestType | undefined;
|
|
1194
|
+
description?: string | undefined;
|
|
1195
|
+
items?: RecommendationItem[] | undefined;
|
|
1196
|
+
prerequisite?: string | undefined;
|
|
1197
|
+
dependsOnAlarms?: string[] | undefined;
|
|
1198
|
+
recommendationStatus?: RecommendationStatus | undefined;
|
|
1189
1199
|
}
|
|
1190
1200
|
export interface ListTestRecommendationsResponse {
|
|
1191
|
-
nextToken?: string;
|
|
1201
|
+
nextToken?: string | undefined;
|
|
1192
1202
|
testRecommendations: TestRecommendation[] | undefined;
|
|
1193
1203
|
}
|
|
1194
1204
|
export interface ListUnsupportedAppVersionResourcesRequest {
|
|
1195
1205
|
appArn: string | undefined;
|
|
1196
1206
|
appVersion: string | undefined;
|
|
1197
|
-
resolutionId?: string;
|
|
1198
|
-
nextToken?: string;
|
|
1199
|
-
maxResults?: number;
|
|
1207
|
+
resolutionId?: string | undefined;
|
|
1208
|
+
nextToken?: string | undefined;
|
|
1209
|
+
maxResults?: number | undefined;
|
|
1200
1210
|
}
|
|
1201
1211
|
export interface UnsupportedResource {
|
|
1202
1212
|
logicalResourceId: LogicalResourceId | undefined;
|
|
1203
1213
|
physicalResourceId: PhysicalResourceId | undefined;
|
|
1204
1214
|
resourceType: string | undefined;
|
|
1205
|
-
unsupportedResourceStatus?: string;
|
|
1215
|
+
unsupportedResourceStatus?: string | undefined;
|
|
1206
1216
|
}
|
|
1207
1217
|
export interface ListUnsupportedAppVersionResourcesResponse {
|
|
1208
1218
|
unsupportedResources: UnsupportedResource[] | undefined;
|
|
1209
1219
|
resolutionId: string | undefined;
|
|
1210
|
-
nextToken?: string;
|
|
1220
|
+
nextToken?: string | undefined;
|
|
1211
1221
|
}
|
|
1212
1222
|
export interface PublishAppVersionRequest {
|
|
1213
1223
|
appArn: string | undefined;
|
|
1214
|
-
versionName?: string;
|
|
1224
|
+
versionName?: string | undefined;
|
|
1215
1225
|
}
|
|
1216
1226
|
export interface PublishAppVersionResponse {
|
|
1217
1227
|
appArn: string | undefined;
|
|
1218
|
-
appVersion?: string;
|
|
1219
|
-
identifier?: number;
|
|
1220
|
-
versionName?: string;
|
|
1228
|
+
appVersion?: string | undefined;
|
|
1229
|
+
identifier?: number | undefined;
|
|
1230
|
+
versionName?: string | undefined;
|
|
1221
1231
|
}
|
|
1222
1232
|
export interface PutDraftAppVersionTemplateRequest {
|
|
1223
1233
|
appArn: string | undefined;
|
|
1224
1234
|
appTemplateBody: string | undefined;
|
|
1225
1235
|
}
|
|
1226
1236
|
export interface PutDraftAppVersionTemplateResponse {
|
|
1227
|
-
appArn?: string;
|
|
1228
|
-
appVersion?: string;
|
|
1237
|
+
appArn?: string | undefined;
|
|
1238
|
+
appVersion?: string | undefined;
|
|
1229
1239
|
}
|
|
1230
1240
|
export interface RejectGroupingRecommendationEntry {
|
|
1231
1241
|
groupingRecommendationId: string | undefined;
|
|
1232
|
-
rejectionReason?: GroupingRecommendationRejectionReason;
|
|
1242
|
+
rejectionReason?: GroupingRecommendationRejectionReason | undefined;
|
|
1233
1243
|
}
|
|
1234
1244
|
export interface RejectResourceGroupingRecommendationsRequest {
|
|
1235
1245
|
appArn: string | undefined;
|
|
@@ -1241,16 +1251,16 @@ export interface RejectResourceGroupingRecommendationsResponse {
|
|
|
1241
1251
|
}
|
|
1242
1252
|
export interface RemoveDraftAppVersionResourceMappingsRequest {
|
|
1243
1253
|
appArn: string | undefined;
|
|
1244
|
-
resourceNames?: string[];
|
|
1245
|
-
logicalStackNames?: string[];
|
|
1246
|
-
appRegistryAppNames?: string[];
|
|
1247
|
-
resourceGroupNames?: string[];
|
|
1248
|
-
terraformSourceNames?: string[];
|
|
1249
|
-
eksSourceNames?: string[];
|
|
1254
|
+
resourceNames?: string[] | undefined;
|
|
1255
|
+
logicalStackNames?: string[] | undefined;
|
|
1256
|
+
appRegistryAppNames?: string[] | undefined;
|
|
1257
|
+
resourceGroupNames?: string[] | undefined;
|
|
1258
|
+
terraformSourceNames?: string[] | undefined;
|
|
1259
|
+
eksSourceNames?: string[] | undefined;
|
|
1250
1260
|
}
|
|
1251
1261
|
export interface RemoveDraftAppVersionResourceMappingsResponse {
|
|
1252
|
-
appArn?: string;
|
|
1253
|
-
appVersion?: string;
|
|
1262
|
+
appArn?: string | undefined;
|
|
1263
|
+
appVersion?: string | undefined;
|
|
1254
1264
|
}
|
|
1255
1265
|
export interface ResolveAppVersionResourcesRequest {
|
|
1256
1266
|
appArn: string | undefined;
|
|
@@ -1266,8 +1276,8 @@ export interface StartAppAssessmentRequest {
|
|
|
1266
1276
|
appArn: string | undefined;
|
|
1267
1277
|
appVersion: string | undefined;
|
|
1268
1278
|
assessmentName: string | undefined;
|
|
1269
|
-
clientToken?: string;
|
|
1270
|
-
tags?: Record<string, string
|
|
1279
|
+
clientToken?: string | undefined;
|
|
1280
|
+
tags?: Record<string, string> | undefined;
|
|
1271
1281
|
}
|
|
1272
1282
|
export interface StartAppAssessmentResponse {
|
|
1273
1283
|
assessment: AppAssessment | undefined;
|
|
@@ -1279,7 +1289,7 @@ export interface StartResourceGroupingRecommendationTaskResponse {
|
|
|
1279
1289
|
appArn: string | undefined;
|
|
1280
1290
|
groupingId: string | undefined;
|
|
1281
1291
|
status: ResourcesGroupingRecGenStatusType | undefined;
|
|
1282
|
-
errorMessage?: string;
|
|
1292
|
+
errorMessage?: string | undefined;
|
|
1283
1293
|
}
|
|
1284
1294
|
export interface TagResourceRequest {
|
|
1285
1295
|
resourceArn: string | undefined;
|
|
@@ -1293,61 +1303,61 @@ export interface UntagResourceRequest {
|
|
|
1293
1303
|
export interface UntagResourceResponse {}
|
|
1294
1304
|
export interface UpdateAppRequest {
|
|
1295
1305
|
appArn: string | undefined;
|
|
1296
|
-
description?: string;
|
|
1297
|
-
policyArn?: string;
|
|
1298
|
-
clearResiliencyPolicyArn?: boolean;
|
|
1299
|
-
assessmentSchedule?: AppAssessmentScheduleType;
|
|
1300
|
-
permissionModel?: PermissionModel;
|
|
1301
|
-
eventSubscriptions?: EventSubscription[];
|
|
1306
|
+
description?: string | undefined;
|
|
1307
|
+
policyArn?: string | undefined;
|
|
1308
|
+
clearResiliencyPolicyArn?: boolean | undefined;
|
|
1309
|
+
assessmentSchedule?: AppAssessmentScheduleType | undefined;
|
|
1310
|
+
permissionModel?: PermissionModel | undefined;
|
|
1311
|
+
eventSubscriptions?: EventSubscription[] | undefined;
|
|
1302
1312
|
}
|
|
1303
1313
|
export interface UpdateAppResponse {
|
|
1304
1314
|
app: App | undefined;
|
|
1305
1315
|
}
|
|
1306
1316
|
export interface UpdateAppVersionRequest {
|
|
1307
1317
|
appArn: string | undefined;
|
|
1308
|
-
additionalInfo?: Record<string, string[]
|
|
1318
|
+
additionalInfo?: Record<string, string[]> | undefined;
|
|
1309
1319
|
}
|
|
1310
1320
|
export interface UpdateAppVersionResponse {
|
|
1311
1321
|
appArn: string | undefined;
|
|
1312
1322
|
appVersion: string | undefined;
|
|
1313
|
-
additionalInfo?: Record<string, string[]
|
|
1323
|
+
additionalInfo?: Record<string, string[]> | undefined;
|
|
1314
1324
|
}
|
|
1315
1325
|
export interface UpdateAppVersionAppComponentRequest {
|
|
1316
1326
|
appArn: string | undefined;
|
|
1317
1327
|
id: string | undefined;
|
|
1318
|
-
name?: string;
|
|
1319
|
-
type?: string;
|
|
1320
|
-
additionalInfo?: Record<string, string[]
|
|
1328
|
+
name?: string | undefined;
|
|
1329
|
+
type?: string | undefined;
|
|
1330
|
+
additionalInfo?: Record<string, string[]> | undefined;
|
|
1321
1331
|
}
|
|
1322
1332
|
export interface UpdateAppVersionAppComponentResponse {
|
|
1323
1333
|
appArn: string | undefined;
|
|
1324
1334
|
appVersion: string | undefined;
|
|
1325
|
-
appComponent?: AppComponent;
|
|
1335
|
+
appComponent?: AppComponent | undefined;
|
|
1326
1336
|
}
|
|
1327
1337
|
export interface UpdateAppVersionResourceRequest {
|
|
1328
1338
|
appArn: string | undefined;
|
|
1329
|
-
resourceName?: string;
|
|
1330
|
-
logicalResourceId?: LogicalResourceId;
|
|
1331
|
-
physicalResourceId?: string;
|
|
1332
|
-
awsRegion?: string;
|
|
1333
|
-
awsAccountId?: string;
|
|
1334
|
-
resourceType?: string;
|
|
1335
|
-
appComponents?: string[];
|
|
1336
|
-
additionalInfo?: Record<string, string[]
|
|
1337
|
-
excluded?: boolean;
|
|
1339
|
+
resourceName?: string | undefined;
|
|
1340
|
+
logicalResourceId?: LogicalResourceId | undefined;
|
|
1341
|
+
physicalResourceId?: string | undefined;
|
|
1342
|
+
awsRegion?: string | undefined;
|
|
1343
|
+
awsAccountId?: string | undefined;
|
|
1344
|
+
resourceType?: string | undefined;
|
|
1345
|
+
appComponents?: string[] | undefined;
|
|
1346
|
+
additionalInfo?: Record<string, string[]> | undefined;
|
|
1347
|
+
excluded?: boolean | undefined;
|
|
1338
1348
|
}
|
|
1339
1349
|
export interface UpdateAppVersionResourceResponse {
|
|
1340
1350
|
appArn: string | undefined;
|
|
1341
1351
|
appVersion: string | undefined;
|
|
1342
|
-
physicalResource?: PhysicalResource;
|
|
1352
|
+
physicalResource?: PhysicalResource | undefined;
|
|
1343
1353
|
}
|
|
1344
1354
|
export interface UpdateResiliencyPolicyRequest {
|
|
1345
1355
|
policyArn: string | undefined;
|
|
1346
|
-
policyName?: string;
|
|
1347
|
-
policyDescription?: string;
|
|
1348
|
-
dataLocationConstraint?: DataLocationConstraint;
|
|
1349
|
-
tier?: ResiliencyPolicyTier;
|
|
1350
|
-
policy?: Partial<Record<DisruptionType, FailurePolicy
|
|
1356
|
+
policyName?: string | undefined;
|
|
1357
|
+
policyDescription?: string | undefined;
|
|
1358
|
+
dataLocationConstraint?: DataLocationConstraint | undefined;
|
|
1359
|
+
tier?: ResiliencyPolicyTier | undefined;
|
|
1360
|
+
policy?: Partial<Record<DisruptionType, FailurePolicy>> | undefined;
|
|
1351
1361
|
}
|
|
1352
1362
|
export interface UpdateResiliencyPolicyResponse {
|
|
1353
1363
|
policy: ResiliencyPolicy | undefined;
|