@aws-sdk/client-trustedadvisor 3.454.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/LICENSE +201 -0
- package/README.md +285 -0
- package/dist-cjs/TrustedAdvisor.js +31 -0
- package/dist-cjs/TrustedAdvisorClient.js +43 -0
- package/dist-cjs/commands/GetOrganizationRecommendationCommand.js +52 -0
- package/dist-cjs/commands/GetRecommendationCommand.js +52 -0
- package/dist-cjs/commands/ListChecksCommand.js +51 -0
- package/dist-cjs/commands/ListOrganizationRecommendationAccountsCommand.js +52 -0
- package/dist-cjs/commands/ListOrganizationRecommendationResourcesCommand.js +51 -0
- package/dist-cjs/commands/ListOrganizationRecommendationsCommand.js +51 -0
- package/dist-cjs/commands/ListRecommendationResourcesCommand.js +51 -0
- package/dist-cjs/commands/ListRecommendationsCommand.js +51 -0
- package/dist-cjs/commands/UpdateOrganizationRecommendationLifecycleCommand.js +52 -0
- package/dist-cjs/commands/UpdateRecommendationLifecycleCommand.js +52 -0
- package/dist-cjs/commands/index.js +13 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +12 -0
- package/dist-cjs/models/TrustedAdvisorServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +202 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListChecksPaginator.js +29 -0
- package/dist-cjs/pagination/ListOrganizationRecommendationAccountsPaginator.js +29 -0
- package/dist-cjs/pagination/ListOrganizationRecommendationResourcesPaginator.js +29 -0
- package/dist-cjs/pagination/ListOrganizationRecommendationsPaginator.js +29 -0
- package/dist-cjs/pagination/ListRecommendationResourcesPaginator.js +29 -0
- package/dist-cjs/pagination/ListRecommendationsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +10 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1023 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +24 -0
- package/dist-cjs/runtimeExtensions.js +22 -0
- package/dist-es/TrustedAdvisor.js +27 -0
- package/dist-es/TrustedAdvisorClient.js +39 -0
- package/dist-es/commands/GetOrganizationRecommendationCommand.js +48 -0
- package/dist-es/commands/GetRecommendationCommand.js +48 -0
- package/dist-es/commands/ListChecksCommand.js +47 -0
- package/dist-es/commands/ListOrganizationRecommendationAccountsCommand.js +48 -0
- package/dist-es/commands/ListOrganizationRecommendationResourcesCommand.js +47 -0
- package/dist-es/commands/ListOrganizationRecommendationsCommand.js +47 -0
- package/dist-es/commands/ListRecommendationResourcesCommand.js +47 -0
- package/dist-es/commands/ListRecommendationsCommand.js +47 -0
- package/dist-es/commands/UpdateOrganizationRecommendationLifecycleCommand.js +48 -0
- package/dist-es/commands/UpdateRecommendationLifecycleCommand.js +48 -0
- package/dist-es/commands/index.js +10 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +7 -0
- package/dist-es/models/TrustedAdvisorServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +185 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListChecksPaginator.js +25 -0
- package/dist-es/pagination/ListOrganizationRecommendationAccountsPaginator.js +25 -0
- package/dist-es/pagination/ListOrganizationRecommendationResourcesPaginator.js +25 -0
- package/dist-es/pagination/ListOrganizationRecommendationsPaginator.js +25 -0
- package/dist-es/pagination/ListRecommendationResourcesPaginator.js +25 -0
- package/dist-es/pagination/ListRecommendationsPaginator.js +25 -0
- package/dist-es/pagination/index.js +7 -0
- package/dist-es/protocols/Aws_restJson1.js +1000 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +20 -0
- package/dist-es/runtimeExtensions.js +18 -0
- package/dist-types/TrustedAdvisor.d.ts +80 -0
- package/dist-types/TrustedAdvisorClient.d.ts +179 -0
- package/dist-types/commands/GetOrganizationRecommendationCommand.d.ts +125 -0
- package/dist-types/commands/GetRecommendationCommand.d.ts +123 -0
- package/dist-types/commands/ListChecksCommand.d.ts +108 -0
- package/dist-types/commands/ListOrganizationRecommendationAccountsCommand.d.ts +105 -0
- package/dist-types/commands/ListOrganizationRecommendationResourcesCommand.d.ts +110 -0
- package/dist-types/commands/ListOrganizationRecommendationsCommand.d.ts +127 -0
- package/dist-types/commands/ListRecommendationResourcesCommand.d.ts +106 -0
- package/dist-types/commands/ListRecommendationsCommand.d.ts +125 -0
- package/dist-types/commands/UpdateOrganizationRecommendationLifecycleCommand.d.ts +94 -0
- package/dist-types/commands/UpdateRecommendationLifecycleCommand.d.ts +92 -0
- package/dist-types/commands/index.d.ts +10 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +22 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +8 -0
- package/dist-types/index.d.ts +15 -0
- package/dist-types/models/TrustedAdvisorServiceException.d.ts +13 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1322 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListChecksPaginator.d.ts +7 -0
- package/dist-types/pagination/ListOrganizationRecommendationAccountsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListOrganizationRecommendationResourcesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListOrganizationRecommendationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRecommendationResourcesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRecommendationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +7 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +92 -0
- package/dist-types/runtimeConfig.browser.d.ts +46 -0
- package/dist-types/runtimeConfig.d.ts +46 -0
- package/dist-types/runtimeConfig.native.d.ts +45 -0
- package/dist-types/runtimeConfig.shared.d.ts +19 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/TrustedAdvisor.d.ts +195 -0
- package/dist-types/ts3.4/TrustedAdvisorClient.d.ts +179 -0
- package/dist-types/ts3.4/commands/GetOrganizationRecommendationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetRecommendationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListChecksCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListOrganizationRecommendationAccountsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListOrganizationRecommendationResourcesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListOrganizationRecommendationsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListRecommendationResourcesCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateOrganizationRecommendationLifecycleCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateRecommendationLifecycleCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +10 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
- package/dist-types/ts3.4/index.d.ts +10 -0
- package/dist-types/ts3.4/models/TrustedAdvisorServiceException.d.ts +8 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +397 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListChecksPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListOrganizationRecommendationAccountsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListOrganizationRecommendationResourcesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListOrganizationRecommendationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRecommendationResourcesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRecommendationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +7 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +125 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +88 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/package.json +102 -0
|
@@ -0,0 +1,1322 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { TrustedAdvisorServiceException as __BaseException } from "./TrustedAdvisorServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
* <p>Exception that access has been denied due to insufficient access</p>
|
|
6
|
+
*/
|
|
7
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
+
readonly name: "AccessDeniedException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
* @enum
|
|
18
|
+
*/
|
|
19
|
+
export declare const RecommendationLifecycleStage: {
|
|
20
|
+
readonly DISMISSED: "dismissed";
|
|
21
|
+
readonly IN_PROGRESS: "in_progress";
|
|
22
|
+
readonly PENDING_RESPONSE: "pending_response";
|
|
23
|
+
readonly RESOLVED: "resolved";
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
export type RecommendationLifecycleStage = (typeof RecommendationLifecycleStage)[keyof typeof RecommendationLifecycleStage];
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
* @enum
|
|
32
|
+
*/
|
|
33
|
+
export declare const UpdateRecommendationLifecycleStageReasonCode: {
|
|
34
|
+
readonly LOW_PRIORITY: "low_priority";
|
|
35
|
+
readonly NON_CRITICAL_ACCOUNT: "non_critical_account";
|
|
36
|
+
readonly NOT_APPLICABLE: "not_applicable";
|
|
37
|
+
readonly OTHER: "other";
|
|
38
|
+
readonly OTHER_METHODS_AVAILABLE: "other_methods_available";
|
|
39
|
+
readonly TEMPORARY_ACCOUNT: "temporary_account";
|
|
40
|
+
readonly VALID_BUSINESS_CASE: "valid_business_case";
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
export type UpdateRecommendationLifecycleStageReasonCode = (typeof UpdateRecommendationLifecycleStageReasonCode)[keyof typeof UpdateRecommendationLifecycleStageReasonCode];
|
|
46
|
+
/**
|
|
47
|
+
* @public
|
|
48
|
+
* <p>Summary of an AccountRecommendationLifecycle for an Organization Recommendation</p>
|
|
49
|
+
*/
|
|
50
|
+
export interface AccountRecommendationLifecycleSummary {
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
* <p>The AWS account ID</p>
|
|
54
|
+
*/
|
|
55
|
+
accountId?: string;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
* <p>The Recommendation ARN</p>
|
|
59
|
+
*/
|
|
60
|
+
accountRecommendationArn?: string;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
* <p>The lifecycle stage from AWS Trusted Advisor Priority</p>
|
|
64
|
+
*/
|
|
65
|
+
lifecycleStage?: RecommendationLifecycleStage;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
* <p>The person on whose behalf a Technical Account Manager (TAM) updated the recommendation. This information
|
|
69
|
+
* is only available when a Technical Account Manager takes an action on a recommendation managed by AWS
|
|
70
|
+
* Trusted Advisor Priority
|
|
71
|
+
* </p>
|
|
72
|
+
*/
|
|
73
|
+
updatedOnBehalfOf?: string;
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
* <p>The job title of the person on whose behalf a Technical Account Manager (TAM) updated the recommendation.
|
|
77
|
+
* This information is only available when a Technical Account Manager takes an action on a recommendation
|
|
78
|
+
* managed by AWS Trusted Advisor Priority
|
|
79
|
+
* </p>
|
|
80
|
+
*/
|
|
81
|
+
updatedOnBehalfOfJobTitle?: string;
|
|
82
|
+
/**
|
|
83
|
+
* @public
|
|
84
|
+
* <p>Reason for the lifecycle stage change</p>
|
|
85
|
+
*/
|
|
86
|
+
updateReason?: string;
|
|
87
|
+
/**
|
|
88
|
+
* @public
|
|
89
|
+
* <p>Reason code for the lifecycle state change</p>
|
|
90
|
+
*/
|
|
91
|
+
updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode;
|
|
92
|
+
/**
|
|
93
|
+
* @public
|
|
94
|
+
* <p>When the Recommendation was last updated</p>
|
|
95
|
+
*/
|
|
96
|
+
lastUpdatedAt?: Date;
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* @public
|
|
100
|
+
* @enum
|
|
101
|
+
*/
|
|
102
|
+
export declare const RecommendationPillar: {
|
|
103
|
+
readonly COST_OPTIMIZING: "cost_optimizing";
|
|
104
|
+
readonly FAULT_TOLERANCE: "fault_tolerance";
|
|
105
|
+
readonly OPERATIONAL_EXCELLENCE: "operational_excellence";
|
|
106
|
+
readonly PERFORMANCE: "performance";
|
|
107
|
+
readonly SECURITY: "security";
|
|
108
|
+
readonly SERVICE_LIMITS: "service_limits";
|
|
109
|
+
};
|
|
110
|
+
/**
|
|
111
|
+
* @public
|
|
112
|
+
*/
|
|
113
|
+
export type RecommendationPillar = (typeof RecommendationPillar)[keyof typeof RecommendationPillar];
|
|
114
|
+
/**
|
|
115
|
+
* @public
|
|
116
|
+
* @enum
|
|
117
|
+
*/
|
|
118
|
+
export declare const RecommendationSource: {
|
|
119
|
+
readonly AWS_CONFIG: "aws_config";
|
|
120
|
+
readonly COMPUTE_OPTIMIZER: "compute_optimizer";
|
|
121
|
+
readonly COST_EXPLORER: "cost_explorer";
|
|
122
|
+
readonly LSE: "lse";
|
|
123
|
+
readonly MANUAL: "manual";
|
|
124
|
+
readonly PSE: "pse";
|
|
125
|
+
readonly RDS: "rds";
|
|
126
|
+
readonly RESILIENCE: "resilience";
|
|
127
|
+
readonly RESILIENCE_HUB: "resilience_hub";
|
|
128
|
+
readonly SECURITY_HUB: "security_hub";
|
|
129
|
+
readonly STIR: "stir";
|
|
130
|
+
readonly TA_CHECK: "ta_check";
|
|
131
|
+
readonly WELL_ARCHITECTED: "well_architected";
|
|
132
|
+
};
|
|
133
|
+
/**
|
|
134
|
+
* @public
|
|
135
|
+
*/
|
|
136
|
+
export type RecommendationSource = (typeof RecommendationSource)[keyof typeof RecommendationSource];
|
|
137
|
+
/**
|
|
138
|
+
* @public
|
|
139
|
+
* <p>A summary of an AWS Trusted Advisor Check</p>
|
|
140
|
+
*/
|
|
141
|
+
export interface CheckSummary {
|
|
142
|
+
/**
|
|
143
|
+
* @public
|
|
144
|
+
* <p>The unique identifier of the AWS Trusted Advisor Check</p>
|
|
145
|
+
*/
|
|
146
|
+
id: string | undefined;
|
|
147
|
+
/**
|
|
148
|
+
* @public
|
|
149
|
+
* <p>The ARN of the AWS Trusted Advisor Check</p>
|
|
150
|
+
*/
|
|
151
|
+
arn: string | undefined;
|
|
152
|
+
/**
|
|
153
|
+
* @public
|
|
154
|
+
* <p>The name of the AWS Trusted Advisor Check</p>
|
|
155
|
+
*/
|
|
156
|
+
name: string | undefined;
|
|
157
|
+
/**
|
|
158
|
+
* @public
|
|
159
|
+
* <p>A description of what the AWS Trusted Advisor Check is monitoring</p>
|
|
160
|
+
*/
|
|
161
|
+
description: string | undefined;
|
|
162
|
+
/**
|
|
163
|
+
* @public
|
|
164
|
+
* <p>The Recommendation pillars that the AWS Trusted Advisor Check falls under</p>
|
|
165
|
+
*/
|
|
166
|
+
pillars: RecommendationPillar[] | undefined;
|
|
167
|
+
/**
|
|
168
|
+
* @public
|
|
169
|
+
* <p>The AWS Services that the Check applies to</p>
|
|
170
|
+
*/
|
|
171
|
+
awsServices: string[] | undefined;
|
|
172
|
+
/**
|
|
173
|
+
* @public
|
|
174
|
+
* <p>The source of the Recommendation</p>
|
|
175
|
+
*/
|
|
176
|
+
source: RecommendationSource | undefined;
|
|
177
|
+
/**
|
|
178
|
+
* @public
|
|
179
|
+
* <p>The column headings for the metadata returned in the resource</p>
|
|
180
|
+
*/
|
|
181
|
+
metadata: Record<string, string> | undefined;
|
|
182
|
+
}
|
|
183
|
+
/**
|
|
184
|
+
* @public
|
|
185
|
+
* <p>Exception that the request was denied due to conflictions in state</p>
|
|
186
|
+
*/
|
|
187
|
+
export declare class ConflictException extends __BaseException {
|
|
188
|
+
readonly name: "ConflictException";
|
|
189
|
+
readonly $fault: "client";
|
|
190
|
+
/**
|
|
191
|
+
* @internal
|
|
192
|
+
*/
|
|
193
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
194
|
+
}
|
|
195
|
+
/**
|
|
196
|
+
* @public
|
|
197
|
+
*/
|
|
198
|
+
export interface GetOrganizationRecommendationRequest {
|
|
199
|
+
/**
|
|
200
|
+
* @public
|
|
201
|
+
* <p>The Recommendation identifier</p>
|
|
202
|
+
*/
|
|
203
|
+
organizationRecommendationIdentifier: string | undefined;
|
|
204
|
+
}
|
|
205
|
+
/**
|
|
206
|
+
* @public
|
|
207
|
+
* <p>Cost optimizing aggregates for a Recommendation</p>
|
|
208
|
+
*/
|
|
209
|
+
export interface RecommendationCostOptimizingAggregates {
|
|
210
|
+
/**
|
|
211
|
+
* @public
|
|
212
|
+
* <p>The estimated monthly savings</p>
|
|
213
|
+
*/
|
|
214
|
+
estimatedMonthlySavings: number | undefined;
|
|
215
|
+
/**
|
|
216
|
+
* @public
|
|
217
|
+
* <p>The estimated percently monthly savings</p>
|
|
218
|
+
*/
|
|
219
|
+
estimatedPercentMonthlySavings: number | undefined;
|
|
220
|
+
}
|
|
221
|
+
/**
|
|
222
|
+
* @public
|
|
223
|
+
* <p>Recommendation pillar aggregates</p>
|
|
224
|
+
*/
|
|
225
|
+
export interface RecommendationPillarSpecificAggregates {
|
|
226
|
+
/**
|
|
227
|
+
* @public
|
|
228
|
+
* <p>Cost optimizing aggregates</p>
|
|
229
|
+
*/
|
|
230
|
+
costOptimizing?: RecommendationCostOptimizingAggregates;
|
|
231
|
+
}
|
|
232
|
+
/**
|
|
233
|
+
* @public
|
|
234
|
+
* <p>Aggregation of Recommendation Resources</p>
|
|
235
|
+
*/
|
|
236
|
+
export interface RecommendationResourcesAggregates {
|
|
237
|
+
/**
|
|
238
|
+
* @public
|
|
239
|
+
* <p>The number of AWS resources that were flagged to be OK according to the Trusted Advisor check</p>
|
|
240
|
+
*/
|
|
241
|
+
okCount: number | undefined;
|
|
242
|
+
/**
|
|
243
|
+
* @public
|
|
244
|
+
* <p>The number of AWS resources that were flagged to have warning according to the Trusted Advisor check
|
|
245
|
+
* </p>
|
|
246
|
+
*/
|
|
247
|
+
warningCount: number | undefined;
|
|
248
|
+
/**
|
|
249
|
+
* @public
|
|
250
|
+
* <p>The number of AWS resources that were flagged to have errors according to the Trusted Advisor check</p>
|
|
251
|
+
*/
|
|
252
|
+
errorCount: number | undefined;
|
|
253
|
+
}
|
|
254
|
+
/**
|
|
255
|
+
* @public
|
|
256
|
+
* @enum
|
|
257
|
+
*/
|
|
258
|
+
export declare const RecommendationStatus: {
|
|
259
|
+
readonly ERROR: "error";
|
|
260
|
+
readonly OK: "ok";
|
|
261
|
+
readonly WARNING: "warning";
|
|
262
|
+
};
|
|
263
|
+
/**
|
|
264
|
+
* @public
|
|
265
|
+
*/
|
|
266
|
+
export type RecommendationStatus = (typeof RecommendationStatus)[keyof typeof RecommendationStatus];
|
|
267
|
+
/**
|
|
268
|
+
* @public
|
|
269
|
+
* @enum
|
|
270
|
+
*/
|
|
271
|
+
export declare const RecommendationType: {
|
|
272
|
+
readonly PRIORITY: "priority";
|
|
273
|
+
readonly STANDARD: "standard";
|
|
274
|
+
};
|
|
275
|
+
/**
|
|
276
|
+
* @public
|
|
277
|
+
*/
|
|
278
|
+
export type RecommendationType = (typeof RecommendationType)[keyof typeof RecommendationType];
|
|
279
|
+
/**
|
|
280
|
+
* @public
|
|
281
|
+
* <p>A Recommendation for accounts within an Organization</p>
|
|
282
|
+
*/
|
|
283
|
+
export interface OrganizationRecommendation {
|
|
284
|
+
/**
|
|
285
|
+
* @public
|
|
286
|
+
* <p>The ID which identifies where the Recommendation was produced</p>
|
|
287
|
+
*/
|
|
288
|
+
id: string | undefined;
|
|
289
|
+
/**
|
|
290
|
+
* @public
|
|
291
|
+
* <p>Whether the Recommendation was automated or generated by AWS Trusted Advisor Priority</p>
|
|
292
|
+
*/
|
|
293
|
+
type: RecommendationType | undefined;
|
|
294
|
+
/**
|
|
295
|
+
* @public
|
|
296
|
+
* <p>The AWS Trusted Advisor Check ARN that relates to the Recommendation</p>
|
|
297
|
+
*/
|
|
298
|
+
checkArn?: string;
|
|
299
|
+
/**
|
|
300
|
+
* @public
|
|
301
|
+
* <p>The status of the Recommendation</p>
|
|
302
|
+
*/
|
|
303
|
+
status: RecommendationStatus | undefined;
|
|
304
|
+
/**
|
|
305
|
+
* @public
|
|
306
|
+
* <p>The lifecycle stage from AWS Trusted Advisor Priority</p>
|
|
307
|
+
*/
|
|
308
|
+
lifecycleStage?: RecommendationLifecycleStage;
|
|
309
|
+
/**
|
|
310
|
+
* @public
|
|
311
|
+
* <p>The Pillars that the Recommendation is optimizing</p>
|
|
312
|
+
*/
|
|
313
|
+
pillars: RecommendationPillar[] | undefined;
|
|
314
|
+
/**
|
|
315
|
+
* @public
|
|
316
|
+
* <p>The source of the Recommendation</p>
|
|
317
|
+
*/
|
|
318
|
+
source: RecommendationSource | undefined;
|
|
319
|
+
/**
|
|
320
|
+
* @public
|
|
321
|
+
* <p>The AWS Services that the Recommendation applies to</p>
|
|
322
|
+
*/
|
|
323
|
+
awsServices?: string[];
|
|
324
|
+
/**
|
|
325
|
+
* @public
|
|
326
|
+
* <p>The name of the AWS Trusted Advisor Recommendation</p>
|
|
327
|
+
*/
|
|
328
|
+
name: string | undefined;
|
|
329
|
+
/**
|
|
330
|
+
* @public
|
|
331
|
+
* <p>An aggregation of all resources</p>
|
|
332
|
+
*/
|
|
333
|
+
resourcesAggregates: RecommendationResourcesAggregates | undefined;
|
|
334
|
+
/**
|
|
335
|
+
* @public
|
|
336
|
+
* <p>The pillar aggregations for cost savings</p>
|
|
337
|
+
*/
|
|
338
|
+
pillarSpecificAggregates?: RecommendationPillarSpecificAggregates;
|
|
339
|
+
/**
|
|
340
|
+
* @public
|
|
341
|
+
* <p>When the Recommendation was created, if created by AWS Trusted Advisor Priority</p>
|
|
342
|
+
*/
|
|
343
|
+
createdAt?: Date;
|
|
344
|
+
/**
|
|
345
|
+
* @public
|
|
346
|
+
* <p>When the Recommendation was last updated</p>
|
|
347
|
+
*/
|
|
348
|
+
lastUpdatedAt?: Date;
|
|
349
|
+
/**
|
|
350
|
+
* @public
|
|
351
|
+
* <p>The ARN of the Recommendation</p>
|
|
352
|
+
*/
|
|
353
|
+
arn: string | undefined;
|
|
354
|
+
/**
|
|
355
|
+
* @public
|
|
356
|
+
* <p>A description for AWS Trusted Advisor recommendations</p>
|
|
357
|
+
*/
|
|
358
|
+
description: string | undefined;
|
|
359
|
+
/**
|
|
360
|
+
* @public
|
|
361
|
+
* <p>The creator, if created by AWS Trusted Advisor Priority</p>
|
|
362
|
+
*/
|
|
363
|
+
createdBy?: string;
|
|
364
|
+
/**
|
|
365
|
+
* @public
|
|
366
|
+
* <p>The person on whose behalf a Technical Account Manager (TAM) updated the recommendation. This information
|
|
367
|
+
* is only available when a Technical Account Manager takes an action on a recommendation managed by AWS
|
|
368
|
+
* Trusted Advisor Priority
|
|
369
|
+
* </p>
|
|
370
|
+
*/
|
|
371
|
+
updatedOnBehalfOf?: string;
|
|
372
|
+
/**
|
|
373
|
+
* @public
|
|
374
|
+
* <p>The job title of the person on whose behalf a Technical Account Manager (TAM) updated the recommendation.
|
|
375
|
+
* This information is only available when a Technical Account Manager takes an action on a recommendation
|
|
376
|
+
* managed by AWS Trusted Advisor Priority
|
|
377
|
+
* </p>
|
|
378
|
+
*/
|
|
379
|
+
updatedOnBehalfOfJobTitle?: string;
|
|
380
|
+
/**
|
|
381
|
+
* @public
|
|
382
|
+
* <p>Reason for the lifecycle stage change</p>
|
|
383
|
+
*/
|
|
384
|
+
updateReason?: string;
|
|
385
|
+
/**
|
|
386
|
+
* @public
|
|
387
|
+
* <p>Reason code for the lifecycle state change</p>
|
|
388
|
+
*/
|
|
389
|
+
updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode;
|
|
390
|
+
/**
|
|
391
|
+
* @public
|
|
392
|
+
* <p>When the Recommendation was resolved</p>
|
|
393
|
+
*/
|
|
394
|
+
resolvedAt?: Date;
|
|
395
|
+
}
|
|
396
|
+
/**
|
|
397
|
+
* @public
|
|
398
|
+
*/
|
|
399
|
+
export interface GetOrganizationRecommendationResponse {
|
|
400
|
+
/**
|
|
401
|
+
* @public
|
|
402
|
+
* <p>The Recommendation</p>
|
|
403
|
+
*/
|
|
404
|
+
organizationRecommendation?: OrganizationRecommendation;
|
|
405
|
+
}
|
|
406
|
+
/**
|
|
407
|
+
* @public
|
|
408
|
+
* <p>Exception to notify that an unexpected internal error occurred during processing of the request</p>
|
|
409
|
+
*/
|
|
410
|
+
export declare class InternalServerException extends __BaseException {
|
|
411
|
+
readonly name: "InternalServerException";
|
|
412
|
+
readonly $fault: "server";
|
|
413
|
+
$retryable: {};
|
|
414
|
+
/**
|
|
415
|
+
* @internal
|
|
416
|
+
*/
|
|
417
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
418
|
+
}
|
|
419
|
+
/**
|
|
420
|
+
* @public
|
|
421
|
+
* <p>Exception that the requested resource has not been found</p>
|
|
422
|
+
*/
|
|
423
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
424
|
+
readonly name: "ResourceNotFoundException";
|
|
425
|
+
readonly $fault: "client";
|
|
426
|
+
/**
|
|
427
|
+
* @internal
|
|
428
|
+
*/
|
|
429
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
430
|
+
}
|
|
431
|
+
/**
|
|
432
|
+
* @public
|
|
433
|
+
* <p>Exception to notify that requests are being throttled</p>
|
|
434
|
+
*/
|
|
435
|
+
export declare class ThrottlingException extends __BaseException {
|
|
436
|
+
readonly name: "ThrottlingException";
|
|
437
|
+
readonly $fault: "client";
|
|
438
|
+
$retryable: {
|
|
439
|
+
throttling: boolean;
|
|
440
|
+
};
|
|
441
|
+
/**
|
|
442
|
+
* @internal
|
|
443
|
+
*/
|
|
444
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
445
|
+
}
|
|
446
|
+
/**
|
|
447
|
+
* @public
|
|
448
|
+
* <p>Exception that the request failed to satisfy service constraints</p>
|
|
449
|
+
*/
|
|
450
|
+
export declare class ValidationException extends __BaseException {
|
|
451
|
+
readonly name: "ValidationException";
|
|
452
|
+
readonly $fault: "client";
|
|
453
|
+
/**
|
|
454
|
+
* @internal
|
|
455
|
+
*/
|
|
456
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
457
|
+
}
|
|
458
|
+
/**
|
|
459
|
+
* @public
|
|
460
|
+
*/
|
|
461
|
+
export interface GetRecommendationRequest {
|
|
462
|
+
/**
|
|
463
|
+
* @public
|
|
464
|
+
* <p>The Recommendation identifier</p>
|
|
465
|
+
*/
|
|
466
|
+
recommendationIdentifier: string | undefined;
|
|
467
|
+
}
|
|
468
|
+
/**
|
|
469
|
+
* @public
|
|
470
|
+
* <p>A Recommendation for an Account</p>
|
|
471
|
+
*/
|
|
472
|
+
export interface Recommendation {
|
|
473
|
+
/**
|
|
474
|
+
* @public
|
|
475
|
+
* <p>The ID which identifies where the Recommendation was produced</p>
|
|
476
|
+
*/
|
|
477
|
+
id: string | undefined;
|
|
478
|
+
/**
|
|
479
|
+
* @public
|
|
480
|
+
* <p>Whether the Recommendation was automated or generated by AWS Trusted Advisor Priority</p>
|
|
481
|
+
*/
|
|
482
|
+
type: RecommendationType | undefined;
|
|
483
|
+
/**
|
|
484
|
+
* @public
|
|
485
|
+
* <p>The AWS Trusted Advisor Check ARN that relates to the Recommendation</p>
|
|
486
|
+
*/
|
|
487
|
+
checkArn?: string;
|
|
488
|
+
/**
|
|
489
|
+
* @public
|
|
490
|
+
* <p>The status of the Recommendation</p>
|
|
491
|
+
*/
|
|
492
|
+
status: RecommendationStatus | undefined;
|
|
493
|
+
/**
|
|
494
|
+
* @public
|
|
495
|
+
* <p>The lifecycle stage from AWS Trusted Advisor Priority</p>
|
|
496
|
+
*/
|
|
497
|
+
lifecycleStage?: RecommendationLifecycleStage;
|
|
498
|
+
/**
|
|
499
|
+
* @public
|
|
500
|
+
* <p>The Pillars that the Recommendation is optimizing</p>
|
|
501
|
+
*/
|
|
502
|
+
pillars: RecommendationPillar[] | undefined;
|
|
503
|
+
/**
|
|
504
|
+
* @public
|
|
505
|
+
* <p>The source of the Recommendation</p>
|
|
506
|
+
*/
|
|
507
|
+
source: RecommendationSource | undefined;
|
|
508
|
+
/**
|
|
509
|
+
* @public
|
|
510
|
+
* <p>The AWS Services that the Recommendation applies to</p>
|
|
511
|
+
*/
|
|
512
|
+
awsServices?: string[];
|
|
513
|
+
/**
|
|
514
|
+
* @public
|
|
515
|
+
* <p>The name of the AWS Trusted Advisor Recommendation</p>
|
|
516
|
+
*/
|
|
517
|
+
name: string | undefined;
|
|
518
|
+
/**
|
|
519
|
+
* @public
|
|
520
|
+
* <p>An aggregation of all resources</p>
|
|
521
|
+
*/
|
|
522
|
+
resourcesAggregates: RecommendationResourcesAggregates | undefined;
|
|
523
|
+
/**
|
|
524
|
+
* @public
|
|
525
|
+
* <p>The pillar aggregations for cost savings</p>
|
|
526
|
+
*/
|
|
527
|
+
pillarSpecificAggregates?: RecommendationPillarSpecificAggregates;
|
|
528
|
+
/**
|
|
529
|
+
* @public
|
|
530
|
+
* <p>When the Recommendation was created, if created by AWS Trusted Advisor Priority</p>
|
|
531
|
+
*/
|
|
532
|
+
createdAt?: Date;
|
|
533
|
+
/**
|
|
534
|
+
* @public
|
|
535
|
+
* <p>When the Recommendation was last updated</p>
|
|
536
|
+
*/
|
|
537
|
+
lastUpdatedAt?: Date;
|
|
538
|
+
/**
|
|
539
|
+
* @public
|
|
540
|
+
* <p>The ARN of the Recommendation</p>
|
|
541
|
+
*/
|
|
542
|
+
arn: string | undefined;
|
|
543
|
+
/**
|
|
544
|
+
* @public
|
|
545
|
+
* <p>A description for AWS Trusted Advisor recommendations</p>
|
|
546
|
+
*/
|
|
547
|
+
description: string | undefined;
|
|
548
|
+
/**
|
|
549
|
+
* @public
|
|
550
|
+
* <p>The creator, if created by AWS Trusted Advisor Priority</p>
|
|
551
|
+
*/
|
|
552
|
+
createdBy?: string;
|
|
553
|
+
/**
|
|
554
|
+
* @public
|
|
555
|
+
* <p>The person on whose behalf a Technical Account Manager (TAM) updated the recommendation. This information
|
|
556
|
+
* is only available when a Technical Account Manager takes an action on a recommendation managed by AWS
|
|
557
|
+
* Trusted Advisor Priority
|
|
558
|
+
* </p>
|
|
559
|
+
*/
|
|
560
|
+
updatedOnBehalfOf?: string;
|
|
561
|
+
/**
|
|
562
|
+
* @public
|
|
563
|
+
* <p>The job title of the person on whose behalf a Technical Account Manager (TAM) updated the recommendation.
|
|
564
|
+
* This information is only available when a Technical Account Manager takes an action on a recommendation
|
|
565
|
+
* managed by AWS Trusted Advisor Priority
|
|
566
|
+
* </p>
|
|
567
|
+
*/
|
|
568
|
+
updatedOnBehalfOfJobTitle?: string;
|
|
569
|
+
/**
|
|
570
|
+
* @public
|
|
571
|
+
* <p>Reason for the lifecycle stage change</p>
|
|
572
|
+
*/
|
|
573
|
+
updateReason?: string;
|
|
574
|
+
/**
|
|
575
|
+
* @public
|
|
576
|
+
* <p>Reason code for the lifecycle state change</p>
|
|
577
|
+
*/
|
|
578
|
+
updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode;
|
|
579
|
+
/**
|
|
580
|
+
* @public
|
|
581
|
+
* <p>When the Recommendation was resolved</p>
|
|
582
|
+
*/
|
|
583
|
+
resolvedAt?: Date;
|
|
584
|
+
}
|
|
585
|
+
/**
|
|
586
|
+
* @public
|
|
587
|
+
*/
|
|
588
|
+
export interface GetRecommendationResponse {
|
|
589
|
+
/**
|
|
590
|
+
* @public
|
|
591
|
+
* <p>The Recommendation</p>
|
|
592
|
+
*/
|
|
593
|
+
recommendation?: Recommendation;
|
|
594
|
+
}
|
|
595
|
+
/**
|
|
596
|
+
* @public
|
|
597
|
+
* @enum
|
|
598
|
+
*/
|
|
599
|
+
export declare const RecommendationLanguage: {
|
|
600
|
+
readonly BAHASA_INDONESIA: "id";
|
|
601
|
+
readonly BRAZILIAN_PORTUGUESE: "pt_BR";
|
|
602
|
+
readonly CHINESE: "zh";
|
|
603
|
+
readonly ENGLISH: "en";
|
|
604
|
+
readonly FRENCH: "fr";
|
|
605
|
+
readonly GERMAN: "de";
|
|
606
|
+
readonly ITALIAN: "it";
|
|
607
|
+
readonly JAPANESE: "ja";
|
|
608
|
+
readonly KOREAN: "ko";
|
|
609
|
+
readonly SPANISH: "es";
|
|
610
|
+
readonly TRADITIONAL_CHINESE: "zh_TW";
|
|
611
|
+
};
|
|
612
|
+
/**
|
|
613
|
+
* @public
|
|
614
|
+
*/
|
|
615
|
+
export type RecommendationLanguage = (typeof RecommendationLanguage)[keyof typeof RecommendationLanguage];
|
|
616
|
+
/**
|
|
617
|
+
* @public
|
|
618
|
+
*/
|
|
619
|
+
export interface ListChecksRequest {
|
|
620
|
+
/**
|
|
621
|
+
* @public
|
|
622
|
+
* <p>The token for the next set of results. Use the value returned in the previous response in the next request
|
|
623
|
+
* to retrieve the next set of results.
|
|
624
|
+
* </p>
|
|
625
|
+
*/
|
|
626
|
+
nextToken?: string;
|
|
627
|
+
/**
|
|
628
|
+
* @public
|
|
629
|
+
* <p>The maximum number of results to return per page.</p>
|
|
630
|
+
*/
|
|
631
|
+
maxResults?: number;
|
|
632
|
+
/**
|
|
633
|
+
* @public
|
|
634
|
+
* <p>The pillar of the check</p>
|
|
635
|
+
*/
|
|
636
|
+
pillar?: RecommendationPillar;
|
|
637
|
+
/**
|
|
638
|
+
* @public
|
|
639
|
+
* <p>The aws service associated with the check</p>
|
|
640
|
+
*/
|
|
641
|
+
awsService?: string;
|
|
642
|
+
/**
|
|
643
|
+
* @public
|
|
644
|
+
* <p>The source of the check</p>
|
|
645
|
+
*/
|
|
646
|
+
source?: RecommendationSource;
|
|
647
|
+
/**
|
|
648
|
+
* @public
|
|
649
|
+
* <p>The ISO 639-1 code for the language that you want your checks to appear in.</p>
|
|
650
|
+
*/
|
|
651
|
+
language?: RecommendationLanguage;
|
|
652
|
+
}
|
|
653
|
+
/**
|
|
654
|
+
* @public
|
|
655
|
+
*/
|
|
656
|
+
export interface ListChecksResponse {
|
|
657
|
+
/**
|
|
658
|
+
* @public
|
|
659
|
+
* <p>The token for the next set of results. Use the value returned in the previous response in the next request
|
|
660
|
+
* to retrieve the next set of results.
|
|
661
|
+
* </p>
|
|
662
|
+
*/
|
|
663
|
+
nextToken?: string;
|
|
664
|
+
/**
|
|
665
|
+
* @public
|
|
666
|
+
* <p>The list of Checks</p>
|
|
667
|
+
*/
|
|
668
|
+
checkSummaries: CheckSummary[] | undefined;
|
|
669
|
+
}
|
|
670
|
+
/**
|
|
671
|
+
* @public
|
|
672
|
+
*/
|
|
673
|
+
export interface ListOrganizationRecommendationAccountsRequest {
|
|
674
|
+
/**
|
|
675
|
+
* @public
|
|
676
|
+
* <p>The token for the next set of results. Use the value returned in the previous response in the next request
|
|
677
|
+
* to retrieve the next set of results.
|
|
678
|
+
* </p>
|
|
679
|
+
*/
|
|
680
|
+
nextToken?: string;
|
|
681
|
+
/**
|
|
682
|
+
* @public
|
|
683
|
+
* <p>The maximum number of results to return per page.</p>
|
|
684
|
+
*/
|
|
685
|
+
maxResults?: number;
|
|
686
|
+
/**
|
|
687
|
+
* @public
|
|
688
|
+
* <p>The Recommendation identifier</p>
|
|
689
|
+
*/
|
|
690
|
+
organizationRecommendationIdentifier: string | undefined;
|
|
691
|
+
/**
|
|
692
|
+
* @public
|
|
693
|
+
* <p>An account affected by this organization recommendation</p>
|
|
694
|
+
*/
|
|
695
|
+
affectedAccountId?: string;
|
|
696
|
+
}
|
|
697
|
+
/**
|
|
698
|
+
* @public
|
|
699
|
+
*/
|
|
700
|
+
export interface ListOrganizationRecommendationAccountsResponse {
|
|
701
|
+
/**
|
|
702
|
+
* @public
|
|
703
|
+
* <p>The token for the next set of results. Use the value returned in the previous response in the next request
|
|
704
|
+
* to retrieve the next set of results.
|
|
705
|
+
* </p>
|
|
706
|
+
*/
|
|
707
|
+
nextToken?: string;
|
|
708
|
+
/**
|
|
709
|
+
* @public
|
|
710
|
+
* <p>The account recommendations lifecycles that are applicable to the Recommendation</p>
|
|
711
|
+
*/
|
|
712
|
+
accountRecommendationLifecycleSummaries: AccountRecommendationLifecycleSummary[] | undefined;
|
|
713
|
+
}
|
|
714
|
+
/**
|
|
715
|
+
* @public
|
|
716
|
+
* @enum
|
|
717
|
+
*/
|
|
718
|
+
export declare const ResourceStatus: {
|
|
719
|
+
readonly ERROR: "error";
|
|
720
|
+
readonly OK: "ok";
|
|
721
|
+
readonly WARNING: "warning";
|
|
722
|
+
};
|
|
723
|
+
/**
|
|
724
|
+
* @public
|
|
725
|
+
*/
|
|
726
|
+
export type ResourceStatus = (typeof ResourceStatus)[keyof typeof ResourceStatus];
|
|
727
|
+
/**
|
|
728
|
+
* @public
|
|
729
|
+
*/
|
|
730
|
+
export interface ListOrganizationRecommendationResourcesRequest {
|
|
731
|
+
/**
|
|
732
|
+
* @public
|
|
733
|
+
* <p>The token for the next set of results. Use the value returned in the previous response in the next request
|
|
734
|
+
* to retrieve the next set of results.
|
|
735
|
+
* </p>
|
|
736
|
+
*/
|
|
737
|
+
nextToken?: string;
|
|
738
|
+
/**
|
|
739
|
+
* @public
|
|
740
|
+
* <p>The maximum number of results to return per page.</p>
|
|
741
|
+
*/
|
|
742
|
+
maxResults?: number;
|
|
743
|
+
/**
|
|
744
|
+
* @public
|
|
745
|
+
* <p>The status of the resource</p>
|
|
746
|
+
*/
|
|
747
|
+
status?: ResourceStatus;
|
|
748
|
+
/**
|
|
749
|
+
* @public
|
|
750
|
+
* <p>The AWS Region code of the resource</p>
|
|
751
|
+
*/
|
|
752
|
+
regionCode?: string;
|
|
753
|
+
/**
|
|
754
|
+
* @public
|
|
755
|
+
* <p>The AWS Organization organization's Recommendation identifier</p>
|
|
756
|
+
*/
|
|
757
|
+
organizationRecommendationIdentifier: string | undefined;
|
|
758
|
+
/**
|
|
759
|
+
* @public
|
|
760
|
+
* <p>An account affected by this organization recommendation</p>
|
|
761
|
+
*/
|
|
762
|
+
affectedAccountId?: string;
|
|
763
|
+
}
|
|
764
|
+
/**
|
|
765
|
+
* @public
|
|
766
|
+
* <p>Organization Recommendation Resource Summary</p>
|
|
767
|
+
*/
|
|
768
|
+
export interface OrganizationRecommendationResourceSummary {
|
|
769
|
+
/**
|
|
770
|
+
* @public
|
|
771
|
+
* <p>The ID of the Recommendation Resource</p>
|
|
772
|
+
*/
|
|
773
|
+
id: string | undefined;
|
|
774
|
+
/**
|
|
775
|
+
* @public
|
|
776
|
+
* <p>The ARN of the Recommendation Resource</p>
|
|
777
|
+
*/
|
|
778
|
+
arn: string | undefined;
|
|
779
|
+
/**
|
|
780
|
+
* @public
|
|
781
|
+
* <p>The AWS resource identifier</p>
|
|
782
|
+
*/
|
|
783
|
+
awsResourceId: string | undefined;
|
|
784
|
+
/**
|
|
785
|
+
* @public
|
|
786
|
+
* <p>The AWS Region code that the Recommendation Resource is in</p>
|
|
787
|
+
*/
|
|
788
|
+
regionCode: string | undefined;
|
|
789
|
+
/**
|
|
790
|
+
* @public
|
|
791
|
+
* <p>The current status of the Recommendation Resource</p>
|
|
792
|
+
*/
|
|
793
|
+
status: ResourceStatus | undefined;
|
|
794
|
+
/**
|
|
795
|
+
* @public
|
|
796
|
+
* <p>Metadata associated with the Recommendation Resource</p>
|
|
797
|
+
*/
|
|
798
|
+
metadata: Record<string, string> | undefined;
|
|
799
|
+
/**
|
|
800
|
+
* @public
|
|
801
|
+
* <p>When the Recommendation Resource was last updated</p>
|
|
802
|
+
*/
|
|
803
|
+
lastUpdatedAt: Date | undefined;
|
|
804
|
+
/**
|
|
805
|
+
* @public
|
|
806
|
+
* <p>The AWS account ID</p>
|
|
807
|
+
*/
|
|
808
|
+
accountId?: string;
|
|
809
|
+
/**
|
|
810
|
+
* @public
|
|
811
|
+
* <p>The Recommendation ARN</p>
|
|
812
|
+
*/
|
|
813
|
+
recommendationArn: string | undefined;
|
|
814
|
+
}
|
|
815
|
+
/**
|
|
816
|
+
* @public
|
|
817
|
+
*/
|
|
818
|
+
export interface ListOrganizationRecommendationResourcesResponse {
|
|
819
|
+
/**
|
|
820
|
+
* @public
|
|
821
|
+
* <p>The token for the next set of results. Use the value returned in the previous response in the next request
|
|
822
|
+
* to retrieve the next set of results.
|
|
823
|
+
* </p>
|
|
824
|
+
*/
|
|
825
|
+
nextToken?: string;
|
|
826
|
+
/**
|
|
827
|
+
* @public
|
|
828
|
+
* <p>A list of Recommendation Resources</p>
|
|
829
|
+
*/
|
|
830
|
+
organizationRecommendationResourceSummaries: OrganizationRecommendationResourceSummary[] | undefined;
|
|
831
|
+
}
|
|
832
|
+
/**
|
|
833
|
+
* @public
|
|
834
|
+
*/
|
|
835
|
+
export interface ListOrganizationRecommendationsRequest {
|
|
836
|
+
/**
|
|
837
|
+
* @public
|
|
838
|
+
* <p>The token for the next set of results. Use the value returned in the previous response in the next request
|
|
839
|
+
* to retrieve the next set of results.
|
|
840
|
+
* </p>
|
|
841
|
+
*/
|
|
842
|
+
nextToken?: string;
|
|
843
|
+
/**
|
|
844
|
+
* @public
|
|
845
|
+
* <p>The maximum number of results to return per page.</p>
|
|
846
|
+
*/
|
|
847
|
+
maxResults?: number;
|
|
848
|
+
/**
|
|
849
|
+
* @public
|
|
850
|
+
* <p>The type of the Recommendation</p>
|
|
851
|
+
*/
|
|
852
|
+
type?: RecommendationType;
|
|
853
|
+
/**
|
|
854
|
+
* @public
|
|
855
|
+
* <p>The status of the Recommendation</p>
|
|
856
|
+
*/
|
|
857
|
+
status?: RecommendationStatus;
|
|
858
|
+
/**
|
|
859
|
+
* @public
|
|
860
|
+
* <p>The pillar of the Recommendation</p>
|
|
861
|
+
*/
|
|
862
|
+
pillar?: RecommendationPillar;
|
|
863
|
+
/**
|
|
864
|
+
* @public
|
|
865
|
+
* <p>The aws service associated with the Recommendation</p>
|
|
866
|
+
*/
|
|
867
|
+
awsService?: string;
|
|
868
|
+
/**
|
|
869
|
+
* @public
|
|
870
|
+
* <p>The source of the Recommendation</p>
|
|
871
|
+
*/
|
|
872
|
+
source?: RecommendationSource;
|
|
873
|
+
/**
|
|
874
|
+
* @public
|
|
875
|
+
* <p>The check identifier of the Recommendation</p>
|
|
876
|
+
*/
|
|
877
|
+
checkIdentifier?: string;
|
|
878
|
+
/**
|
|
879
|
+
* @public
|
|
880
|
+
* <p>After the last update of the Recommendation</p>
|
|
881
|
+
*/
|
|
882
|
+
afterLastUpdatedAt?: Date;
|
|
883
|
+
/**
|
|
884
|
+
* @public
|
|
885
|
+
* <p>Before the last update of the Recommendation</p>
|
|
886
|
+
*/
|
|
887
|
+
beforeLastUpdatedAt?: Date;
|
|
888
|
+
}
|
|
889
|
+
/**
|
|
890
|
+
* @public
|
|
891
|
+
* <p>Summary of recommendation for accounts within an Organization</p>
|
|
892
|
+
*/
|
|
893
|
+
export interface OrganizationRecommendationSummary {
|
|
894
|
+
/**
|
|
895
|
+
* @public
|
|
896
|
+
* <p>The ID which identifies where the Recommendation was produced</p>
|
|
897
|
+
*/
|
|
898
|
+
id: string | undefined;
|
|
899
|
+
/**
|
|
900
|
+
* @public
|
|
901
|
+
* <p>Whether the Recommendation was automated or generated by AWS Trusted Advisor Priority</p>
|
|
902
|
+
*/
|
|
903
|
+
type: RecommendationType | undefined;
|
|
904
|
+
/**
|
|
905
|
+
* @public
|
|
906
|
+
* <p>The AWS Trusted Advisor Check ARN that relates to the Recommendation</p>
|
|
907
|
+
*/
|
|
908
|
+
checkArn?: string;
|
|
909
|
+
/**
|
|
910
|
+
* @public
|
|
911
|
+
* <p>The status of the Recommendation</p>
|
|
912
|
+
*/
|
|
913
|
+
status: RecommendationStatus | undefined;
|
|
914
|
+
/**
|
|
915
|
+
* @public
|
|
916
|
+
* <p>The lifecycle stage from AWS Trusted Advisor Priority</p>
|
|
917
|
+
*/
|
|
918
|
+
lifecycleStage?: RecommendationLifecycleStage;
|
|
919
|
+
/**
|
|
920
|
+
* @public
|
|
921
|
+
* <p>The Pillars that the Recommendation is optimizing</p>
|
|
922
|
+
*/
|
|
923
|
+
pillars: RecommendationPillar[] | undefined;
|
|
924
|
+
/**
|
|
925
|
+
* @public
|
|
926
|
+
* <p>The source of the Recommendation</p>
|
|
927
|
+
*/
|
|
928
|
+
source: RecommendationSource | undefined;
|
|
929
|
+
/**
|
|
930
|
+
* @public
|
|
931
|
+
* <p>The AWS Services that the Recommendation applies to</p>
|
|
932
|
+
*/
|
|
933
|
+
awsServices?: string[];
|
|
934
|
+
/**
|
|
935
|
+
* @public
|
|
936
|
+
* <p>The name of the AWS Trusted Advisor Recommendation</p>
|
|
937
|
+
*/
|
|
938
|
+
name: string | undefined;
|
|
939
|
+
/**
|
|
940
|
+
* @public
|
|
941
|
+
* <p>An aggregation of all resources</p>
|
|
942
|
+
*/
|
|
943
|
+
resourcesAggregates: RecommendationResourcesAggregates | undefined;
|
|
944
|
+
/**
|
|
945
|
+
* @public
|
|
946
|
+
* <p>The pillar aggregations for cost savings</p>
|
|
947
|
+
*/
|
|
948
|
+
pillarSpecificAggregates?: RecommendationPillarSpecificAggregates;
|
|
949
|
+
/**
|
|
950
|
+
* @public
|
|
951
|
+
* <p>When the Recommendation was created, if created by AWS Trusted Advisor Priority</p>
|
|
952
|
+
*/
|
|
953
|
+
createdAt?: Date;
|
|
954
|
+
/**
|
|
955
|
+
* @public
|
|
956
|
+
* <p>When the Recommendation was last updated</p>
|
|
957
|
+
*/
|
|
958
|
+
lastUpdatedAt?: Date;
|
|
959
|
+
/**
|
|
960
|
+
* @public
|
|
961
|
+
* <p>The ARN of the Recommendation</p>
|
|
962
|
+
*/
|
|
963
|
+
arn: string | undefined;
|
|
964
|
+
}
|
|
965
|
+
/**
|
|
966
|
+
* @public
|
|
967
|
+
*/
|
|
968
|
+
export interface ListOrganizationRecommendationsResponse {
|
|
969
|
+
/**
|
|
970
|
+
* @public
|
|
971
|
+
* <p>The token for the next set of results. Use the value returned in the previous response in the next request
|
|
972
|
+
* to retrieve the next set of results.
|
|
973
|
+
* </p>
|
|
974
|
+
*/
|
|
975
|
+
nextToken?: string;
|
|
976
|
+
/**
|
|
977
|
+
* @public
|
|
978
|
+
* <p>The list of Recommendations</p>
|
|
979
|
+
*/
|
|
980
|
+
organizationRecommendationSummaries: OrganizationRecommendationSummary[] | undefined;
|
|
981
|
+
}
|
|
982
|
+
/**
|
|
983
|
+
* @public
|
|
984
|
+
*/
|
|
985
|
+
export interface ListRecommendationResourcesRequest {
|
|
986
|
+
/**
|
|
987
|
+
* @public
|
|
988
|
+
* <p>The token for the next set of results. Use the value returned in the previous response in the next request
|
|
989
|
+
* to retrieve the next set of results.
|
|
990
|
+
* </p>
|
|
991
|
+
*/
|
|
992
|
+
nextToken?: string;
|
|
993
|
+
/**
|
|
994
|
+
* @public
|
|
995
|
+
* <p>The maximum number of results to return per page.</p>
|
|
996
|
+
*/
|
|
997
|
+
maxResults?: number;
|
|
998
|
+
/**
|
|
999
|
+
* @public
|
|
1000
|
+
* <p>The status of the resource</p>
|
|
1001
|
+
*/
|
|
1002
|
+
status?: ResourceStatus;
|
|
1003
|
+
/**
|
|
1004
|
+
* @public
|
|
1005
|
+
* <p>The AWS Region code of the resource</p>
|
|
1006
|
+
*/
|
|
1007
|
+
regionCode?: string;
|
|
1008
|
+
/**
|
|
1009
|
+
* @public
|
|
1010
|
+
* <p>The Recommendation identifier</p>
|
|
1011
|
+
*/
|
|
1012
|
+
recommendationIdentifier: string | undefined;
|
|
1013
|
+
}
|
|
1014
|
+
/**
|
|
1015
|
+
* @public
|
|
1016
|
+
* <p>Summary of a Recommendation Resource</p>
|
|
1017
|
+
*/
|
|
1018
|
+
export interface RecommendationResourceSummary {
|
|
1019
|
+
/**
|
|
1020
|
+
* @public
|
|
1021
|
+
* <p>The ID of the Recommendation Resource</p>
|
|
1022
|
+
*/
|
|
1023
|
+
id: string | undefined;
|
|
1024
|
+
/**
|
|
1025
|
+
* @public
|
|
1026
|
+
* <p>The ARN of the Recommendation Resource</p>
|
|
1027
|
+
*/
|
|
1028
|
+
arn: string | undefined;
|
|
1029
|
+
/**
|
|
1030
|
+
* @public
|
|
1031
|
+
* <p>The AWS resource identifier</p>
|
|
1032
|
+
*/
|
|
1033
|
+
awsResourceId: string | undefined;
|
|
1034
|
+
/**
|
|
1035
|
+
* @public
|
|
1036
|
+
* <p>The AWS Region code that the Recommendation Resource is in</p>
|
|
1037
|
+
*/
|
|
1038
|
+
regionCode: string | undefined;
|
|
1039
|
+
/**
|
|
1040
|
+
* @public
|
|
1041
|
+
* <p>The current status of the Recommendation Resource</p>
|
|
1042
|
+
*/
|
|
1043
|
+
status: ResourceStatus | undefined;
|
|
1044
|
+
/**
|
|
1045
|
+
* @public
|
|
1046
|
+
* <p>Metadata associated with the Recommendation Resource</p>
|
|
1047
|
+
*/
|
|
1048
|
+
metadata: Record<string, string> | undefined;
|
|
1049
|
+
/**
|
|
1050
|
+
* @public
|
|
1051
|
+
* <p>When the Recommendation Resource was last updated</p>
|
|
1052
|
+
*/
|
|
1053
|
+
lastUpdatedAt: Date | undefined;
|
|
1054
|
+
/**
|
|
1055
|
+
* @public
|
|
1056
|
+
* <p>The Recommendation ARN</p>
|
|
1057
|
+
*/
|
|
1058
|
+
recommendationArn: string | undefined;
|
|
1059
|
+
}
|
|
1060
|
+
/**
|
|
1061
|
+
* @public
|
|
1062
|
+
*/
|
|
1063
|
+
export interface ListRecommendationResourcesResponse {
|
|
1064
|
+
/**
|
|
1065
|
+
* @public
|
|
1066
|
+
* <p>The token for the next set of results. Use the value returned in the previous response in the next request
|
|
1067
|
+
* to retrieve the next set of results.
|
|
1068
|
+
* </p>
|
|
1069
|
+
*/
|
|
1070
|
+
nextToken?: string;
|
|
1071
|
+
/**
|
|
1072
|
+
* @public
|
|
1073
|
+
* <p>A list of Recommendation Resources</p>
|
|
1074
|
+
*/
|
|
1075
|
+
recommendationResourceSummaries: RecommendationResourceSummary[] | undefined;
|
|
1076
|
+
}
|
|
1077
|
+
/**
|
|
1078
|
+
* @public
|
|
1079
|
+
*/
|
|
1080
|
+
export interface ListRecommendationsRequest {
|
|
1081
|
+
/**
|
|
1082
|
+
* @public
|
|
1083
|
+
* <p>The token for the next set of results. Use the value returned in the previous response in the next request
|
|
1084
|
+
* to retrieve the next set of results.
|
|
1085
|
+
* </p>
|
|
1086
|
+
*/
|
|
1087
|
+
nextToken?: string;
|
|
1088
|
+
/**
|
|
1089
|
+
* @public
|
|
1090
|
+
* <p>The maximum number of results to return per page.</p>
|
|
1091
|
+
*/
|
|
1092
|
+
maxResults?: number;
|
|
1093
|
+
/**
|
|
1094
|
+
* @public
|
|
1095
|
+
* <p>The type of the Recommendation</p>
|
|
1096
|
+
*/
|
|
1097
|
+
type?: RecommendationType;
|
|
1098
|
+
/**
|
|
1099
|
+
* @public
|
|
1100
|
+
* <p>The status of the Recommendation</p>
|
|
1101
|
+
*/
|
|
1102
|
+
status?: RecommendationStatus;
|
|
1103
|
+
/**
|
|
1104
|
+
* @public
|
|
1105
|
+
* <p>The pillar of the Recommendation</p>
|
|
1106
|
+
*/
|
|
1107
|
+
pillar?: RecommendationPillar;
|
|
1108
|
+
/**
|
|
1109
|
+
* @public
|
|
1110
|
+
* <p>The aws service associated with the Recommendation</p>
|
|
1111
|
+
*/
|
|
1112
|
+
awsService?: string;
|
|
1113
|
+
/**
|
|
1114
|
+
* @public
|
|
1115
|
+
* <p>The source of the Recommendation</p>
|
|
1116
|
+
*/
|
|
1117
|
+
source?: RecommendationSource;
|
|
1118
|
+
/**
|
|
1119
|
+
* @public
|
|
1120
|
+
* <p>The check identifier of the Recommendation</p>
|
|
1121
|
+
*/
|
|
1122
|
+
checkIdentifier?: string;
|
|
1123
|
+
/**
|
|
1124
|
+
* @public
|
|
1125
|
+
* <p>After the last update of the Recommendation</p>
|
|
1126
|
+
*/
|
|
1127
|
+
afterLastUpdatedAt?: Date;
|
|
1128
|
+
/**
|
|
1129
|
+
* @public
|
|
1130
|
+
* <p>Before the last update of the Recommendation</p>
|
|
1131
|
+
*/
|
|
1132
|
+
beforeLastUpdatedAt?: Date;
|
|
1133
|
+
}
|
|
1134
|
+
/**
|
|
1135
|
+
* @public
|
|
1136
|
+
* <p>Summary of Recommendation for an Account</p>
|
|
1137
|
+
*/
|
|
1138
|
+
export interface RecommendationSummary {
|
|
1139
|
+
/**
|
|
1140
|
+
* @public
|
|
1141
|
+
* <p>The ID which identifies where the Recommendation was produced</p>
|
|
1142
|
+
*/
|
|
1143
|
+
id: string | undefined;
|
|
1144
|
+
/**
|
|
1145
|
+
* @public
|
|
1146
|
+
* <p>Whether the Recommendation was automated or generated by AWS Trusted Advisor Priority</p>
|
|
1147
|
+
*/
|
|
1148
|
+
type: RecommendationType | undefined;
|
|
1149
|
+
/**
|
|
1150
|
+
* @public
|
|
1151
|
+
* <p>The AWS Trusted Advisor Check ARN that relates to the Recommendation</p>
|
|
1152
|
+
*/
|
|
1153
|
+
checkArn?: string;
|
|
1154
|
+
/**
|
|
1155
|
+
* @public
|
|
1156
|
+
* <p>The status of the Recommendation</p>
|
|
1157
|
+
*/
|
|
1158
|
+
status: RecommendationStatus | undefined;
|
|
1159
|
+
/**
|
|
1160
|
+
* @public
|
|
1161
|
+
* <p>The lifecycle stage from AWS Trusted Advisor Priority</p>
|
|
1162
|
+
*/
|
|
1163
|
+
lifecycleStage?: RecommendationLifecycleStage;
|
|
1164
|
+
/**
|
|
1165
|
+
* @public
|
|
1166
|
+
* <p>The Pillars that the Recommendation is optimizing</p>
|
|
1167
|
+
*/
|
|
1168
|
+
pillars: RecommendationPillar[] | undefined;
|
|
1169
|
+
/**
|
|
1170
|
+
* @public
|
|
1171
|
+
* <p>The source of the Recommendation</p>
|
|
1172
|
+
*/
|
|
1173
|
+
source: RecommendationSource | undefined;
|
|
1174
|
+
/**
|
|
1175
|
+
* @public
|
|
1176
|
+
* <p>The AWS Services that the Recommendation applies to</p>
|
|
1177
|
+
*/
|
|
1178
|
+
awsServices?: string[];
|
|
1179
|
+
/**
|
|
1180
|
+
* @public
|
|
1181
|
+
* <p>The name of the AWS Trusted Advisor Recommendation</p>
|
|
1182
|
+
*/
|
|
1183
|
+
name: string | undefined;
|
|
1184
|
+
/**
|
|
1185
|
+
* @public
|
|
1186
|
+
* <p>An aggregation of all resources</p>
|
|
1187
|
+
*/
|
|
1188
|
+
resourcesAggregates: RecommendationResourcesAggregates | undefined;
|
|
1189
|
+
/**
|
|
1190
|
+
* @public
|
|
1191
|
+
* <p>The pillar aggregations for cost savings</p>
|
|
1192
|
+
*/
|
|
1193
|
+
pillarSpecificAggregates?: RecommendationPillarSpecificAggregates;
|
|
1194
|
+
/**
|
|
1195
|
+
* @public
|
|
1196
|
+
* <p>When the Recommendation was created, if created by AWS Trusted Advisor Priority</p>
|
|
1197
|
+
*/
|
|
1198
|
+
createdAt?: Date;
|
|
1199
|
+
/**
|
|
1200
|
+
* @public
|
|
1201
|
+
* <p>When the Recommendation was last updated</p>
|
|
1202
|
+
*/
|
|
1203
|
+
lastUpdatedAt?: Date;
|
|
1204
|
+
/**
|
|
1205
|
+
* @public
|
|
1206
|
+
* <p>The ARN of the Recommendation</p>
|
|
1207
|
+
*/
|
|
1208
|
+
arn: string | undefined;
|
|
1209
|
+
}
|
|
1210
|
+
/**
|
|
1211
|
+
* @public
|
|
1212
|
+
*/
|
|
1213
|
+
export interface ListRecommendationsResponse {
|
|
1214
|
+
/**
|
|
1215
|
+
* @public
|
|
1216
|
+
* <p>The token for the next set of results. Use the value returned in the previous response in the next request
|
|
1217
|
+
* to retrieve the next set of results.
|
|
1218
|
+
* </p>
|
|
1219
|
+
*/
|
|
1220
|
+
nextToken?: string;
|
|
1221
|
+
/**
|
|
1222
|
+
* @public
|
|
1223
|
+
* <p>The list of Recommendations</p>
|
|
1224
|
+
*/
|
|
1225
|
+
recommendationSummaries: RecommendationSummary[] | undefined;
|
|
1226
|
+
}
|
|
1227
|
+
/**
|
|
1228
|
+
* @public
|
|
1229
|
+
* @enum
|
|
1230
|
+
*/
|
|
1231
|
+
export declare const UpdateRecommendationLifecycleStage: {
|
|
1232
|
+
readonly DISMISSED: "dismissed";
|
|
1233
|
+
readonly IN_PROGRESS: "in_progress";
|
|
1234
|
+
readonly PENDING_RESPONSE: "pending_response";
|
|
1235
|
+
readonly RESOLVED: "resolved";
|
|
1236
|
+
};
|
|
1237
|
+
/**
|
|
1238
|
+
* @public
|
|
1239
|
+
*/
|
|
1240
|
+
export type UpdateRecommendationLifecycleStage = (typeof UpdateRecommendationLifecycleStage)[keyof typeof UpdateRecommendationLifecycleStage];
|
|
1241
|
+
/**
|
|
1242
|
+
* @public
|
|
1243
|
+
*/
|
|
1244
|
+
export interface UpdateOrganizationRecommendationLifecycleRequest {
|
|
1245
|
+
/**
|
|
1246
|
+
* @public
|
|
1247
|
+
* <p>The new lifecycle stage</p>
|
|
1248
|
+
*/
|
|
1249
|
+
lifecycleStage: UpdateRecommendationLifecycleStage | undefined;
|
|
1250
|
+
/**
|
|
1251
|
+
* @public
|
|
1252
|
+
* <p>Reason for the lifecycle stage change</p>
|
|
1253
|
+
*/
|
|
1254
|
+
updateReason?: string;
|
|
1255
|
+
/**
|
|
1256
|
+
* @public
|
|
1257
|
+
* <p>Reason code for the lifecycle state change</p>
|
|
1258
|
+
*/
|
|
1259
|
+
updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode;
|
|
1260
|
+
/**
|
|
1261
|
+
* @public
|
|
1262
|
+
* <p>The Recommendation identifier for AWS Trusted Advisor Priority recommendations</p>
|
|
1263
|
+
*/
|
|
1264
|
+
organizationRecommendationIdentifier: string | undefined;
|
|
1265
|
+
}
|
|
1266
|
+
/**
|
|
1267
|
+
* @public
|
|
1268
|
+
*/
|
|
1269
|
+
export interface UpdateRecommendationLifecycleRequest {
|
|
1270
|
+
/**
|
|
1271
|
+
* @public
|
|
1272
|
+
* <p>The new lifecycle stage</p>
|
|
1273
|
+
*/
|
|
1274
|
+
lifecycleStage: UpdateRecommendationLifecycleStage | undefined;
|
|
1275
|
+
/**
|
|
1276
|
+
* @public
|
|
1277
|
+
* <p>Reason for the lifecycle stage change</p>
|
|
1278
|
+
*/
|
|
1279
|
+
updateReason?: string;
|
|
1280
|
+
/**
|
|
1281
|
+
* @public
|
|
1282
|
+
* <p>Reason code for the lifecycle state change</p>
|
|
1283
|
+
*/
|
|
1284
|
+
updateReasonCode?: UpdateRecommendationLifecycleStageReasonCode;
|
|
1285
|
+
/**
|
|
1286
|
+
* @public
|
|
1287
|
+
* <p>The Recommendation identifier for AWS Trusted Advisor Priority recommendations</p>
|
|
1288
|
+
*/
|
|
1289
|
+
recommendationIdentifier: string | undefined;
|
|
1290
|
+
}
|
|
1291
|
+
/**
|
|
1292
|
+
* @internal
|
|
1293
|
+
*/
|
|
1294
|
+
export declare const AccountRecommendationLifecycleSummaryFilterSensitiveLog: (obj: AccountRecommendationLifecycleSummary) => any;
|
|
1295
|
+
/**
|
|
1296
|
+
* @internal
|
|
1297
|
+
*/
|
|
1298
|
+
export declare const OrganizationRecommendationFilterSensitiveLog: (obj: OrganizationRecommendation) => any;
|
|
1299
|
+
/**
|
|
1300
|
+
* @internal
|
|
1301
|
+
*/
|
|
1302
|
+
export declare const GetOrganizationRecommendationResponseFilterSensitiveLog: (obj: GetOrganizationRecommendationResponse) => any;
|
|
1303
|
+
/**
|
|
1304
|
+
* @internal
|
|
1305
|
+
*/
|
|
1306
|
+
export declare const RecommendationFilterSensitiveLog: (obj: Recommendation) => any;
|
|
1307
|
+
/**
|
|
1308
|
+
* @internal
|
|
1309
|
+
*/
|
|
1310
|
+
export declare const GetRecommendationResponseFilterSensitiveLog: (obj: GetRecommendationResponse) => any;
|
|
1311
|
+
/**
|
|
1312
|
+
* @internal
|
|
1313
|
+
*/
|
|
1314
|
+
export declare const ListOrganizationRecommendationAccountsResponseFilterSensitiveLog: (obj: ListOrganizationRecommendationAccountsResponse) => any;
|
|
1315
|
+
/**
|
|
1316
|
+
* @internal
|
|
1317
|
+
*/
|
|
1318
|
+
export declare const UpdateOrganizationRecommendationLifecycleRequestFilterSensitiveLog: (obj: UpdateOrganizationRecommendationLifecycleRequest) => any;
|
|
1319
|
+
/**
|
|
1320
|
+
* @internal
|
|
1321
|
+
*/
|
|
1322
|
+
export declare const UpdateRecommendationLifecycleRequestFilterSensitiveLog: (obj: UpdateRecommendationLifecycleRequest) => any;
|