aws-sdk 2.1608.0 → 2.1610.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/README.md +1 -1
- package/apis/amplify-2017-07-25.min.json +3 -0
- package/apis/chime-sdk-voice-2022-08-03.min.json +6 -2
- package/apis/connectcases-2022-10-03.min.json +184 -63
- package/apis/fms-2018-01-01.min.json +59 -58
- package/apis/inspector2-2020-06-08.min.json +99 -74
- package/apis/omics-2022-11-28.min.json +36 -22
- package/apis/opensearch-2021-01-01.min.json +93 -92
- package/apis/pinpoint-sms-voice-v2-2022-03-31.min.json +521 -99
- package/apis/pinpoint-sms-voice-v2-2022-03-31.paginators.json +6 -0
- package/apis/qbusiness-2023-11-27.examples.json +2 -3
- package/apis/qbusiness-2023-11-27.min.json +778 -693
- package/apis/qbusiness-2023-11-27.paginators.json +1 -1
- package/apis/qbusiness-2023-11-27.waiters2.json +5 -0
- package/apis/quicksight-2018-04-01.min.json +557 -494
- package/apis/route53resolver-2018-04-01.min.json +58 -52
- package/apis/sagemaker-2017-07-24.min.json +330 -319
- package/apis/signer-2017-08-25.min.json +3 -0
- package/apis/timestream-query-2018-11-01.min.json +71 -23
- package/apis/transcribe-2017-10-26.min.json +101 -76
- package/apis/trustedadvisor-2022-09-15.min.json +107 -46
- package/clients/amplify.d.ts +2 -1
- package/clients/chimesdkvoice.d.ts +9 -9
- package/clients/codeartifact.d.ts +27 -27
- package/clients/connectcases.d.ts +98 -0
- package/clients/fms.d.ts +8 -3
- package/clients/inspector2.d.ts +44 -3
- package/clients/omics.d.ts +89 -53
- package/clients/opensearch.d.ts +8 -3
- package/clients/pinpointsmsvoicev2.d.ts +514 -8
- package/clients/qbusiness.d.ts +818 -700
- package/clients/qbusiness.js +1 -0
- package/clients/quicksight.d.ts +91 -12
- package/clients/route53resolver.d.ts +18 -5
- package/clients/sagemaker.d.ts +12 -1
- package/clients/signer.d.ts +3 -3
- package/clients/timestreamquery.d.ts +54 -0
- package/clients/transcribeservice.d.ts +32 -0
- package/clients/trustedadvisor.d.ts +66 -2
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +106 -99
- package/dist/aws-sdk.js +3 -3
- package/dist/aws-sdk.min.js +2 -2
- package/lib/core.js +1 -1
- package/package.json +1 -1
@@ -11,6 +11,14 @@ declare class TrustedAdvisor extends Service {
|
|
11
11
|
*/
|
12
12
|
constructor(options?: TrustedAdvisor.Types.ClientConfiguration)
|
13
13
|
config: Config & TrustedAdvisor.Types.ClientConfiguration;
|
14
|
+
/**
|
15
|
+
* Update one or more exclusion status for a list of recommendation resources
|
16
|
+
*/
|
17
|
+
batchUpdateRecommendationResourceExclusion(params: TrustedAdvisor.Types.BatchUpdateRecommendationResourceExclusionRequest, callback?: (err: AWSError, data: TrustedAdvisor.Types.BatchUpdateRecommendationResourceExclusionResponse) => void): Request<TrustedAdvisor.Types.BatchUpdateRecommendationResourceExclusionResponse, AWSError>;
|
18
|
+
/**
|
19
|
+
* Update one or more exclusion status for a list of recommendation resources
|
20
|
+
*/
|
21
|
+
batchUpdateRecommendationResourceExclusion(callback?: (err: AWSError, data: TrustedAdvisor.Types.BatchUpdateRecommendationResourceExclusionResponse) => void): Request<TrustedAdvisor.Types.BatchUpdateRecommendationResourceExclusionResponse, AWSError>;
|
14
22
|
/**
|
15
23
|
* Get a specific recommendation within an AWS Organizations organization. This API supports only prioritized recommendations.
|
16
24
|
*/
|
@@ -76,11 +84,11 @@ declare class TrustedAdvisor extends Service {
|
|
76
84
|
*/
|
77
85
|
listRecommendations(callback?: (err: AWSError, data: TrustedAdvisor.Types.ListRecommendationsResponse) => void): Request<TrustedAdvisor.Types.ListRecommendationsResponse, AWSError>;
|
78
86
|
/**
|
79
|
-
* Update the
|
87
|
+
* Update the lifecycle of a Recommendation within an Organization. This API only supports prioritized recommendations.
|
80
88
|
*/
|
81
89
|
updateOrganizationRecommendationLifecycle(params: TrustedAdvisor.Types.UpdateOrganizationRecommendationLifecycleRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
82
90
|
/**
|
83
|
-
* Update the
|
91
|
+
* Update the lifecycle of a Recommendation within an Organization. This API only supports prioritized recommendations.
|
84
92
|
*/
|
85
93
|
updateOrganizationRecommendationLifecycle(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
86
94
|
/**
|
@@ -131,6 +139,19 @@ declare namespace TrustedAdvisor {
|
|
131
139
|
updatedOnBehalfOfJobTitle?: String;
|
132
140
|
}
|
133
141
|
export type AccountRecommendationLifecycleSummaryList = AccountRecommendationLifecycleSummary[];
|
142
|
+
export interface BatchUpdateRecommendationResourceExclusionRequest {
|
143
|
+
/**
|
144
|
+
* A list of recommendation resource ARNs and exclusion status to update
|
145
|
+
*/
|
146
|
+
recommendationResourceExclusions: RecommendationResourceExclusionList;
|
147
|
+
}
|
148
|
+
export interface BatchUpdateRecommendationResourceExclusionResponse {
|
149
|
+
/**
|
150
|
+
* A list of recommendation resource ARNs whose exclusion status failed to update, if any
|
151
|
+
*/
|
152
|
+
batchUpdateRecommendationResourceExclusionErrors: UpdateRecommendationResourceExclusionErrorList;
|
153
|
+
}
|
154
|
+
export type Boolean = boolean;
|
134
155
|
export type CheckArn = string;
|
135
156
|
export type CheckIdentifier = string;
|
136
157
|
export interface CheckSummary {
|
@@ -169,6 +190,7 @@ declare namespace TrustedAdvisor {
|
|
169
190
|
}
|
170
191
|
export type CheckSummaryList = CheckSummary[];
|
171
192
|
export type Double = number;
|
193
|
+
export type ExclusionStatus = "excluded"|"included"|string;
|
172
194
|
export interface GetOrganizationRecommendationRequest {
|
173
195
|
/**
|
174
196
|
* The Recommendation identifier
|
@@ -268,6 +290,10 @@ declare namespace TrustedAdvisor {
|
|
268
290
|
* An account affected by this organization recommendation
|
269
291
|
*/
|
270
292
|
affectedAccountId?: AccountId;
|
293
|
+
/**
|
294
|
+
* The exclusion status of the resource
|
295
|
+
*/
|
296
|
+
exclusionStatus?: ExclusionStatus;
|
271
297
|
/**
|
272
298
|
* The maximum number of results to return per page.
|
273
299
|
*/
|
@@ -358,6 +384,10 @@ declare namespace TrustedAdvisor {
|
|
358
384
|
}
|
359
385
|
export type ListOrganizationRecommendationsResponseNextTokenString = string;
|
360
386
|
export interface ListRecommendationResourcesRequest {
|
387
|
+
/**
|
388
|
+
* The exclusion status of the resource
|
389
|
+
*/
|
390
|
+
exclusionStatus?: ExclusionStatus;
|
361
391
|
/**
|
362
392
|
* The maximum number of results to return per page.
|
363
393
|
*/
|
@@ -549,6 +579,10 @@ declare namespace TrustedAdvisor {
|
|
549
579
|
* The AWS resource identifier
|
550
580
|
*/
|
551
581
|
awsResourceId: String;
|
582
|
+
/**
|
583
|
+
* The exclusion status of the Recommendation Resource
|
584
|
+
*/
|
585
|
+
exclusionStatus?: ExclusionStatus;
|
552
586
|
/**
|
553
587
|
* The ID of the Recommendation Resource
|
554
588
|
*/
|
@@ -744,6 +778,17 @@ declare namespace TrustedAdvisor {
|
|
744
778
|
}
|
745
779
|
export type RecommendationRegionCode = string;
|
746
780
|
export type RecommendationResourceArn = string;
|
781
|
+
export interface RecommendationResourceExclusion {
|
782
|
+
/**
|
783
|
+
* The ARN of the Recommendation Resource
|
784
|
+
*/
|
785
|
+
arn: RecommendationResourceArn;
|
786
|
+
/**
|
787
|
+
* The exclusion status
|
788
|
+
*/
|
789
|
+
isExcluded: Boolean;
|
790
|
+
}
|
791
|
+
export type RecommendationResourceExclusionList = RecommendationResourceExclusion[];
|
747
792
|
export interface RecommendationResourceSummary {
|
748
793
|
/**
|
749
794
|
* The ARN of the Recommendation Resource
|
@@ -753,6 +798,10 @@ declare namespace TrustedAdvisor {
|
|
753
798
|
* The AWS resource identifier
|
754
799
|
*/
|
755
800
|
awsResourceId: String;
|
801
|
+
/**
|
802
|
+
* The exclusion status of the Recommendation Resource
|
803
|
+
*/
|
804
|
+
exclusionStatus?: ExclusionStatus;
|
756
805
|
/**
|
757
806
|
* The ID of the Recommendation Resource
|
758
807
|
*/
|
@@ -899,6 +948,21 @@ declare namespace TrustedAdvisor {
|
|
899
948
|
}
|
900
949
|
export type UpdateRecommendationLifecycleStage = "pending_response"|"in_progress"|"dismissed"|"resolved"|string;
|
901
950
|
export type UpdateRecommendationLifecycleStageReasonCode = "non_critical_account"|"temporary_account"|"valid_business_case"|"other_methods_available"|"low_priority"|"not_applicable"|"other"|string;
|
951
|
+
export interface UpdateRecommendationResourceExclusionError {
|
952
|
+
/**
|
953
|
+
* The ARN of the Recommendation Resource
|
954
|
+
*/
|
955
|
+
arn?: RecommendationResourceArn;
|
956
|
+
/**
|
957
|
+
* The error code
|
958
|
+
*/
|
959
|
+
errorCode?: String;
|
960
|
+
/**
|
961
|
+
* The error message
|
962
|
+
*/
|
963
|
+
errorMessage?: String;
|
964
|
+
}
|
965
|
+
export type UpdateRecommendationResourceExclusionErrorList = UpdateRecommendationResourceExclusionError[];
|
902
966
|
/**
|
903
967
|
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
904
968
|
*/
|