@aws-sdk/client-wellarchitected 3.933.0 → 3.935.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +193 -192
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +192 -0
- package/dist-es/models/errors.js +123 -0
- package/dist-es/models/models_0.js +1 -315
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +512 -0
- package/dist-types/models/errors.d.ts +183 -0
- package/dist-types/models/models_0.d.ts +1 -693
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +259 -0
- package/dist-types/ts3.4/models/errors.d.ts +70 -0
- package/dist-types/ts3.4/models/models_0.d.ts +41 -327
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,57 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { WellArchitectedServiceException as __BaseException } from "./WellArchitectedServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p>User does not have sufficient access to perform this action.</p>
|
|
5
|
-
* @public
|
|
6
|
-
*/
|
|
7
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
-
readonly name: "AccessDeniedException";
|
|
9
|
-
readonly $fault: "client";
|
|
10
|
-
/**
|
|
11
|
-
* <p>Description of the error.</p>
|
|
12
|
-
* @public
|
|
13
|
-
*/
|
|
14
|
-
Message: string | undefined;
|
|
15
|
-
/**
|
|
16
|
-
* @internal
|
|
17
|
-
*/
|
|
18
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
19
|
-
}
|
|
20
|
-
/**
|
|
21
|
-
* @public
|
|
22
|
-
* @enum
|
|
23
|
-
*/
|
|
24
|
-
export declare const IntegrationStatusInput: {
|
|
25
|
-
readonly NOT_CONFIGURED: "NOT_CONFIGURED";
|
|
26
|
-
};
|
|
27
|
-
/**
|
|
28
|
-
* @public
|
|
29
|
-
*/
|
|
30
|
-
export type IntegrationStatusInput = (typeof IntegrationStatusInput)[keyof typeof IntegrationStatusInput];
|
|
31
|
-
/**
|
|
32
|
-
* @public
|
|
33
|
-
* @enum
|
|
34
|
-
*/
|
|
35
|
-
export declare const AccountJiraIssueManagementStatus: {
|
|
36
|
-
readonly DISABLED: "DISABLED";
|
|
37
|
-
readonly ENABLED: "ENABLED";
|
|
38
|
-
};
|
|
39
|
-
/**
|
|
40
|
-
* @public
|
|
41
|
-
*/
|
|
42
|
-
export type AccountJiraIssueManagementStatus = (typeof AccountJiraIssueManagementStatus)[keyof typeof AccountJiraIssueManagementStatus];
|
|
43
|
-
/**
|
|
44
|
-
* @public
|
|
45
|
-
* @enum
|
|
46
|
-
*/
|
|
47
|
-
export declare const IssueManagementType: {
|
|
48
|
-
readonly AUTO: "AUTO";
|
|
49
|
-
readonly MANUAL: "MANUAL";
|
|
50
|
-
};
|
|
51
|
-
/**
|
|
52
|
-
* @public
|
|
53
|
-
*/
|
|
54
|
-
export type IssueManagementType = (typeof IssueManagementType)[keyof typeof IssueManagementType];
|
|
1
|
+
import { AccountJiraIssueManagementStatus, AdditionalResourceType, AnswerReason, CheckFailureReason, CheckProvider, CheckStatus, ChoiceReason, ChoiceStatus, DefinitionType, DifferenceStatus, DiscoveryIntegrationStatus, ImportLensStatus, IntegratingService, IntegrationStatus, IntegrationStatusInput, IssueManagementType, LensStatus, LensStatusType, LensType, MetricType, NotificationType, OrganizationSharingStatus, PermissionType, ProfileNotificationType, ProfileOwnerType, Question, QuestionPriority, QuestionType, ReportFormat, ReviewTemplateAnswerStatus, ReviewTemplateUpdateStatus, Risk, ShareInvitationAction, ShareResourceType, ShareStatus, TrustedAdvisorIntegrationStatus, WorkloadEnvironment, WorkloadImprovementStatus, WorkloadIssueManagementStatus } from "./enums";
|
|
55
2
|
/**
|
|
56
3
|
* <p>Account-level: Input for the Jira configuration.</p>
|
|
57
4
|
* @public
|
|
@@ -78,18 +25,6 @@ export interface AccountJiraConfigurationInput {
|
|
|
78
25
|
*/
|
|
79
26
|
IntegrationStatus?: IntegrationStatusInput | undefined;
|
|
80
27
|
}
|
|
81
|
-
/**
|
|
82
|
-
* @public
|
|
83
|
-
* @enum
|
|
84
|
-
*/
|
|
85
|
-
export declare const IntegrationStatus: {
|
|
86
|
-
readonly CONFIGURED: "CONFIGURED";
|
|
87
|
-
readonly NOT_CONFIGURED: "NOT_CONFIGURED";
|
|
88
|
-
};
|
|
89
|
-
/**
|
|
90
|
-
* @public
|
|
91
|
-
*/
|
|
92
|
-
export type IntegrationStatus = (typeof IntegrationStatus)[keyof typeof IntegrationStatus];
|
|
93
28
|
/**
|
|
94
29
|
* <p>Account-level: Output configuration of the Jira integration.</p>
|
|
95
30
|
* @public
|
|
@@ -126,21 +61,6 @@ export interface AccountJiraConfigurationOutput {
|
|
|
126
61
|
*/
|
|
127
62
|
StatusMessage?: string | undefined;
|
|
128
63
|
}
|
|
129
|
-
/**
|
|
130
|
-
* @public
|
|
131
|
-
* @enum
|
|
132
|
-
*/
|
|
133
|
-
export declare const CheckStatus: {
|
|
134
|
-
readonly ERROR: "ERROR";
|
|
135
|
-
readonly FETCH_FAILED: "FETCH_FAILED";
|
|
136
|
-
readonly NOT_AVAILABLE: "NOT_AVAILABLE";
|
|
137
|
-
readonly OKAY: "OKAY";
|
|
138
|
-
readonly WARNING: "WARNING";
|
|
139
|
-
};
|
|
140
|
-
/**
|
|
141
|
-
* @public
|
|
142
|
-
*/
|
|
143
|
-
export type CheckStatus = (typeof CheckStatus)[keyof typeof CheckStatus];
|
|
144
64
|
/**
|
|
145
65
|
* <p>The choice content.</p>
|
|
146
66
|
* @public
|
|
@@ -157,18 +77,6 @@ export interface ChoiceContent {
|
|
|
157
77
|
*/
|
|
158
78
|
Url?: string | undefined;
|
|
159
79
|
}
|
|
160
|
-
/**
|
|
161
|
-
* @public
|
|
162
|
-
* @enum
|
|
163
|
-
*/
|
|
164
|
-
export declare const AdditionalResourceType: {
|
|
165
|
-
readonly HELPFUL_RESOURCE: "HELPFUL_RESOURCE";
|
|
166
|
-
readonly IMPROVEMENT_PLAN: "IMPROVEMENT_PLAN";
|
|
167
|
-
};
|
|
168
|
-
/**
|
|
169
|
-
* @public
|
|
170
|
-
*/
|
|
171
|
-
export type AdditionalResourceType = (typeof AdditionalResourceType)[keyof typeof AdditionalResourceType];
|
|
172
80
|
/**
|
|
173
81
|
* <p>The choice level additional resources for a custom lens.</p>
|
|
174
82
|
* <p>This field does not apply to Amazon Web Services official lenses.</p>
|
|
@@ -186,34 +94,6 @@ export interface AdditionalResources {
|
|
|
186
94
|
*/
|
|
187
95
|
Content?: ChoiceContent[] | undefined;
|
|
188
96
|
}
|
|
189
|
-
/**
|
|
190
|
-
* @public
|
|
191
|
-
* @enum
|
|
192
|
-
*/
|
|
193
|
-
export declare const ChoiceReason: {
|
|
194
|
-
readonly ARCHITECTURE_CONSTRAINTS: "ARCHITECTURE_CONSTRAINTS";
|
|
195
|
-
readonly BUSINESS_PRIORITIES: "BUSINESS_PRIORITIES";
|
|
196
|
-
readonly NONE: "NONE";
|
|
197
|
-
readonly OTHER: "OTHER";
|
|
198
|
-
readonly OUT_OF_SCOPE: "OUT_OF_SCOPE";
|
|
199
|
-
};
|
|
200
|
-
/**
|
|
201
|
-
* @public
|
|
202
|
-
*/
|
|
203
|
-
export type ChoiceReason = (typeof ChoiceReason)[keyof typeof ChoiceReason];
|
|
204
|
-
/**
|
|
205
|
-
* @public
|
|
206
|
-
* @enum
|
|
207
|
-
*/
|
|
208
|
-
export declare const ChoiceStatus: {
|
|
209
|
-
readonly NOT_APPLICABLE: "NOT_APPLICABLE";
|
|
210
|
-
readonly SELECTED: "SELECTED";
|
|
211
|
-
readonly UNSELECTED: "UNSELECTED";
|
|
212
|
-
};
|
|
213
|
-
/**
|
|
214
|
-
* @public
|
|
215
|
-
*/
|
|
216
|
-
export type ChoiceStatus = (typeof ChoiceStatus)[keyof typeof ChoiceStatus];
|
|
217
97
|
/**
|
|
218
98
|
* <p>A choice that has been answered on a question in your workload.</p>
|
|
219
99
|
* @public
|
|
@@ -296,36 +176,6 @@ export interface JiraConfiguration {
|
|
|
296
176
|
*/
|
|
297
177
|
LastSyncedTime?: Date | undefined;
|
|
298
178
|
}
|
|
299
|
-
/**
|
|
300
|
-
* @public
|
|
301
|
-
* @enum
|
|
302
|
-
*/
|
|
303
|
-
export declare const AnswerReason: {
|
|
304
|
-
readonly ARCHITECTURE_CONSTRAINTS: "ARCHITECTURE_CONSTRAINTS";
|
|
305
|
-
readonly BUSINESS_PRIORITIES: "BUSINESS_PRIORITIES";
|
|
306
|
-
readonly NONE: "NONE";
|
|
307
|
-
readonly OTHER: "OTHER";
|
|
308
|
-
readonly OUT_OF_SCOPE: "OUT_OF_SCOPE";
|
|
309
|
-
};
|
|
310
|
-
/**
|
|
311
|
-
* @public
|
|
312
|
-
*/
|
|
313
|
-
export type AnswerReason = (typeof AnswerReason)[keyof typeof AnswerReason];
|
|
314
|
-
/**
|
|
315
|
-
* @public
|
|
316
|
-
* @enum
|
|
317
|
-
*/
|
|
318
|
-
export declare const Risk: {
|
|
319
|
-
readonly HIGH: "HIGH";
|
|
320
|
-
readonly MEDIUM: "MEDIUM";
|
|
321
|
-
readonly NONE: "NONE";
|
|
322
|
-
readonly NOT_APPLICABLE: "NOT_APPLICABLE";
|
|
323
|
-
readonly UNANSWERED: "UNANSWERED";
|
|
324
|
-
};
|
|
325
|
-
/**
|
|
326
|
-
* @public
|
|
327
|
-
*/
|
|
328
|
-
export type Risk = (typeof Risk)[keyof typeof Risk];
|
|
329
179
|
/**
|
|
330
180
|
* <p>An answer of the question.</p>
|
|
331
181
|
* @public
|
|
@@ -437,18 +287,6 @@ export interface ChoiceAnswerSummary {
|
|
|
437
287
|
*/
|
|
438
288
|
Reason?: ChoiceReason | undefined;
|
|
439
289
|
}
|
|
440
|
-
/**
|
|
441
|
-
* @public
|
|
442
|
-
* @enum
|
|
443
|
-
*/
|
|
444
|
-
export declare const QuestionType: {
|
|
445
|
-
readonly NON_PRIORITIZED: "NON_PRIORITIZED";
|
|
446
|
-
readonly PRIORITIZED: "PRIORITIZED";
|
|
447
|
-
};
|
|
448
|
-
/**
|
|
449
|
-
* @public
|
|
450
|
-
*/
|
|
451
|
-
export type QuestionType = (typeof QuestionType)[keyof typeof QuestionType];
|
|
452
290
|
/**
|
|
453
291
|
* <p>An answer summary of a lens review in a workload.</p>
|
|
454
292
|
* @public
|
|
@@ -529,104 +367,6 @@ export interface AssociateLensesInput {
|
|
|
529
367
|
*/
|
|
530
368
|
LensAliases: string[] | undefined;
|
|
531
369
|
}
|
|
532
|
-
/**
|
|
533
|
-
* <p>The resource has already been processed, was deleted, or is too large.</p>
|
|
534
|
-
* @public
|
|
535
|
-
*/
|
|
536
|
-
export declare class ConflictException extends __BaseException {
|
|
537
|
-
readonly name: "ConflictException";
|
|
538
|
-
readonly $fault: "client";
|
|
539
|
-
/**
|
|
540
|
-
* <p>Description of the error.</p>
|
|
541
|
-
* @public
|
|
542
|
-
*/
|
|
543
|
-
Message: string | undefined;
|
|
544
|
-
/**
|
|
545
|
-
* <p>Identifier of the resource affected.</p>
|
|
546
|
-
* @public
|
|
547
|
-
*/
|
|
548
|
-
ResourceId: string | undefined;
|
|
549
|
-
/**
|
|
550
|
-
* <p>Type of the resource affected.</p>
|
|
551
|
-
* @public
|
|
552
|
-
*/
|
|
553
|
-
ResourceType: string | undefined;
|
|
554
|
-
/**
|
|
555
|
-
* @internal
|
|
556
|
-
*/
|
|
557
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
558
|
-
}
|
|
559
|
-
/**
|
|
560
|
-
* <p>There is a problem with the Well-Architected Tool API service.</p>
|
|
561
|
-
* @public
|
|
562
|
-
*/
|
|
563
|
-
export declare class InternalServerException extends __BaseException {
|
|
564
|
-
readonly name: "InternalServerException";
|
|
565
|
-
readonly $fault: "server";
|
|
566
|
-
/**
|
|
567
|
-
* <p>Description of the error.</p>
|
|
568
|
-
* @public
|
|
569
|
-
*/
|
|
570
|
-
Message: string | undefined;
|
|
571
|
-
/**
|
|
572
|
-
* @internal
|
|
573
|
-
*/
|
|
574
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
575
|
-
}
|
|
576
|
-
/**
|
|
577
|
-
* <p>The requested resource was not found.</p>
|
|
578
|
-
* @public
|
|
579
|
-
*/
|
|
580
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
581
|
-
readonly name: "ResourceNotFoundException";
|
|
582
|
-
readonly $fault: "client";
|
|
583
|
-
/**
|
|
584
|
-
* <p>Description of the error.</p>
|
|
585
|
-
* @public
|
|
586
|
-
*/
|
|
587
|
-
Message: string | undefined;
|
|
588
|
-
/**
|
|
589
|
-
* <p>Identifier of the resource affected.</p>
|
|
590
|
-
* @public
|
|
591
|
-
*/
|
|
592
|
-
ResourceId: string | undefined;
|
|
593
|
-
/**
|
|
594
|
-
* <p>Type of the resource affected.</p>
|
|
595
|
-
* @public
|
|
596
|
-
*/
|
|
597
|
-
ResourceType: string | undefined;
|
|
598
|
-
/**
|
|
599
|
-
* @internal
|
|
600
|
-
*/
|
|
601
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
602
|
-
}
|
|
603
|
-
/**
|
|
604
|
-
* <p>Request was denied due to request throttling.</p>
|
|
605
|
-
* @public
|
|
606
|
-
*/
|
|
607
|
-
export declare class ThrottlingException extends __BaseException {
|
|
608
|
-
readonly name: "ThrottlingException";
|
|
609
|
-
readonly $fault: "client";
|
|
610
|
-
/**
|
|
611
|
-
* <p>Description of the error.</p>
|
|
612
|
-
* @public
|
|
613
|
-
*/
|
|
614
|
-
Message: string | undefined;
|
|
615
|
-
/**
|
|
616
|
-
* <p>Service Quotas requirement to identify originating quota.</p>
|
|
617
|
-
* @public
|
|
618
|
-
*/
|
|
619
|
-
QuotaCode?: string | undefined;
|
|
620
|
-
/**
|
|
621
|
-
* <p>Service Quotas requirement to identify originating service.</p>
|
|
622
|
-
* @public
|
|
623
|
-
*/
|
|
624
|
-
ServiceCode?: string | undefined;
|
|
625
|
-
/**
|
|
626
|
-
* @internal
|
|
627
|
-
*/
|
|
628
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
629
|
-
}
|
|
630
370
|
/**
|
|
631
371
|
* <p>Stores information about a field passed inside a request that resulted in an exception.</p>
|
|
632
372
|
* @public
|
|
@@ -643,47 +383,6 @@ export interface ValidationExceptionField {
|
|
|
643
383
|
*/
|
|
644
384
|
Message: string | undefined;
|
|
645
385
|
}
|
|
646
|
-
/**
|
|
647
|
-
* @public
|
|
648
|
-
* @enum
|
|
649
|
-
*/
|
|
650
|
-
export declare const ValidationExceptionReason: {
|
|
651
|
-
readonly CANNOT_PARSE: "CANNOT_PARSE";
|
|
652
|
-
readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
|
|
653
|
-
readonly OTHER: "OTHER";
|
|
654
|
-
readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION";
|
|
655
|
-
};
|
|
656
|
-
/**
|
|
657
|
-
* @public
|
|
658
|
-
*/
|
|
659
|
-
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
660
|
-
/**
|
|
661
|
-
* <p>The user input is not valid.</p>
|
|
662
|
-
* @public
|
|
663
|
-
*/
|
|
664
|
-
export declare class ValidationException extends __BaseException {
|
|
665
|
-
readonly name: "ValidationException";
|
|
666
|
-
readonly $fault: "client";
|
|
667
|
-
/**
|
|
668
|
-
* <p>Description of the error.</p>
|
|
669
|
-
* @public
|
|
670
|
-
*/
|
|
671
|
-
Message: string | undefined;
|
|
672
|
-
/**
|
|
673
|
-
* <p>The reason why the request failed validation.</p>
|
|
674
|
-
* @public
|
|
675
|
-
*/
|
|
676
|
-
Reason?: ValidationExceptionReason | undefined;
|
|
677
|
-
/**
|
|
678
|
-
* <p>The fields that caused the error, if applicable.</p>
|
|
679
|
-
* @public
|
|
680
|
-
*/
|
|
681
|
-
Fields?: ValidationExceptionField[] | undefined;
|
|
682
|
-
/**
|
|
683
|
-
* @internal
|
|
684
|
-
*/
|
|
685
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
686
|
-
}
|
|
687
386
|
/**
|
|
688
387
|
* @public
|
|
689
388
|
*/
|
|
@@ -715,31 +414,6 @@ export interface BestPractice {
|
|
|
715
414
|
*/
|
|
716
415
|
ChoiceTitle?: string | undefined;
|
|
717
416
|
}
|
|
718
|
-
/**
|
|
719
|
-
* @public
|
|
720
|
-
* @enum
|
|
721
|
-
*/
|
|
722
|
-
export declare const CheckProvider: {
|
|
723
|
-
readonly TRUSTED_ADVISOR: "TRUSTED_ADVISOR";
|
|
724
|
-
};
|
|
725
|
-
/**
|
|
726
|
-
* @public
|
|
727
|
-
*/
|
|
728
|
-
export type CheckProvider = (typeof CheckProvider)[keyof typeof CheckProvider];
|
|
729
|
-
/**
|
|
730
|
-
* @public
|
|
731
|
-
* @enum
|
|
732
|
-
*/
|
|
733
|
-
export declare const CheckFailureReason: {
|
|
734
|
-
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
735
|
-
readonly ASSUME_ROLE_ERROR: "ASSUME_ROLE_ERROR";
|
|
736
|
-
readonly PREMIUM_SUPPORT_REQUIRED: "PREMIUM_SUPPORT_REQUIRED";
|
|
737
|
-
readonly UNKNOWN_ERROR: "UNKNOWN_ERROR";
|
|
738
|
-
};
|
|
739
|
-
/**
|
|
740
|
-
* @public
|
|
741
|
-
*/
|
|
742
|
-
export type CheckFailureReason = (typeof CheckFailureReason)[keyof typeof CheckFailureReason];
|
|
743
417
|
/**
|
|
744
418
|
* <p>Account details for a Well-Architected best practice in relation to Trusted Advisor checks.</p>
|
|
745
419
|
* @public
|
|
@@ -982,17 +656,6 @@ export interface LensMetric {
|
|
|
982
656
|
*/
|
|
983
657
|
RiskCounts?: Partial<Record<Risk, number>> | undefined;
|
|
984
658
|
}
|
|
985
|
-
/**
|
|
986
|
-
* @public
|
|
987
|
-
* @enum
|
|
988
|
-
*/
|
|
989
|
-
export declare const MetricType: {
|
|
990
|
-
readonly WORKLOAD: "WORKLOAD";
|
|
991
|
-
};
|
|
992
|
-
/**
|
|
993
|
-
* @public
|
|
994
|
-
*/
|
|
995
|
-
export type MetricType = (typeof MetricType)[keyof typeof MetricType];
|
|
996
659
|
/**
|
|
997
660
|
* <p>A metric that contributes to the consolidated report.</p>
|
|
998
661
|
* @public
|
|
@@ -1088,43 +751,6 @@ export interface CreateLensShareOutput {
|
|
|
1088
751
|
*/
|
|
1089
752
|
ShareId?: string | undefined;
|
|
1090
753
|
}
|
|
1091
|
-
/**
|
|
1092
|
-
* <p>The user has reached their resource quota.</p>
|
|
1093
|
-
* @public
|
|
1094
|
-
*/
|
|
1095
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
1096
|
-
readonly name: "ServiceQuotaExceededException";
|
|
1097
|
-
readonly $fault: "client";
|
|
1098
|
-
/**
|
|
1099
|
-
* <p>Description of the error.</p>
|
|
1100
|
-
* @public
|
|
1101
|
-
*/
|
|
1102
|
-
Message: string | undefined;
|
|
1103
|
-
/**
|
|
1104
|
-
* <p>Identifier of the resource affected.</p>
|
|
1105
|
-
* @public
|
|
1106
|
-
*/
|
|
1107
|
-
ResourceId?: string | undefined;
|
|
1108
|
-
/**
|
|
1109
|
-
* <p>Type of the resource affected.</p>
|
|
1110
|
-
* @public
|
|
1111
|
-
*/
|
|
1112
|
-
ResourceType?: string | undefined;
|
|
1113
|
-
/**
|
|
1114
|
-
* <p>Service Quotas requirement to identify originating quota.</p>
|
|
1115
|
-
* @public
|
|
1116
|
-
*/
|
|
1117
|
-
QuotaCode: string | undefined;
|
|
1118
|
-
/**
|
|
1119
|
-
* <p>Service Quotas requirement to identify originating service.</p>
|
|
1120
|
-
* @public
|
|
1121
|
-
*/
|
|
1122
|
-
ServiceCode: string | undefined;
|
|
1123
|
-
/**
|
|
1124
|
-
* @internal
|
|
1125
|
-
*/
|
|
1126
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
1127
|
-
}
|
|
1128
754
|
/**
|
|
1129
755
|
* @public
|
|
1130
756
|
*/
|
|
@@ -1444,30 +1070,6 @@ export interface CreateTemplateShareOutput {
|
|
|
1444
1070
|
*/
|
|
1445
1071
|
ShareId?: string | undefined;
|
|
1446
1072
|
}
|
|
1447
|
-
/**
|
|
1448
|
-
* @public
|
|
1449
|
-
* @enum
|
|
1450
|
-
*/
|
|
1451
|
-
export declare const TrustedAdvisorIntegrationStatus: {
|
|
1452
|
-
readonly DISABLED: "DISABLED";
|
|
1453
|
-
readonly ENABLED: "ENABLED";
|
|
1454
|
-
};
|
|
1455
|
-
/**
|
|
1456
|
-
* @public
|
|
1457
|
-
*/
|
|
1458
|
-
export type TrustedAdvisorIntegrationStatus = (typeof TrustedAdvisorIntegrationStatus)[keyof typeof TrustedAdvisorIntegrationStatus];
|
|
1459
|
-
/**
|
|
1460
|
-
* @public
|
|
1461
|
-
* @enum
|
|
1462
|
-
*/
|
|
1463
|
-
export declare const DefinitionType: {
|
|
1464
|
-
readonly APP_REGISTRY: "APP_REGISTRY";
|
|
1465
|
-
readonly WORKLOAD_METADATA: "WORKLOAD_METADATA";
|
|
1466
|
-
};
|
|
1467
|
-
/**
|
|
1468
|
-
* @public
|
|
1469
|
-
*/
|
|
1470
|
-
export type DefinitionType = (typeof DefinitionType)[keyof typeof DefinitionType];
|
|
1471
1073
|
/**
|
|
1472
1074
|
* <p>Discovery configuration associated to the workload.</p>
|
|
1473
1075
|
* @public
|
|
@@ -1485,31 +1087,6 @@ export interface WorkloadDiscoveryConfig {
|
|
|
1485
1087
|
*/
|
|
1486
1088
|
WorkloadResourceDefinition?: DefinitionType[] | undefined;
|
|
1487
1089
|
}
|
|
1488
|
-
/**
|
|
1489
|
-
* @public
|
|
1490
|
-
* @enum
|
|
1491
|
-
*/
|
|
1492
|
-
export declare const WorkloadEnvironment: {
|
|
1493
|
-
readonly PREPRODUCTION: "PREPRODUCTION";
|
|
1494
|
-
readonly PRODUCTION: "PRODUCTION";
|
|
1495
|
-
};
|
|
1496
|
-
/**
|
|
1497
|
-
* @public
|
|
1498
|
-
*/
|
|
1499
|
-
export type WorkloadEnvironment = (typeof WorkloadEnvironment)[keyof typeof WorkloadEnvironment];
|
|
1500
|
-
/**
|
|
1501
|
-
* @public
|
|
1502
|
-
* @enum
|
|
1503
|
-
*/
|
|
1504
|
-
export declare const WorkloadIssueManagementStatus: {
|
|
1505
|
-
readonly DISABLED: "DISABLED";
|
|
1506
|
-
readonly ENABLED: "ENABLED";
|
|
1507
|
-
readonly INHERIT: "INHERIT";
|
|
1508
|
-
};
|
|
1509
|
-
/**
|
|
1510
|
-
* @public
|
|
1511
|
-
*/
|
|
1512
|
-
export type WorkloadIssueManagementStatus = (typeof WorkloadIssueManagementStatus)[keyof typeof WorkloadIssueManagementStatus];
|
|
1513
1090
|
/**
|
|
1514
1091
|
* <p>Workload-level: Input for the Jira configuration.</p>
|
|
1515
1092
|
* @public
|
|
@@ -1808,18 +1385,6 @@ export interface CreateWorkloadOutput {
|
|
|
1808
1385
|
*/
|
|
1809
1386
|
WorkloadArn?: string | undefined;
|
|
1810
1387
|
}
|
|
1811
|
-
/**
|
|
1812
|
-
* @public
|
|
1813
|
-
* @enum
|
|
1814
|
-
*/
|
|
1815
|
-
export declare const PermissionType: {
|
|
1816
|
-
readonly CONTRIBUTOR: "CONTRIBUTOR";
|
|
1817
|
-
readonly READONLY: "READONLY";
|
|
1818
|
-
};
|
|
1819
|
-
/**
|
|
1820
|
-
* @public
|
|
1821
|
-
*/
|
|
1822
|
-
export type PermissionType = (typeof PermissionType)[keyof typeof PermissionType];
|
|
1823
1388
|
/**
|
|
1824
1389
|
* <p>Input for Create Workload Share</p>
|
|
1825
1390
|
* @public
|
|
@@ -1872,19 +1437,6 @@ export interface CreateWorkloadShareOutput {
|
|
|
1872
1437
|
*/
|
|
1873
1438
|
ShareId?: string | undefined;
|
|
1874
1439
|
}
|
|
1875
|
-
/**
|
|
1876
|
-
* @public
|
|
1877
|
-
* @enum
|
|
1878
|
-
*/
|
|
1879
|
-
export declare const LensStatusType: {
|
|
1880
|
-
readonly ALL: "ALL";
|
|
1881
|
-
readonly DRAFT: "DRAFT";
|
|
1882
|
-
readonly PUBLISHED: "PUBLISHED";
|
|
1883
|
-
};
|
|
1884
|
-
/**
|
|
1885
|
-
* @public
|
|
1886
|
-
*/
|
|
1887
|
-
export type LensStatusType = (typeof LensStatusType)[keyof typeof LensStatusType];
|
|
1888
1440
|
/**
|
|
1889
1441
|
* @public
|
|
1890
1442
|
*/
|
|
@@ -2118,19 +1670,6 @@ export interface DeleteWorkloadShareInput {
|
|
|
2118
1670
|
*/
|
|
2119
1671
|
ClientRequestToken?: string | undefined;
|
|
2120
1672
|
}
|
|
2121
|
-
/**
|
|
2122
|
-
* @public
|
|
2123
|
-
* @enum
|
|
2124
|
-
*/
|
|
2125
|
-
export declare const DifferenceStatus: {
|
|
2126
|
-
readonly DELETED: "DELETED";
|
|
2127
|
-
readonly NEW: "NEW";
|
|
2128
|
-
readonly UPDATED: "UPDATED";
|
|
2129
|
-
};
|
|
2130
|
-
/**
|
|
2131
|
-
* @public
|
|
2132
|
-
*/
|
|
2133
|
-
export type DifferenceStatus = (typeof DifferenceStatus)[keyof typeof DifferenceStatus];
|
|
2134
1673
|
/**
|
|
2135
1674
|
* <p>Input to disassociate lens reviews.</p>
|
|
2136
1675
|
* @public
|
|
@@ -2163,18 +1702,6 @@ export interface DisassociateProfilesInput {
|
|
|
2163
1702
|
*/
|
|
2164
1703
|
ProfileArns: string[] | undefined;
|
|
2165
1704
|
}
|
|
2166
|
-
/**
|
|
2167
|
-
* @public
|
|
2168
|
-
* @enum
|
|
2169
|
-
*/
|
|
2170
|
-
export declare const DiscoveryIntegrationStatus: {
|
|
2171
|
-
readonly DISABLED: "DISABLED";
|
|
2172
|
-
readonly ENABLED: "ENABLED";
|
|
2173
|
-
};
|
|
2174
|
-
/**
|
|
2175
|
-
* @public
|
|
2176
|
-
*/
|
|
2177
|
-
export type DiscoveryIntegrationStatus = (typeof DiscoveryIntegrationStatus)[keyof typeof DiscoveryIntegrationStatus];
|
|
2178
1705
|
/**
|
|
2179
1706
|
* @public
|
|
2180
1707
|
*/
|
|
@@ -2280,18 +1807,6 @@ export interface GetAnswerOutput {
|
|
|
2280
1807
|
*/
|
|
2281
1808
|
Answer?: Answer | undefined;
|
|
2282
1809
|
}
|
|
2283
|
-
/**
|
|
2284
|
-
* @public
|
|
2285
|
-
* @enum
|
|
2286
|
-
*/
|
|
2287
|
-
export declare const ReportFormat: {
|
|
2288
|
-
readonly JSON: "JSON";
|
|
2289
|
-
readonly PDF: "PDF";
|
|
2290
|
-
};
|
|
2291
|
-
/**
|
|
2292
|
-
* @public
|
|
2293
|
-
*/
|
|
2294
|
-
export type ReportFormat = (typeof ReportFormat)[keyof typeof ReportFormat];
|
|
2295
1810
|
/**
|
|
2296
1811
|
* @public
|
|
2297
1812
|
*/
|
|
@@ -2343,18 +1858,6 @@ export interface GetConsolidatedReportOutput {
|
|
|
2343
1858
|
*/
|
|
2344
1859
|
Base64String?: string | undefined;
|
|
2345
1860
|
}
|
|
2346
|
-
/**
|
|
2347
|
-
* @public
|
|
2348
|
-
* @enum
|
|
2349
|
-
*/
|
|
2350
|
-
export declare const OrganizationSharingStatus: {
|
|
2351
|
-
readonly DISABLED: "DISABLED";
|
|
2352
|
-
readonly ENABLED: "ENABLED";
|
|
2353
|
-
};
|
|
2354
|
-
/**
|
|
2355
|
-
* @public
|
|
2356
|
-
*/
|
|
2357
|
-
export type OrganizationSharingStatus = (typeof OrganizationSharingStatus)[keyof typeof OrganizationSharingStatus];
|
|
2358
1861
|
/**
|
|
2359
1862
|
* @public
|
|
2360
1863
|
*/
|
|
@@ -2505,21 +2008,6 @@ export interface JiraSelectedQuestionConfiguration {
|
|
|
2505
2008
|
*/
|
|
2506
2009
|
SelectedPillars?: SelectedPillar[] | undefined;
|
|
2507
2010
|
}
|
|
2508
|
-
/**
|
|
2509
|
-
* @public
|
|
2510
|
-
* @enum
|
|
2511
|
-
*/
|
|
2512
|
-
export declare const LensStatus: {
|
|
2513
|
-
readonly CURRENT: "CURRENT";
|
|
2514
|
-
readonly DELETED: "DELETED";
|
|
2515
|
-
readonly DEPRECATED: "DEPRECATED";
|
|
2516
|
-
readonly NOT_CURRENT: "NOT_CURRENT";
|
|
2517
|
-
readonly UNSHARED: "UNSHARED";
|
|
2518
|
-
};
|
|
2519
|
-
/**
|
|
2520
|
-
* @public
|
|
2521
|
-
*/
|
|
2522
|
-
export type LensStatus = (typeof LensStatus)[keyof typeof LensStatus];
|
|
2523
2011
|
/**
|
|
2524
2012
|
* <p>A pillar review summary of a lens review.</p>
|
|
2525
2013
|
* @public
|
|
@@ -2897,21 +2385,6 @@ export interface GetMilestoneInput {
|
|
|
2897
2385
|
*/
|
|
2898
2386
|
MilestoneNumber: number | undefined;
|
|
2899
2387
|
}
|
|
2900
|
-
/**
|
|
2901
|
-
* @public
|
|
2902
|
-
* @enum
|
|
2903
|
-
*/
|
|
2904
|
-
export declare const WorkloadImprovementStatus: {
|
|
2905
|
-
readonly COMPLETE: "COMPLETE";
|
|
2906
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
2907
|
-
readonly NOT_APPLICABLE: "NOT_APPLICABLE";
|
|
2908
|
-
readonly NOT_STARTED: "NOT_STARTED";
|
|
2909
|
-
readonly RISK_ACKNOWLEDGED: "RISK_ACKNOWLEDGED";
|
|
2910
|
-
};
|
|
2911
|
-
/**
|
|
2912
|
-
* @public
|
|
2913
|
-
*/
|
|
2914
|
-
export type WorkloadImprovementStatus = (typeof WorkloadImprovementStatus)[keyof typeof WorkloadImprovementStatus];
|
|
2915
2388
|
/**
|
|
2916
2389
|
* <p>Workload-level: Output configuration of the Jira integration.</p>
|
|
2917
2390
|
* @public
|
|
@@ -3529,30 +3002,6 @@ export interface GetReviewTemplateInput {
|
|
|
3529
3002
|
*/
|
|
3530
3003
|
TemplateArn: string | undefined;
|
|
3531
3004
|
}
|
|
3532
|
-
/**
|
|
3533
|
-
* @public
|
|
3534
|
-
* @enum
|
|
3535
|
-
*/
|
|
3536
|
-
export declare const Question: {
|
|
3537
|
-
readonly ANSWERED: "ANSWERED";
|
|
3538
|
-
readonly UNANSWERED: "UNANSWERED";
|
|
3539
|
-
};
|
|
3540
|
-
/**
|
|
3541
|
-
* @public
|
|
3542
|
-
*/
|
|
3543
|
-
export type Question = (typeof Question)[keyof typeof Question];
|
|
3544
|
-
/**
|
|
3545
|
-
* @public
|
|
3546
|
-
* @enum
|
|
3547
|
-
*/
|
|
3548
|
-
export declare const ReviewTemplateUpdateStatus: {
|
|
3549
|
-
readonly CURRENT: "CURRENT";
|
|
3550
|
-
readonly LENS_NOT_CURRENT: "LENS_NOT_CURRENT";
|
|
3551
|
-
};
|
|
3552
|
-
/**
|
|
3553
|
-
* @public
|
|
3554
|
-
*/
|
|
3555
|
-
export type ReviewTemplateUpdateStatus = (typeof ReviewTemplateUpdateStatus)[keyof typeof ReviewTemplateUpdateStatus];
|
|
3556
3005
|
/**
|
|
3557
3006
|
* <p>A review template.</p>
|
|
3558
3007
|
* @public
|
|
@@ -3652,18 +3101,6 @@ export interface GetReviewTemplateAnswerInput {
|
|
|
3652
3101
|
*/
|
|
3653
3102
|
QuestionId: string | undefined;
|
|
3654
3103
|
}
|
|
3655
|
-
/**
|
|
3656
|
-
* @public
|
|
3657
|
-
* @enum
|
|
3658
|
-
*/
|
|
3659
|
-
export declare const ReviewTemplateAnswerStatus: {
|
|
3660
|
-
readonly ANSWERED: "ANSWERED";
|
|
3661
|
-
readonly UNANSWERED: "UNANSWERED";
|
|
3662
|
-
};
|
|
3663
|
-
/**
|
|
3664
|
-
* @public
|
|
3665
|
-
*/
|
|
3666
|
-
export type ReviewTemplateAnswerStatus = (typeof ReviewTemplateAnswerStatus)[keyof typeof ReviewTemplateAnswerStatus];
|
|
3667
3104
|
/**
|
|
3668
3105
|
* <p>An answer of the question.</p>
|
|
3669
3106
|
* @public
|
|
@@ -3970,19 +3407,6 @@ export interface ImportLensInput {
|
|
|
3970
3407
|
*/
|
|
3971
3408
|
Tags?: Record<string, string> | undefined;
|
|
3972
3409
|
}
|
|
3973
|
-
/**
|
|
3974
|
-
* @public
|
|
3975
|
-
* @enum
|
|
3976
|
-
*/
|
|
3977
|
-
export declare const ImportLensStatus: {
|
|
3978
|
-
readonly COMPLETE: "COMPLETE";
|
|
3979
|
-
readonly ERROR: "ERROR";
|
|
3980
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
3981
|
-
};
|
|
3982
|
-
/**
|
|
3983
|
-
* @public
|
|
3984
|
-
*/
|
|
3985
|
-
export type ImportLensStatus = (typeof ImportLensStatus)[keyof typeof ImportLensStatus];
|
|
3986
3410
|
/**
|
|
3987
3411
|
* @public
|
|
3988
3412
|
*/
|
|
@@ -4042,17 +3466,6 @@ export interface ImprovementSummary {
|
|
|
4042
3466
|
*/
|
|
4043
3467
|
JiraConfiguration?: JiraConfiguration | undefined;
|
|
4044
3468
|
}
|
|
4045
|
-
/**
|
|
4046
|
-
* @public
|
|
4047
|
-
* @enum
|
|
4048
|
-
*/
|
|
4049
|
-
export declare const IntegratingService: {
|
|
4050
|
-
readonly JIRA: "JIRA";
|
|
4051
|
-
};
|
|
4052
|
-
/**
|
|
4053
|
-
* @public
|
|
4054
|
-
*/
|
|
4055
|
-
export type IntegratingService = (typeof IntegratingService)[keyof typeof IntegratingService];
|
|
4056
3469
|
/**
|
|
4057
3470
|
* <p>A lens review summary of a workload.</p>
|
|
4058
3471
|
* @public
|
|
@@ -4111,24 +3524,6 @@ export interface LensReviewSummary {
|
|
|
4111
3524
|
*/
|
|
4112
3525
|
PrioritizedRiskCounts?: Partial<Record<Risk, number>> | undefined;
|
|
4113
3526
|
}
|
|
4114
|
-
/**
|
|
4115
|
-
* @public
|
|
4116
|
-
* @enum
|
|
4117
|
-
*/
|
|
4118
|
-
export declare const ShareStatus: {
|
|
4119
|
-
readonly ACCEPTED: "ACCEPTED";
|
|
4120
|
-
readonly ASSOCIATED: "ASSOCIATED";
|
|
4121
|
-
readonly ASSOCIATING: "ASSOCIATING";
|
|
4122
|
-
readonly EXPIRED: "EXPIRED";
|
|
4123
|
-
readonly FAILED: "FAILED";
|
|
4124
|
-
readonly PENDING: "PENDING";
|
|
4125
|
-
readonly REJECTED: "REJECTED";
|
|
4126
|
-
readonly REVOKED: "REVOKED";
|
|
4127
|
-
};
|
|
4128
|
-
/**
|
|
4129
|
-
* @public
|
|
4130
|
-
*/
|
|
4131
|
-
export type ShareStatus = (typeof ShareStatus)[keyof typeof ShareStatus];
|
|
4132
3527
|
/**
|
|
4133
3528
|
* <p>A lens share summary return object.</p>
|
|
4134
3529
|
* @public
|
|
@@ -4156,19 +3551,6 @@ export interface LensShareSummary {
|
|
|
4156
3551
|
*/
|
|
4157
3552
|
StatusMessage?: string | undefined;
|
|
4158
3553
|
}
|
|
4159
|
-
/**
|
|
4160
|
-
* @public
|
|
4161
|
-
* @enum
|
|
4162
|
-
*/
|
|
4163
|
-
export declare const LensType: {
|
|
4164
|
-
readonly AWS_OFFICIAL: "AWS_OFFICIAL";
|
|
4165
|
-
readonly CUSTOM_SELF: "CUSTOM_SELF";
|
|
4166
|
-
readonly CUSTOM_SHARED: "CUSTOM_SHARED";
|
|
4167
|
-
};
|
|
4168
|
-
/**
|
|
4169
|
-
* @public
|
|
4170
|
-
*/
|
|
4171
|
-
export type LensType = (typeof LensType)[keyof typeof LensType];
|
|
4172
3554
|
/**
|
|
4173
3555
|
* <p>A lens summary of a lens.</p>
|
|
4174
3556
|
* @public
|
|
@@ -4290,18 +3672,6 @@ export interface LensUpgradeSummary {
|
|
|
4290
3672
|
*/
|
|
4291
3673
|
ResourceName?: string | undefined;
|
|
4292
3674
|
}
|
|
4293
|
-
/**
|
|
4294
|
-
* @public
|
|
4295
|
-
* @enum
|
|
4296
|
-
*/
|
|
4297
|
-
export declare const QuestionPriority: {
|
|
4298
|
-
readonly NONE: "NONE";
|
|
4299
|
-
readonly PRIORITIZED: "PRIORITIZED";
|
|
4300
|
-
};
|
|
4301
|
-
/**
|
|
4302
|
-
* @public
|
|
4303
|
-
*/
|
|
4304
|
-
export type QuestionPriority = (typeof QuestionPriority)[keyof typeof QuestionPriority];
|
|
4305
3675
|
/**
|
|
4306
3676
|
* <p>Input to list answers.</p>
|
|
4307
3677
|
* @public
|
|
@@ -4913,18 +4283,6 @@ export interface ListNotificationsInput {
|
|
|
4913
4283
|
*/
|
|
4914
4284
|
ResourceArn?: string | undefined;
|
|
4915
4285
|
}
|
|
4916
|
-
/**
|
|
4917
|
-
* @public
|
|
4918
|
-
* @enum
|
|
4919
|
-
*/
|
|
4920
|
-
export declare const NotificationType: {
|
|
4921
|
-
readonly LENS_VERSION_DEPRECATED: "LENS_VERSION_DEPRECATED";
|
|
4922
|
-
readonly LENS_VERSION_UPGRADED: "LENS_VERSION_UPGRADED";
|
|
4923
|
-
};
|
|
4924
|
-
/**
|
|
4925
|
-
* @public
|
|
4926
|
-
*/
|
|
4927
|
-
export type NotificationType = (typeof NotificationType)[keyof typeof NotificationType];
|
|
4928
4286
|
/**
|
|
4929
4287
|
* <p>A notification summary return object.</p>
|
|
4930
4288
|
* @public
|
|
@@ -4976,18 +4334,6 @@ export interface ListProfileNotificationsInput {
|
|
|
4976
4334
|
*/
|
|
4977
4335
|
MaxResults?: number | undefined;
|
|
4978
4336
|
}
|
|
4979
|
-
/**
|
|
4980
|
-
* @public
|
|
4981
|
-
* @enum
|
|
4982
|
-
*/
|
|
4983
|
-
export declare const ProfileNotificationType: {
|
|
4984
|
-
readonly PROFILE_ANSWERS_UPDATED: "PROFILE_ANSWERS_UPDATED";
|
|
4985
|
-
readonly PROFILE_DELETED: "PROFILE_DELETED";
|
|
4986
|
-
};
|
|
4987
|
-
/**
|
|
4988
|
-
* @public
|
|
4989
|
-
*/
|
|
4990
|
-
export type ProfileNotificationType = (typeof ProfileNotificationType)[keyof typeof ProfileNotificationType];
|
|
4991
4337
|
/**
|
|
4992
4338
|
* <p>The profile notification summary.</p>
|
|
4993
4339
|
* @public
|
|
@@ -5046,18 +4392,6 @@ export interface ListProfileNotificationsOutput {
|
|
|
5046
4392
|
*/
|
|
5047
4393
|
NextToken?: string | undefined;
|
|
5048
4394
|
}
|
|
5049
|
-
/**
|
|
5050
|
-
* @public
|
|
5051
|
-
* @enum
|
|
5052
|
-
*/
|
|
5053
|
-
export declare const ProfileOwnerType: {
|
|
5054
|
-
readonly SELF: "SELF";
|
|
5055
|
-
readonly SHARED: "SHARED";
|
|
5056
|
-
};
|
|
5057
|
-
/**
|
|
5058
|
-
* @public
|
|
5059
|
-
*/
|
|
5060
|
-
export type ProfileOwnerType = (typeof ProfileOwnerType)[keyof typeof ProfileOwnerType];
|
|
5061
4395
|
/**
|
|
5062
4396
|
* @public
|
|
5063
4397
|
*/
|
|
@@ -5411,20 +4745,6 @@ export interface ListReviewTemplatesOutput {
|
|
|
5411
4745
|
*/
|
|
5412
4746
|
NextToken?: string | undefined;
|
|
5413
4747
|
}
|
|
5414
|
-
/**
|
|
5415
|
-
* @public
|
|
5416
|
-
* @enum
|
|
5417
|
-
*/
|
|
5418
|
-
export declare const ShareResourceType: {
|
|
5419
|
-
readonly LENS: "LENS";
|
|
5420
|
-
readonly PROFILE: "PROFILE";
|
|
5421
|
-
readonly TEMPLATE: "TEMPLATE";
|
|
5422
|
-
readonly WORKLOAD: "WORKLOAD";
|
|
5423
|
-
};
|
|
5424
|
-
/**
|
|
5425
|
-
* @public
|
|
5426
|
-
*/
|
|
5427
|
-
export type ShareResourceType = (typeof ShareResourceType)[keyof typeof ShareResourceType];
|
|
5428
4748
|
/**
|
|
5429
4749
|
* <p>Input for List Share Invitations</p>
|
|
5430
4750
|
* @public
|
|
@@ -5827,18 +5147,6 @@ export interface ShareInvitation {
|
|
|
5827
5147
|
*/
|
|
5828
5148
|
TemplateArn?: string | undefined;
|
|
5829
5149
|
}
|
|
5830
|
-
/**
|
|
5831
|
-
* @public
|
|
5832
|
-
* @enum
|
|
5833
|
-
*/
|
|
5834
|
-
export declare const ShareInvitationAction: {
|
|
5835
|
-
readonly ACCEPT: "ACCEPT";
|
|
5836
|
-
readonly REJECT: "REJECT";
|
|
5837
|
-
};
|
|
5838
|
-
/**
|
|
5839
|
-
* @public
|
|
5840
|
-
*/
|
|
5841
|
-
export type ShareInvitationAction = (typeof ShareInvitationAction)[keyof typeof ShareInvitationAction];
|
|
5842
5150
|
/**
|
|
5843
5151
|
* @public
|
|
5844
5152
|
*/
|