@aws-sdk/client-budgets 3.289.0 → 3.290.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/CreateBudgetActionCommand.d.ts +24 -0
- package/dist-types/commands/CreateBudgetCommand.d.ts +21 -0
- package/dist-types/commands/CreateNotificationCommand.d.ts +24 -0
- package/dist-types/commands/CreateSubscriberCommand.d.ts +24 -0
- package/dist-types/commands/DeleteBudgetActionCommand.d.ts +22 -0
- package/dist-types/commands/DeleteBudgetCommand.d.ts +18 -0
- package/dist-types/commands/DeleteNotificationCommand.d.ts +18 -0
- package/dist-types/commands/DeleteSubscriberCommand.d.ts +18 -0
- package/dist-types/commands/DescribeBudgetActionCommand.d.ts +18 -0
- package/dist-types/commands/DescribeBudgetActionHistoriesCommand.d.ts +21 -0
- package/dist-types/commands/DescribeBudgetActionsForAccountCommand.d.ts +18 -0
- package/dist-types/commands/DescribeBudgetActionsForBudgetCommand.d.ts +21 -0
- package/dist-types/commands/DescribeBudgetCommand.d.ts +18 -0
- package/dist-types/commands/DescribeBudgetNotificationsForAccountCommand.d.ts +24 -0
- package/dist-types/commands/DescribeBudgetPerformanceHistoryCommand.d.ts +24 -0
- package/dist-types/commands/DescribeBudgetsCommand.d.ts +24 -0
- package/dist-types/commands/DescribeNotificationsForBudgetCommand.d.ts +24 -0
- package/dist-types/commands/DescribeSubscribersForNotificationCommand.d.ts +24 -0
- package/dist-types/commands/ExecuteBudgetActionCommand.d.ts +22 -0
- package/dist-types/commands/UpdateBudgetActionCommand.d.ts +22 -0
- package/dist-types/commands/UpdateBudgetCommand.d.ts +18 -0
- package/dist-types/commands/UpdateNotificationCommand.d.ts +21 -0
- package/dist-types/commands/UpdateSubscriberCommand.d.ts +21 -0
- package/package.json +29 -29
|
@@ -31,6 +31,30 @@ export interface CreateBudgetActionCommandOutput extends CreateBudgetActionRespo
|
|
|
31
31
|
* @see {@link CreateBudgetActionCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You are not authorized to use this operation with the given parameters.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link CreationLimitExceededException} (client fault)
|
|
38
|
+
* <p>You've exceeded the notification or subscriber limit.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link DuplicateRecordException} (client fault)
|
|
41
|
+
* <p>The budget name already exists. Budget names must be unique within an account.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
44
|
+
* <p>An error on the server occurred during the processing of your request. Try again later.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
47
|
+
* <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link NotFoundException} (client fault)
|
|
50
|
+
* <p>We can’t locate the resource that you specified.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
53
|
+
* <p>
|
|
54
|
+
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
|
|
55
|
+
* </p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
34
58
|
*/
|
|
35
59
|
export declare class CreateBudgetActionCommand extends $Command<CreateBudgetActionCommandInput, CreateBudgetActionCommandOutput, BudgetsClientResolvedConfig> {
|
|
36
60
|
readonly input: CreateBudgetActionCommandInput;
|
|
@@ -32,6 +32,27 @@ export interface CreateBudgetCommandOutput extends CreateBudgetResponse, __Metad
|
|
|
32
32
|
* @see {@link CreateBudgetCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
36
|
+
* <p>You are not authorized to use this operation with the given parameters.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link CreationLimitExceededException} (client fault)
|
|
39
|
+
* <p>You've exceeded the notification or subscriber limit.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link DuplicateRecordException} (client fault)
|
|
42
|
+
* <p>The budget name already exists. Budget names must be unique within an account.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
45
|
+
* <p>An error on the server occurred during the processing of your request. Try again later.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
48
|
+
* <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>
|
|
52
|
+
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
|
|
53
|
+
* </p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
35
56
|
*/
|
|
36
57
|
export declare class CreateBudgetCommand extends $Command<CreateBudgetCommandInput, CreateBudgetCommandOutput, BudgetsClientResolvedConfig> {
|
|
37
58
|
readonly input: CreateBudgetCommandInput;
|
|
@@ -29,6 +29,30 @@ export interface CreateNotificationCommandOutput extends CreateNotificationRespo
|
|
|
29
29
|
* @see {@link CreateNotificationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You are not authorized to use this operation with the given parameters.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link CreationLimitExceededException} (client fault)
|
|
36
|
+
* <p>You've exceeded the notification or subscriber limit.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link DuplicateRecordException} (client fault)
|
|
39
|
+
* <p>The budget name already exists. Budget names must be unique within an account.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
42
|
+
* <p>An error on the server occurred during the processing of your request. Try again later.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
45
|
+
* <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link NotFoundException} (client fault)
|
|
48
|
+
* <p>We can’t locate the resource that you specified.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>
|
|
52
|
+
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
|
|
53
|
+
* </p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
32
56
|
*/
|
|
33
57
|
export declare class CreateNotificationCommand extends $Command<CreateNotificationCommandInput, CreateNotificationCommandOutput, BudgetsClientResolvedConfig> {
|
|
34
58
|
readonly input: CreateNotificationCommandInput;
|
|
@@ -29,6 +29,30 @@ export interface CreateSubscriberCommandOutput extends CreateSubscriberResponse,
|
|
|
29
29
|
* @see {@link CreateSubscriberCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You are not authorized to use this operation with the given parameters.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link CreationLimitExceededException} (client fault)
|
|
36
|
+
* <p>You've exceeded the notification or subscriber limit.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link DuplicateRecordException} (client fault)
|
|
39
|
+
* <p>The budget name already exists. Budget names must be unique within an account.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
42
|
+
* <p>An error on the server occurred during the processing of your request. Try again later.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
45
|
+
* <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link NotFoundException} (client fault)
|
|
48
|
+
* <p>We can’t locate the resource that you specified.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>
|
|
52
|
+
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
|
|
53
|
+
* </p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
32
56
|
*/
|
|
33
57
|
export declare class CreateSubscriberCommand extends $Command<CreateSubscriberCommandInput, CreateSubscriberCommandOutput, BudgetsClientResolvedConfig> {
|
|
34
58
|
readonly input: CreateSubscriberCommandInput;
|
|
@@ -31,6 +31,28 @@ export interface DeleteBudgetActionCommandOutput extends DeleteBudgetActionRespo
|
|
|
31
31
|
* @see {@link DeleteBudgetActionCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You are not authorized to use this operation with the given parameters.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
38
|
+
* <p>An error on the server occurred during the processing of your request. Try again later.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
41
|
+
* <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link NotFoundException} (client fault)
|
|
44
|
+
* <p>We can’t locate the resource that you specified.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ResourceLockedException} (client fault)
|
|
47
|
+
* <p> The request was received and recognized by the server, but the server rejected that
|
|
48
|
+
* particular method for the requested resource. </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>
|
|
52
|
+
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
|
|
53
|
+
* </p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
34
56
|
*/
|
|
35
57
|
export declare class DeleteBudgetActionCommand extends $Command<DeleteBudgetActionCommandInput, DeleteBudgetActionCommandOutput, BudgetsClientResolvedConfig> {
|
|
36
58
|
readonly input: DeleteBudgetActionCommandInput;
|
|
@@ -32,6 +32,24 @@ export interface DeleteBudgetCommandOutput extends DeleteBudgetResponse, __Metad
|
|
|
32
32
|
* @see {@link DeleteBudgetCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
36
|
+
* <p>You are not authorized to use this operation with the given parameters.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
39
|
+
* <p>An error on the server occurred during the processing of your request. Try again later.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
42
|
+
* <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link NotFoundException} (client fault)
|
|
45
|
+
* <p>We can’t locate the resource that you specified.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* <p>
|
|
49
|
+
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
|
|
50
|
+
* </p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
35
53
|
*/
|
|
36
54
|
export declare class DeleteBudgetCommand extends $Command<DeleteBudgetCommandInput, DeleteBudgetCommandOutput, BudgetsClientResolvedConfig> {
|
|
37
55
|
readonly input: DeleteBudgetCommandInput;
|
|
@@ -32,6 +32,24 @@ export interface DeleteNotificationCommandOutput extends DeleteNotificationRespo
|
|
|
32
32
|
* @see {@link DeleteNotificationCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
36
|
+
* <p>You are not authorized to use this operation with the given parameters.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
39
|
+
* <p>An error on the server occurred during the processing of your request. Try again later.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
42
|
+
* <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link NotFoundException} (client fault)
|
|
45
|
+
* <p>We can’t locate the resource that you specified.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* <p>
|
|
49
|
+
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
|
|
50
|
+
* </p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
35
53
|
*/
|
|
36
54
|
export declare class DeleteNotificationCommand extends $Command<DeleteNotificationCommandInput, DeleteNotificationCommandOutput, BudgetsClientResolvedConfig> {
|
|
37
55
|
readonly input: DeleteNotificationCommandInput;
|
|
@@ -32,6 +32,24 @@ export interface DeleteSubscriberCommandOutput extends DeleteSubscriberResponse,
|
|
|
32
32
|
* @see {@link DeleteSubscriberCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
36
|
+
* <p>You are not authorized to use this operation with the given parameters.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
39
|
+
* <p>An error on the server occurred during the processing of your request. Try again later.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
42
|
+
* <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link NotFoundException} (client fault)
|
|
45
|
+
* <p>We can’t locate the resource that you specified.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* <p>
|
|
49
|
+
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
|
|
50
|
+
* </p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
35
53
|
*/
|
|
36
54
|
export declare class DeleteSubscriberCommand extends $Command<DeleteSubscriberCommandInput, DeleteSubscriberCommandOutput, BudgetsClientResolvedConfig> {
|
|
37
55
|
readonly input: DeleteSubscriberCommandInput;
|
|
@@ -31,6 +31,24 @@ export interface DescribeBudgetActionCommandOutput extends DescribeBudgetActionR
|
|
|
31
31
|
* @see {@link DescribeBudgetActionCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You are not authorized to use this operation with the given parameters.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
38
|
+
* <p>An error on the server occurred during the processing of your request. Try again later.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
41
|
+
* <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link NotFoundException} (client fault)
|
|
44
|
+
* <p>We can’t locate the resource that you specified.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
47
|
+
* <p>
|
|
48
|
+
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
|
|
49
|
+
* </p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
34
52
|
*/
|
|
35
53
|
export declare class DescribeBudgetActionCommand extends $Command<DescribeBudgetActionCommandInput, DescribeBudgetActionCommandOutput, BudgetsClientResolvedConfig> {
|
|
36
54
|
readonly input: DescribeBudgetActionCommandInput;
|
|
@@ -31,6 +31,27 @@ export interface DescribeBudgetActionHistoriesCommandOutput extends DescribeBudg
|
|
|
31
31
|
* @see {@link DescribeBudgetActionHistoriesCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You are not authorized to use this operation with the given parameters.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
38
|
+
* <p>An error on the server occurred during the processing of your request. Try again later.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
41
|
+
* <p>The pagination token is invalid.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
44
|
+
* <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link NotFoundException} (client fault)
|
|
47
|
+
* <p>We can’t locate the resource that you specified.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
50
|
+
* <p>
|
|
51
|
+
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
|
|
52
|
+
* </p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
34
55
|
*/
|
|
35
56
|
export declare class DescribeBudgetActionHistoriesCommand extends $Command<DescribeBudgetActionHistoriesCommandInput, DescribeBudgetActionHistoriesCommandOutput, BudgetsClientResolvedConfig> {
|
|
36
57
|
readonly input: DescribeBudgetActionHistoriesCommandInput;
|
|
@@ -31,6 +31,24 @@ export interface DescribeBudgetActionsForAccountCommandOutput extends DescribeBu
|
|
|
31
31
|
* @see {@link DescribeBudgetActionsForAccountCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You are not authorized to use this operation with the given parameters.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
38
|
+
* <p>An error on the server occurred during the processing of your request. Try again later.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
41
|
+
* <p>The pagination token is invalid.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
44
|
+
* <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
47
|
+
* <p>
|
|
48
|
+
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
|
|
49
|
+
* </p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
34
52
|
*/
|
|
35
53
|
export declare class DescribeBudgetActionsForAccountCommand extends $Command<DescribeBudgetActionsForAccountCommandInput, DescribeBudgetActionsForAccountCommandOutput, BudgetsClientResolvedConfig> {
|
|
36
54
|
readonly input: DescribeBudgetActionsForAccountCommandInput;
|
|
@@ -31,6 +31,27 @@ export interface DescribeBudgetActionsForBudgetCommandOutput extends DescribeBud
|
|
|
31
31
|
* @see {@link DescribeBudgetActionsForBudgetCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You are not authorized to use this operation with the given parameters.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
38
|
+
* <p>An error on the server occurred during the processing of your request. Try again later.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
41
|
+
* <p>The pagination token is invalid.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
44
|
+
* <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link NotFoundException} (client fault)
|
|
47
|
+
* <p>We can’t locate the resource that you specified.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
50
|
+
* <p>
|
|
51
|
+
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
|
|
52
|
+
* </p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
34
55
|
*/
|
|
35
56
|
export declare class DescribeBudgetActionsForBudgetCommand extends $Command<DescribeBudgetActionsForBudgetCommandInput, DescribeBudgetActionsForBudgetCommandOutput, BudgetsClientResolvedConfig> {
|
|
36
57
|
readonly input: DescribeBudgetActionsForBudgetCommandInput;
|
|
@@ -32,6 +32,24 @@ export interface DescribeBudgetCommandOutput extends DescribeBudgetResponse, __M
|
|
|
32
32
|
* @see {@link DescribeBudgetCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
36
|
+
* <p>You are not authorized to use this operation with the given parameters.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
39
|
+
* <p>An error on the server occurred during the processing of your request. Try again later.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
42
|
+
* <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link NotFoundException} (client fault)
|
|
45
|
+
* <p>We can’t locate the resource that you specified.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* <p>
|
|
49
|
+
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
|
|
50
|
+
* </p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
35
53
|
*/
|
|
36
54
|
export declare class DescribeBudgetCommand extends $Command<DescribeBudgetCommandInput, DescribeBudgetCommandOutput, BudgetsClientResolvedConfig> {
|
|
37
55
|
readonly input: DescribeBudgetCommandInput;
|
|
@@ -31,6 +31,30 @@ export interface DescribeBudgetNotificationsForAccountCommandOutput extends Desc
|
|
|
31
31
|
* @see {@link DescribeBudgetNotificationsForAccountCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You are not authorized to use this operation with the given parameters.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link ExpiredNextTokenException} (client fault)
|
|
38
|
+
* <p>The pagination token expired.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
41
|
+
* <p>An error on the server occurred during the processing of your request. Try again later.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
44
|
+
* <p>The pagination token is invalid.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
47
|
+
* <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link NotFoundException} (client fault)
|
|
50
|
+
* <p>We can’t locate the resource that you specified.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
53
|
+
* <p>
|
|
54
|
+
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
|
|
55
|
+
* </p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
34
58
|
*/
|
|
35
59
|
export declare class DescribeBudgetNotificationsForAccountCommand extends $Command<DescribeBudgetNotificationsForAccountCommandInput, DescribeBudgetNotificationsForAccountCommandOutput, BudgetsClientResolvedConfig> {
|
|
36
60
|
readonly input: DescribeBudgetNotificationsForAccountCommandInput;
|
|
@@ -29,6 +29,30 @@ export interface DescribeBudgetPerformanceHistoryCommandOutput extends DescribeB
|
|
|
29
29
|
* @see {@link DescribeBudgetPerformanceHistoryCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You are not authorized to use this operation with the given parameters.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ExpiredNextTokenException} (client fault)
|
|
36
|
+
* <p>The pagination token expired.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
39
|
+
* <p>An error on the server occurred during the processing of your request. Try again later.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
42
|
+
* <p>The pagination token is invalid.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
45
|
+
* <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link NotFoundException} (client fault)
|
|
48
|
+
* <p>We can’t locate the resource that you specified.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>
|
|
52
|
+
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
|
|
53
|
+
* </p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
32
56
|
*/
|
|
33
57
|
export declare class DescribeBudgetPerformanceHistoryCommand extends $Command<DescribeBudgetPerformanceHistoryCommandInput, DescribeBudgetPerformanceHistoryCommandOutput, BudgetsClientResolvedConfig> {
|
|
34
58
|
readonly input: DescribeBudgetPerformanceHistoryCommandInput;
|
|
@@ -32,6 +32,30 @@ export interface DescribeBudgetsCommandOutput extends DescribeBudgetsResponse, _
|
|
|
32
32
|
* @see {@link DescribeBudgetsCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
36
|
+
* <p>You are not authorized to use this operation with the given parameters.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ExpiredNextTokenException} (client fault)
|
|
39
|
+
* <p>The pagination token expired.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
42
|
+
* <p>An error on the server occurred during the processing of your request. Try again later.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
45
|
+
* <p>The pagination token is invalid.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
48
|
+
* <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link NotFoundException} (client fault)
|
|
51
|
+
* <p>We can’t locate the resource that you specified.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
54
|
+
* <p>
|
|
55
|
+
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
|
|
56
|
+
* </p>
|
|
57
|
+
*
|
|
58
|
+
*
|
|
35
59
|
*/
|
|
36
60
|
export declare class DescribeBudgetsCommand extends $Command<DescribeBudgetsCommandInput, DescribeBudgetsCommandOutput, BudgetsClientResolvedConfig> {
|
|
37
61
|
readonly input: DescribeBudgetsCommandInput;
|
|
@@ -29,6 +29,30 @@ export interface DescribeNotificationsForBudgetCommandOutput extends DescribeNot
|
|
|
29
29
|
* @see {@link DescribeNotificationsForBudgetCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You are not authorized to use this operation with the given parameters.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ExpiredNextTokenException} (client fault)
|
|
36
|
+
* <p>The pagination token expired.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
39
|
+
* <p>An error on the server occurred during the processing of your request. Try again later.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
42
|
+
* <p>The pagination token is invalid.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
45
|
+
* <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link NotFoundException} (client fault)
|
|
48
|
+
* <p>We can’t locate the resource that you specified.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>
|
|
52
|
+
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
|
|
53
|
+
* </p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
32
56
|
*/
|
|
33
57
|
export declare class DescribeNotificationsForBudgetCommand extends $Command<DescribeNotificationsForBudgetCommandInput, DescribeNotificationsForBudgetCommandOutput, BudgetsClientResolvedConfig> {
|
|
34
58
|
readonly input: DescribeNotificationsForBudgetCommandInput;
|
|
@@ -29,6 +29,30 @@ export interface DescribeSubscribersForNotificationCommandOutput extends Describ
|
|
|
29
29
|
* @see {@link DescribeSubscribersForNotificationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You are not authorized to use this operation with the given parameters.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ExpiredNextTokenException} (client fault)
|
|
36
|
+
* <p>The pagination token expired.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
39
|
+
* <p>An error on the server occurred during the processing of your request. Try again later.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
42
|
+
* <p>The pagination token is invalid.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
45
|
+
* <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link NotFoundException} (client fault)
|
|
48
|
+
* <p>We can’t locate the resource that you specified.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>
|
|
52
|
+
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
|
|
53
|
+
* </p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
32
56
|
*/
|
|
33
57
|
export declare class DescribeSubscribersForNotificationCommand extends $Command<DescribeSubscribersForNotificationCommandInput, DescribeSubscribersForNotificationCommandOutput, BudgetsClientResolvedConfig> {
|
|
34
58
|
readonly input: DescribeSubscribersForNotificationCommandInput;
|
|
@@ -31,6 +31,28 @@ export interface ExecuteBudgetActionCommandOutput extends ExecuteBudgetActionRes
|
|
|
31
31
|
* @see {@link ExecuteBudgetActionCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You are not authorized to use this operation with the given parameters.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
38
|
+
* <p>An error on the server occurred during the processing of your request. Try again later.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
41
|
+
* <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link NotFoundException} (client fault)
|
|
44
|
+
* <p>We can’t locate the resource that you specified.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ResourceLockedException} (client fault)
|
|
47
|
+
* <p> The request was received and recognized by the server, but the server rejected that
|
|
48
|
+
* particular method for the requested resource. </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>
|
|
52
|
+
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
|
|
53
|
+
* </p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
34
56
|
*/
|
|
35
57
|
export declare class ExecuteBudgetActionCommand extends $Command<ExecuteBudgetActionCommandInput, ExecuteBudgetActionCommandOutput, BudgetsClientResolvedConfig> {
|
|
36
58
|
readonly input: ExecuteBudgetActionCommandInput;
|
|
@@ -31,6 +31,28 @@ export interface UpdateBudgetActionCommandOutput extends UpdateBudgetActionRespo
|
|
|
31
31
|
* @see {@link UpdateBudgetActionCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>You are not authorized to use this operation with the given parameters.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
38
|
+
* <p>An error on the server occurred during the processing of your request. Try again later.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
41
|
+
* <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link NotFoundException} (client fault)
|
|
44
|
+
* <p>We can’t locate the resource that you specified.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link ResourceLockedException} (client fault)
|
|
47
|
+
* <p> The request was received and recognized by the server, but the server rejected that
|
|
48
|
+
* particular method for the requested resource. </p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
51
|
+
* <p>
|
|
52
|
+
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
|
|
53
|
+
* </p>
|
|
54
|
+
*
|
|
55
|
+
*
|
|
34
56
|
*/
|
|
35
57
|
export declare class UpdateBudgetActionCommand extends $Command<UpdateBudgetActionCommandInput, UpdateBudgetActionCommandOutput, BudgetsClientResolvedConfig> {
|
|
36
58
|
readonly input: UpdateBudgetActionCommandInput;
|
|
@@ -32,6 +32,24 @@ export interface UpdateBudgetCommandOutput extends UpdateBudgetResponse, __Metad
|
|
|
32
32
|
* @see {@link UpdateBudgetCommandOutput} for command's `response` shape.
|
|
33
33
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
34
34
|
*
|
|
35
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
36
|
+
* <p>You are not authorized to use this operation with the given parameters.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
39
|
+
* <p>An error on the server occurred during the processing of your request. Try again later.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
42
|
+
* <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link NotFoundException} (client fault)
|
|
45
|
+
* <p>We can’t locate the resource that you specified.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* <p>
|
|
49
|
+
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
|
|
50
|
+
* </p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
35
53
|
*/
|
|
36
54
|
export declare class UpdateBudgetCommand extends $Command<UpdateBudgetCommandInput, UpdateBudgetCommandOutput, BudgetsClientResolvedConfig> {
|
|
37
55
|
readonly input: UpdateBudgetCommandInput;
|
|
@@ -29,6 +29,27 @@ export interface UpdateNotificationCommandOutput extends UpdateNotificationRespo
|
|
|
29
29
|
* @see {@link UpdateNotificationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You are not authorized to use this operation with the given parameters.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link DuplicateRecordException} (client fault)
|
|
36
|
+
* <p>The budget name already exists. Budget names must be unique within an account.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
39
|
+
* <p>An error on the server occurred during the processing of your request. Try again later.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
42
|
+
* <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link NotFoundException} (client fault)
|
|
45
|
+
* <p>We can’t locate the resource that you specified.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* <p>
|
|
49
|
+
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
|
|
50
|
+
* </p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
32
53
|
*/
|
|
33
54
|
export declare class UpdateNotificationCommand extends $Command<UpdateNotificationCommandInput, UpdateNotificationCommandOutput, BudgetsClientResolvedConfig> {
|
|
34
55
|
readonly input: UpdateNotificationCommandInput;
|
|
@@ -29,6 +29,27 @@ export interface UpdateSubscriberCommandOutput extends UpdateSubscriberResponse,
|
|
|
29
29
|
* @see {@link UpdateSubscriberCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link BudgetsClientResolvedConfig | config} for BudgetsClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>You are not authorized to use this operation with the given parameters.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link DuplicateRecordException} (client fault)
|
|
36
|
+
* <p>The budget name already exists. Budget names must be unique within an account.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalErrorException} (server fault)
|
|
39
|
+
* <p>An error on the server occurred during the processing of your request. Try again later.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
42
|
+
* <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link NotFoundException} (client fault)
|
|
45
|
+
* <p>We can’t locate the resource that you specified.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* <p>
|
|
49
|
+
* The number of API requests has exceeded the maximum allowed API request throttling limit for the account.
|
|
50
|
+
* </p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
32
53
|
*/
|
|
33
54
|
export declare class UpdateSubscriberCommand extends $Command<UpdateSubscriberCommandInput, UpdateSubscriberCommandOutput, BudgetsClientResolvedConfig> {
|
|
34
55
|
readonly input: UpdateSubscriberCommandInput;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-budgets",
|
|
3
3
|
"description": "AWS SDK for JavaScript Budgets Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.290.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,37 +20,37 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.290.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.290.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.290.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.290.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.290.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.290.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.290.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.290.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.290.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.290.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.290.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.290.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.290.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.290.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.290.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.290.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.290.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.290.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.290.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.290.0",
|
|
43
|
+
"@aws-sdk/types": "3.290.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.290.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.290.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.290.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.290.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.290.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.290.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.290.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"tslib": "^2.3.1"
|
|
56
56
|
},
|