@aws-sdk/client-swf 3.288.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.
Files changed (38) hide show
  1. package/dist-types/commands/CountClosedWorkflowExecutionsCommand.d.ts +7 -0
  2. package/dist-types/commands/CountOpenWorkflowExecutionsCommand.d.ts +7 -0
  3. package/dist-types/commands/CountPendingActivityTasksCommand.d.ts +7 -0
  4. package/dist-types/commands/CountPendingDecisionTasksCommand.d.ts +7 -0
  5. package/dist-types/commands/DeprecateActivityTypeCommand.d.ts +10 -0
  6. package/dist-types/commands/DeprecateDomainCommand.d.ts +10 -0
  7. package/dist-types/commands/DeprecateWorkflowTypeCommand.d.ts +10 -0
  8. package/dist-types/commands/DescribeActivityTypeCommand.d.ts +7 -0
  9. package/dist-types/commands/DescribeDomainCommand.d.ts +7 -0
  10. package/dist-types/commands/DescribeWorkflowExecutionCommand.d.ts +7 -0
  11. package/dist-types/commands/DescribeWorkflowTypeCommand.d.ts +7 -0
  12. package/dist-types/commands/GetWorkflowExecutionHistoryCommand.d.ts +7 -0
  13. package/dist-types/commands/ListActivityTypesCommand.d.ts +7 -0
  14. package/dist-types/commands/ListClosedWorkflowExecutionsCommand.d.ts +7 -0
  15. package/dist-types/commands/ListDomainsCommand.d.ts +4 -0
  16. package/dist-types/commands/ListOpenWorkflowExecutionsCommand.d.ts +7 -0
  17. package/dist-types/commands/ListTagsForResourceCommand.d.ts +10 -0
  18. package/dist-types/commands/ListWorkflowTypesCommand.d.ts +7 -0
  19. package/dist-types/commands/PollForActivityTaskCommand.d.ts +10 -0
  20. package/dist-types/commands/PollForDecisionTaskCommand.d.ts +10 -0
  21. package/dist-types/commands/RecordActivityTaskHeartbeatCommand.d.ts +7 -0
  22. package/dist-types/commands/RegisterActivityTypeCommand.d.ts +13 -0
  23. package/dist-types/commands/RegisterDomainCommand.d.ts +13 -0
  24. package/dist-types/commands/RegisterWorkflowTypeCommand.d.ts +13 -0
  25. package/dist-types/commands/RequestCancelWorkflowExecutionCommand.d.ts +7 -0
  26. package/dist-types/commands/RespondActivityTaskCanceledCommand.d.ts +7 -0
  27. package/dist-types/commands/RespondActivityTaskCompletedCommand.d.ts +7 -0
  28. package/dist-types/commands/RespondActivityTaskFailedCommand.d.ts +7 -0
  29. package/dist-types/commands/RespondDecisionTaskCompletedCommand.d.ts +7 -0
  30. package/dist-types/commands/SignalWorkflowExecutionCommand.d.ts +7 -0
  31. package/dist-types/commands/StartWorkflowExecutionCommand.d.ts +30 -0
  32. package/dist-types/commands/TagResourceCommand.d.ts +13 -0
  33. package/dist-types/commands/TerminateWorkflowExecutionCommand.d.ts +7 -0
  34. package/dist-types/commands/UndeprecateActivityTypeCommand.d.ts +10 -0
  35. package/dist-types/commands/UndeprecateDomainCommand.d.ts +10 -0
  36. package/dist-types/commands/UndeprecateWorkflowTypeCommand.d.ts +10 -0
  37. package/dist-types/commands/UntagResourceCommand.d.ts +10 -0
  38. package/package.json +29 -29
@@ -75,6 +75,13 @@ export interface CountClosedWorkflowExecutionsCommandOutput extends WorkflowExec
75
75
  * @see {@link CountClosedWorkflowExecutionsCommandOutput} for command's `response` shape.
76
76
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
77
77
  *
78
+ * @throws {@link OperationNotPermittedFault} (client fault)
79
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
80
+ *
81
+ * @throws {@link UnknownResourceFault} (client fault)
82
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
83
+ *
84
+ *
78
85
  */
79
86
  export declare class CountClosedWorkflowExecutionsCommand extends $Command<CountClosedWorkflowExecutionsCommandInput, CountClosedWorkflowExecutionsCommandOutput, SWFClientResolvedConfig> {
80
87
  readonly input: CountClosedWorkflowExecutionsCommandInput;
@@ -75,6 +75,13 @@ export interface CountOpenWorkflowExecutionsCommandOutput extends WorkflowExecut
75
75
  * @see {@link CountOpenWorkflowExecutionsCommandOutput} for command's `response` shape.
76
76
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
77
77
  *
78
+ * @throws {@link OperationNotPermittedFault} (client fault)
79
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
80
+ *
81
+ * @throws {@link UnknownResourceFault} (client fault)
82
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
83
+ *
84
+ *
78
85
  */
79
86
  export declare class CountOpenWorkflowExecutionsCommand extends $Command<CountOpenWorkflowExecutionsCommandInput, CountOpenWorkflowExecutionsCommandOutput, SWFClientResolvedConfig> {
80
87
  readonly input: CountOpenWorkflowExecutionsCommandInput;
@@ -56,6 +56,13 @@ export interface CountPendingActivityTasksCommandOutput extends PendingTaskCount
56
56
  * @see {@link CountPendingActivityTasksCommandOutput} for command's `response` shape.
57
57
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
58
58
  *
59
+ * @throws {@link OperationNotPermittedFault} (client fault)
60
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
61
+ *
62
+ * @throws {@link UnknownResourceFault} (client fault)
63
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
64
+ *
65
+ *
59
66
  */
60
67
  export declare class CountPendingActivityTasksCommand extends $Command<CountPendingActivityTasksCommandInput, CountPendingActivityTasksCommandOutput, SWFClientResolvedConfig> {
61
68
  readonly input: CountPendingActivityTasksCommandInput;
@@ -56,6 +56,13 @@ export interface CountPendingDecisionTasksCommandOutput extends PendingTaskCount
56
56
  * @see {@link CountPendingDecisionTasksCommandOutput} for command's `response` shape.
57
57
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
58
58
  *
59
+ * @throws {@link OperationNotPermittedFault} (client fault)
60
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
61
+ *
62
+ * @throws {@link UnknownResourceFault} (client fault)
63
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
64
+ *
65
+ *
59
66
  */
60
67
  export declare class CountPendingDecisionTasksCommand extends $Command<CountPendingDecisionTasksCommandInput, CountPendingDecisionTasksCommandOutput, SWFClientResolvedConfig> {
61
68
  readonly input: CountPendingDecisionTasksCommandInput;
@@ -71,6 +71,16 @@ export interface DeprecateActivityTypeCommandOutput extends __MetadataBearer {
71
71
  * @see {@link DeprecateActivityTypeCommandOutput} for command's `response` shape.
72
72
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
73
73
  *
74
+ * @throws {@link OperationNotPermittedFault} (client fault)
75
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
76
+ *
77
+ * @throws {@link TypeDeprecatedFault} (client fault)
78
+ * <p>Returned when the specified activity or workflow type was already deprecated.</p>
79
+ *
80
+ * @throws {@link UnknownResourceFault} (client fault)
81
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
82
+ *
83
+ *
74
84
  */
75
85
  export declare class DeprecateActivityTypeCommand extends $Command<DeprecateActivityTypeCommandInput, DeprecateActivityTypeCommandOutput, SWFClientResolvedConfig> {
76
86
  readonly input: DeprecateActivityTypeCommandInput;
@@ -60,6 +60,16 @@ export interface DeprecateDomainCommandOutput extends __MetadataBearer {
60
60
  * @see {@link DeprecateDomainCommandOutput} for command's `response` shape.
61
61
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
62
62
  *
63
+ * @throws {@link DomainDeprecatedFault} (client fault)
64
+ * <p>Returned when the specified domain has been deprecated.</p>
65
+ *
66
+ * @throws {@link OperationNotPermittedFault} (client fault)
67
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
68
+ *
69
+ * @throws {@link UnknownResourceFault} (client fault)
70
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
71
+ *
72
+ *
63
73
  */
64
74
  export declare class DeprecateDomainCommand extends $Command<DeprecateDomainCommandInput, DeprecateDomainCommandOutput, SWFClientResolvedConfig> {
65
75
  readonly input: DeprecateDomainCommandInput;
@@ -72,6 +72,16 @@ export interface DeprecateWorkflowTypeCommandOutput extends __MetadataBearer {
72
72
  * @see {@link DeprecateWorkflowTypeCommandOutput} for command's `response` shape.
73
73
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
74
74
  *
75
+ * @throws {@link OperationNotPermittedFault} (client fault)
76
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
77
+ *
78
+ * @throws {@link TypeDeprecatedFault} (client fault)
79
+ * <p>Returned when the specified activity or workflow type was already deprecated.</p>
80
+ *
81
+ * @throws {@link UnknownResourceFault} (client fault)
82
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
83
+ *
84
+ *
75
85
  */
76
86
  export declare class DeprecateWorkflowTypeCommand extends $Command<DeprecateWorkflowTypeCommandInput, DeprecateWorkflowTypeCommandOutput, SWFClientResolvedConfig> {
77
87
  readonly input: DeprecateWorkflowTypeCommandInput;
@@ -67,6 +67,13 @@ export interface DescribeActivityTypeCommandOutput extends ActivityTypeDetail, _
67
67
  * @see {@link DescribeActivityTypeCommandOutput} for command's `response` shape.
68
68
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
69
69
  *
70
+ * @throws {@link OperationNotPermittedFault} (client fault)
71
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
72
+ *
73
+ * @throws {@link UnknownResourceFault} (client fault)
74
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
75
+ *
76
+ *
70
77
  */
71
78
  export declare class DescribeActivityTypeCommand extends $Command<DescribeActivityTypeCommandInput, DescribeActivityTypeCommandOutput, SWFClientResolvedConfig> {
72
79
  readonly input: DescribeActivityTypeCommandInput;
@@ -53,6 +53,13 @@ export interface DescribeDomainCommandOutput extends DomainDetail, __MetadataBea
53
53
  * @see {@link DescribeDomainCommandOutput} for command's `response` shape.
54
54
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
55
55
  *
56
+ * @throws {@link OperationNotPermittedFault} (client fault)
57
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
58
+ *
59
+ * @throws {@link UnknownResourceFault} (client fault)
60
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
61
+ *
62
+ *
56
63
  */
57
64
  export declare class DescribeDomainCommand extends $Command<DescribeDomainCommandInput, DescribeDomainCommandOutput, SWFClientResolvedConfig> {
58
65
  readonly input: DescribeDomainCommandInput;
@@ -57,6 +57,13 @@ export interface DescribeWorkflowExecutionCommandOutput extends WorkflowExecutio
57
57
  * @see {@link DescribeWorkflowExecutionCommandOutput} for command's `response` shape.
58
58
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
59
59
  *
60
+ * @throws {@link OperationNotPermittedFault} (client fault)
61
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
62
+ *
63
+ * @throws {@link UnknownResourceFault} (client fault)
64
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
65
+ *
66
+ *
60
67
  */
61
68
  export declare class DescribeWorkflowExecutionCommand extends $Command<DescribeWorkflowExecutionCommandInput, DescribeWorkflowExecutionCommandOutput, SWFClientResolvedConfig> {
62
69
  readonly input: DescribeWorkflowExecutionCommandInput;
@@ -67,6 +67,13 @@ export interface DescribeWorkflowTypeCommandOutput extends WorkflowTypeDetail, _
67
67
  * @see {@link DescribeWorkflowTypeCommandOutput} for command's `response` shape.
68
68
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
69
69
  *
70
+ * @throws {@link OperationNotPermittedFault} (client fault)
71
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
72
+ *
73
+ * @throws {@link UnknownResourceFault} (client fault)
74
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
75
+ *
76
+ *
70
77
  */
71
78
  export declare class DescribeWorkflowTypeCommand extends $Command<DescribeWorkflowTypeCommandInput, DescribeWorkflowTypeCommandOutput, SWFClientResolvedConfig> {
72
79
  readonly input: DescribeWorkflowTypeCommandInput;
@@ -58,6 +58,13 @@ export interface GetWorkflowExecutionHistoryCommandOutput extends History, __Met
58
58
  * @see {@link GetWorkflowExecutionHistoryCommandOutput} for command's `response` shape.
59
59
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
60
60
  *
61
+ * @throws {@link OperationNotPermittedFault} (client fault)
62
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
63
+ *
64
+ * @throws {@link UnknownResourceFault} (client fault)
65
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
66
+ *
67
+ *
61
68
  */
62
69
  export declare class GetWorkflowExecutionHistoryCommand extends $Command<GetWorkflowExecutionHistoryCommandInput, GetWorkflowExecutionHistoryCommandOutput, SWFClientResolvedConfig> {
63
70
  readonly input: GetWorkflowExecutionHistoryCommandInput;
@@ -56,6 +56,13 @@ export interface ListActivityTypesCommandOutput extends ActivityTypeInfos, __Met
56
56
  * @see {@link ListActivityTypesCommandOutput} for command's `response` shape.
57
57
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
58
58
  *
59
+ * @throws {@link OperationNotPermittedFault} (client fault)
60
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
61
+ *
62
+ * @throws {@link UnknownResourceFault} (client fault)
63
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
64
+ *
65
+ *
59
66
  */
60
67
  export declare class ListActivityTypesCommand extends $Command<ListActivityTypesCommandInput, ListActivityTypesCommandOutput, SWFClientResolvedConfig> {
61
68
  readonly input: ListActivityTypesCommandInput;
@@ -76,6 +76,13 @@ export interface ListClosedWorkflowExecutionsCommandOutput extends WorkflowExecu
76
76
  * @see {@link ListClosedWorkflowExecutionsCommandOutput} for command's `response` shape.
77
77
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
78
78
  *
79
+ * @throws {@link OperationNotPermittedFault} (client fault)
80
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
81
+ *
82
+ * @throws {@link UnknownResourceFault} (client fault)
83
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
84
+ *
85
+ *
79
86
  */
80
87
  export declare class ListClosedWorkflowExecutionsCommand extends $Command<ListClosedWorkflowExecutionsCommandInput, ListClosedWorkflowExecutionsCommandOutput, SWFClientResolvedConfig> {
81
88
  readonly input: ListClosedWorkflowExecutionsCommandInput;
@@ -60,6 +60,10 @@ export interface ListDomainsCommandOutput extends DomainInfos, __MetadataBearer
60
60
  * @see {@link ListDomainsCommandOutput} for command's `response` shape.
61
61
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
62
62
  *
63
+ * @throws {@link OperationNotPermittedFault} (client fault)
64
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
65
+ *
66
+ *
63
67
  */
64
68
  export declare class ListDomainsCommand extends $Command<ListDomainsCommandInput, ListDomainsCommandOutput, SWFClientResolvedConfig> {
65
69
  readonly input: ListDomainsCommandInput;
@@ -76,6 +76,13 @@ export interface ListOpenWorkflowExecutionsCommandOutput extends WorkflowExecuti
76
76
  * @see {@link ListOpenWorkflowExecutionsCommandOutput} for command's `response` shape.
77
77
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
78
78
  *
79
+ * @throws {@link OperationNotPermittedFault} (client fault)
80
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
81
+ *
82
+ * @throws {@link UnknownResourceFault} (client fault)
83
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
84
+ *
85
+ *
79
86
  */
80
87
  export declare class ListOpenWorkflowExecutionsCommand extends $Command<ListOpenWorkflowExecutionsCommandInput, ListOpenWorkflowExecutionsCommandOutput, SWFClientResolvedConfig> {
81
88
  readonly input: ListOpenWorkflowExecutionsCommandInput;
@@ -29,6 +29,16 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
29
29
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
30
30
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
31
31
  *
32
+ * @throws {@link LimitExceededFault} (client fault)
33
+ * <p>Returned by any operation if a system imposed limitation has been reached. To address this fault you should either clean up unused resources or increase the limit by contacting AWS.</p>
34
+ *
35
+ * @throws {@link OperationNotPermittedFault} (client fault)
36
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
37
+ *
38
+ * @throws {@link UnknownResourceFault} (client fault)
39
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SWFClientResolvedConfig> {
34
44
  readonly input: ListTagsForResourceCommandInput;
@@ -53,6 +53,13 @@ export interface ListWorkflowTypesCommandOutput extends WorkflowTypeInfos, __Met
53
53
  * @see {@link ListWorkflowTypesCommandOutput} for command's `response` shape.
54
54
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
55
55
  *
56
+ * @throws {@link OperationNotPermittedFault} (client fault)
57
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
58
+ *
59
+ * @throws {@link UnknownResourceFault} (client fault)
60
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
61
+ *
62
+ *
56
63
  */
57
64
  export declare class ListWorkflowTypesCommand extends $Command<ListWorkflowTypesCommandInput, ListWorkflowTypesCommandOutput, SWFClientResolvedConfig> {
58
65
  readonly input: ListWorkflowTypesCommandInput;
@@ -64,6 +64,16 @@ export interface PollForActivityTaskCommandOutput extends ActivityTask, __Metada
64
64
  * @see {@link PollForActivityTaskCommandOutput} for command's `response` shape.
65
65
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
66
66
  *
67
+ * @throws {@link LimitExceededFault} (client fault)
68
+ * <p>Returned by any operation if a system imposed limitation has been reached. To address this fault you should either clean up unused resources or increase the limit by contacting AWS.</p>
69
+ *
70
+ * @throws {@link OperationNotPermittedFault} (client fault)
71
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
72
+ *
73
+ * @throws {@link UnknownResourceFault} (client fault)
74
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
75
+ *
76
+ *
67
77
  */
68
78
  export declare class PollForActivityTaskCommand extends $Command<PollForActivityTaskCommandInput, PollForActivityTaskCommandOutput, SWFClientResolvedConfig> {
69
79
  readonly input: PollForActivityTaskCommandInput;
@@ -76,6 +76,16 @@ export interface PollForDecisionTaskCommandOutput extends DecisionTask, __Metada
76
76
  * @see {@link PollForDecisionTaskCommandOutput} for command's `response` shape.
77
77
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
78
78
  *
79
+ * @throws {@link LimitExceededFault} (client fault)
80
+ * <p>Returned by any operation if a system imposed limitation has been reached. To address this fault you should either clean up unused resources or increase the limit by contacting AWS.</p>
81
+ *
82
+ * @throws {@link OperationNotPermittedFault} (client fault)
83
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
84
+ *
85
+ * @throws {@link UnknownResourceFault} (client fault)
86
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
87
+ *
88
+ *
79
89
  */
80
90
  export declare class PollForDecisionTaskCommand extends $Command<PollForDecisionTaskCommandInput, PollForDecisionTaskCommandOutput, SWFClientResolvedConfig> {
81
91
  readonly input: PollForDecisionTaskCommandInput;
@@ -76,6 +76,13 @@ export interface RecordActivityTaskHeartbeatCommandOutput extends ActivityTaskSt
76
76
  * @see {@link RecordActivityTaskHeartbeatCommandOutput} for command's `response` shape.
77
77
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
78
78
  *
79
+ * @throws {@link OperationNotPermittedFault} (client fault)
80
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
81
+ *
82
+ * @throws {@link UnknownResourceFault} (client fault)
83
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
84
+ *
85
+ *
79
86
  */
80
87
  export declare class RecordActivityTaskHeartbeatCommand extends $Command<RecordActivityTaskHeartbeatCommandInput, RecordActivityTaskHeartbeatCommandOutput, SWFClientResolvedConfig> {
81
88
  readonly input: RecordActivityTaskHeartbeatCommandInput;
@@ -75,6 +75,19 @@ export interface RegisterActivityTypeCommandOutput extends __MetadataBearer {
75
75
  * @see {@link RegisterActivityTypeCommandOutput} for command's `response` shape.
76
76
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
77
77
  *
78
+ * @throws {@link LimitExceededFault} (client fault)
79
+ * <p>Returned by any operation if a system imposed limitation has been reached. To address this fault you should either clean up unused resources or increase the limit by contacting AWS.</p>
80
+ *
81
+ * @throws {@link OperationNotPermittedFault} (client fault)
82
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
83
+ *
84
+ * @throws {@link TypeAlreadyExistsFault} (client fault)
85
+ * <p>Returned if the type already exists in the specified domain. You may get this fault if you are registering a type that is either already registered or deprecated, or if you undeprecate a type that is currently registered.</p>
86
+ *
87
+ * @throws {@link UnknownResourceFault} (client fault)
88
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
89
+ *
90
+ *
78
91
  */
79
92
  export declare class RegisterActivityTypeCommand extends $Command<RegisterActivityTypeCommandInput, RegisterActivityTypeCommandOutput, SWFClientResolvedConfig> {
80
93
  readonly input: RegisterActivityTypeCommandInput;
@@ -52,6 +52,19 @@ export interface RegisterDomainCommandOutput extends __MetadataBearer {
52
52
  * @see {@link RegisterDomainCommandOutput} for command's `response` shape.
53
53
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
54
54
  *
55
+ * @throws {@link DomainAlreadyExistsFault} (client fault)
56
+ * <p>Returned if the domain already exists. You may get this fault if you are registering a domain that is either already registered or deprecated, or if you undeprecate a domain that is currently registered.</p>
57
+ *
58
+ * @throws {@link LimitExceededFault} (client fault)
59
+ * <p>Returned by any operation if a system imposed limitation has been reached. To address this fault you should either clean up unused resources or increase the limit by contacting AWS.</p>
60
+ *
61
+ * @throws {@link OperationNotPermittedFault} (client fault)
62
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
63
+ *
64
+ * @throws {@link TooManyTagsFault} (client fault)
65
+ * <p>You've exceeded the number of tags allowed for a domain.</p>
66
+ *
67
+ *
55
68
  */
56
69
  export declare class RegisterDomainCommand extends $Command<RegisterDomainCommandInput, RegisterDomainCommandOutput, SWFClientResolvedConfig> {
57
70
  readonly input: RegisterDomainCommandInput;
@@ -76,6 +76,19 @@ export interface RegisterWorkflowTypeCommandOutput extends __MetadataBearer {
76
76
  * @see {@link RegisterWorkflowTypeCommandOutput} for command's `response` shape.
77
77
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
78
78
  *
79
+ * @throws {@link LimitExceededFault} (client fault)
80
+ * <p>Returned by any operation if a system imposed limitation has been reached. To address this fault you should either clean up unused resources or increase the limit by contacting AWS.</p>
81
+ *
82
+ * @throws {@link OperationNotPermittedFault} (client fault)
83
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
84
+ *
85
+ * @throws {@link TypeAlreadyExistsFault} (client fault)
86
+ * <p>Returned if the type already exists in the specified domain. You may get this fault if you are registering a type that is either already registered or deprecated, or if you undeprecate a type that is currently registered.</p>
87
+ *
88
+ * @throws {@link UnknownResourceFault} (client fault)
89
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
90
+ *
91
+ *
79
92
  */
80
93
  export declare class RegisterWorkflowTypeCommand extends $Command<RegisterWorkflowTypeCommandInput, RegisterWorkflowTypeCommandOutput, SWFClientResolvedConfig> {
81
94
  readonly input: RegisterWorkflowTypeCommandInput;
@@ -67,6 +67,13 @@ export interface RequestCancelWorkflowExecutionCommandOutput extends __MetadataB
67
67
  * @see {@link RequestCancelWorkflowExecutionCommandOutput} for command's `response` shape.
68
68
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
69
69
  *
70
+ * @throws {@link OperationNotPermittedFault} (client fault)
71
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
72
+ *
73
+ * @throws {@link UnknownResourceFault} (client fault)
74
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
75
+ *
76
+ *
70
77
  */
71
78
  export declare class RequestCancelWorkflowExecutionCommand extends $Command<RequestCancelWorkflowExecutionCommandInput, RequestCancelWorkflowExecutionCommandOutput, SWFClientResolvedConfig> {
72
79
  readonly input: RequestCancelWorkflowExecutionCommandInput;
@@ -70,6 +70,13 @@ export interface RespondActivityTaskCanceledCommandOutput extends __MetadataBear
70
70
  * @see {@link RespondActivityTaskCanceledCommandOutput} for command's `response` shape.
71
71
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
72
72
  *
73
+ * @throws {@link OperationNotPermittedFault} (client fault)
74
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
75
+ *
76
+ * @throws {@link UnknownResourceFault} (client fault)
77
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
78
+ *
79
+ *
73
80
  */
74
81
  export declare class RespondActivityTaskCanceledCommand extends $Command<RespondActivityTaskCanceledCommandInput, RespondActivityTaskCanceledCommandOutput, SWFClientResolvedConfig> {
75
82
  readonly input: RespondActivityTaskCanceledCommandInput;
@@ -68,6 +68,13 @@ export interface RespondActivityTaskCompletedCommandOutput extends __MetadataBea
68
68
  * @see {@link RespondActivityTaskCompletedCommandOutput} for command's `response` shape.
69
69
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
70
70
  *
71
+ * @throws {@link OperationNotPermittedFault} (client fault)
72
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
73
+ *
74
+ * @throws {@link UnknownResourceFault} (client fault)
75
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
76
+ *
77
+ *
71
78
  */
72
79
  export declare class RespondActivityTaskCompletedCommand extends $Command<RespondActivityTaskCompletedCommandInput, RespondActivityTaskCompletedCommandOutput, SWFClientResolvedConfig> {
73
80
  readonly input: RespondActivityTaskCompletedCommandInput;
@@ -61,6 +61,13 @@ export interface RespondActivityTaskFailedCommandOutput extends __MetadataBearer
61
61
  * @see {@link RespondActivityTaskFailedCommandOutput} for command's `response` shape.
62
62
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
63
63
  *
64
+ * @throws {@link OperationNotPermittedFault} (client fault)
65
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
66
+ *
67
+ * @throws {@link UnknownResourceFault} (client fault)
68
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
69
+ *
70
+ *
64
71
  */
65
72
  export declare class RespondActivityTaskFailedCommand extends $Command<RespondActivityTaskFailedCommandInput, RespondActivityTaskFailedCommandOutput, SWFClientResolvedConfig> {
66
73
  readonly input: RespondActivityTaskFailedCommandInput;
@@ -48,6 +48,13 @@ export interface RespondDecisionTaskCompletedCommandOutput extends __MetadataBea
48
48
  * @see {@link RespondDecisionTaskCompletedCommandOutput} for command's `response` shape.
49
49
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
50
50
  *
51
+ * @throws {@link OperationNotPermittedFault} (client fault)
52
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
53
+ *
54
+ * @throws {@link UnknownResourceFault} (client fault)
55
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
56
+ *
57
+ *
51
58
  */
52
59
  export declare class RespondDecisionTaskCompletedCommand extends $Command<RespondDecisionTaskCompletedCommandInput, RespondDecisionTaskCompletedCommandOutput, SWFClientResolvedConfig> {
53
60
  readonly input: RespondDecisionTaskCompletedCommandInput;
@@ -67,6 +67,13 @@ export interface SignalWorkflowExecutionCommandOutput extends __MetadataBearer {
67
67
  * @see {@link SignalWorkflowExecutionCommandOutput} for command's `response` shape.
68
68
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
69
69
  *
70
+ * @throws {@link OperationNotPermittedFault} (client fault)
71
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
72
+ *
73
+ * @throws {@link UnknownResourceFault} (client fault)
74
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
75
+ *
76
+ *
70
77
  */
71
78
  export declare class SignalWorkflowExecutionCommand extends $Command<SignalWorkflowExecutionCommandInput, SignalWorkflowExecutionCommandOutput, SWFClientResolvedConfig> {
72
79
  readonly input: SignalWorkflowExecutionCommandInput;
@@ -94,6 +94,36 @@ export interface StartWorkflowExecutionCommandOutput extends Run, __MetadataBear
94
94
  * @see {@link StartWorkflowExecutionCommandOutput} for command's `response` shape.
95
95
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
96
96
  *
97
+ * @throws {@link DefaultUndefinedFault} (client fault)
98
+ * <p>The <code>StartWorkflowExecution</code> API action was called without the required
99
+ * parameters set.</p>
100
+ * <p>Some workflow execution parameters, such as the decision <code>taskList</code>, must be
101
+ * set to start the execution. However, these parameters might have been set as defaults when the
102
+ * workflow type was registered. In this case, you can omit these parameters from the
103
+ * <code>StartWorkflowExecution</code> call and Amazon SWF uses the values defined in the workflow
104
+ * type.</p>
105
+ * <note>
106
+ * <p>If these parameters aren't set and no default parameters were defined in the workflow
107
+ * type, this error is displayed.</p>
108
+ * </note>
109
+ *
110
+ * @throws {@link LimitExceededFault} (client fault)
111
+ * <p>Returned by any operation if a system imposed limitation has been reached. To address this fault you should either clean up unused resources or increase the limit by contacting AWS.</p>
112
+ *
113
+ * @throws {@link OperationNotPermittedFault} (client fault)
114
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
115
+ *
116
+ * @throws {@link TypeDeprecatedFault} (client fault)
117
+ * <p>Returned when the specified activity or workflow type was already deprecated.</p>
118
+ *
119
+ * @throws {@link UnknownResourceFault} (client fault)
120
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
121
+ *
122
+ * @throws {@link WorkflowExecutionAlreadyStartedFault} (client fault)
123
+ * <p>Returned by <a>StartWorkflowExecution</a> when an open execution with the same workflowId is already running in
124
+ * the specified domain.</p>
125
+ *
126
+ *
97
127
  */
98
128
  export declare class StartWorkflowExecutionCommand extends $Command<StartWorkflowExecutionCommandInput, StartWorkflowExecutionCommandOutput, SWFClientResolvedConfig> {
99
129
  readonly input: StartWorkflowExecutionCommandInput;
@@ -32,6 +32,19 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
32
32
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
33
33
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
34
34
  *
35
+ * @throws {@link LimitExceededFault} (client fault)
36
+ * <p>Returned by any operation if a system imposed limitation has been reached. To address this fault you should either clean up unused resources or increase the limit by contacting AWS.</p>
37
+ *
38
+ * @throws {@link OperationNotPermittedFault} (client fault)
39
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
40
+ *
41
+ * @throws {@link TooManyTagsFault} (client fault)
42
+ * <p>You've exceeded the number of tags allowed for a domain.</p>
43
+ *
44
+ * @throws {@link UnknownResourceFault} (client fault)
45
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
46
+ *
47
+ *
35
48
  */
36
49
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, SWFClientResolvedConfig> {
37
50
  readonly input: TagResourceCommandInput;
@@ -72,6 +72,13 @@ export interface TerminateWorkflowExecutionCommandOutput extends __MetadataBeare
72
72
  * @see {@link TerminateWorkflowExecutionCommandOutput} for command's `response` shape.
73
73
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
74
74
  *
75
+ * @throws {@link OperationNotPermittedFault} (client fault)
76
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
77
+ *
78
+ * @throws {@link UnknownResourceFault} (client fault)
79
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
80
+ *
81
+ *
75
82
  */
76
83
  export declare class TerminateWorkflowExecutionCommand extends $Command<TerminateWorkflowExecutionCommandInput, TerminateWorkflowExecutionCommandOutput, SWFClientResolvedConfig> {
77
84
  readonly input: TerminateWorkflowExecutionCommandInput;
@@ -70,6 +70,16 @@ export interface UndeprecateActivityTypeCommandOutput extends __MetadataBearer {
70
70
  * @see {@link UndeprecateActivityTypeCommandOutput} for command's `response` shape.
71
71
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
72
72
  *
73
+ * @throws {@link OperationNotPermittedFault} (client fault)
74
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
75
+ *
76
+ * @throws {@link TypeAlreadyExistsFault} (client fault)
77
+ * <p>Returned if the type already exists in the specified domain. You may get this fault if you are registering a type that is either already registered or deprecated, or if you undeprecate a type that is currently registered.</p>
78
+ *
79
+ * @throws {@link UnknownResourceFault} (client fault)
80
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
81
+ *
82
+ *
73
83
  */
74
84
  export declare class UndeprecateActivityTypeCommand extends $Command<UndeprecateActivityTypeCommandInput, UndeprecateActivityTypeCommandOutput, SWFClientResolvedConfig> {
75
85
  readonly input: UndeprecateActivityTypeCommandInput;
@@ -57,6 +57,16 @@ export interface UndeprecateDomainCommandOutput extends __MetadataBearer {
57
57
  * @see {@link UndeprecateDomainCommandOutput} for command's `response` shape.
58
58
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
59
59
  *
60
+ * @throws {@link DomainAlreadyExistsFault} (client fault)
61
+ * <p>Returned if the domain already exists. You may get this fault if you are registering a domain that is either already registered or deprecated, or if you undeprecate a domain that is currently registered.</p>
62
+ *
63
+ * @throws {@link OperationNotPermittedFault} (client fault)
64
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
65
+ *
66
+ * @throws {@link UnknownResourceFault} (client fault)
67
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
68
+ *
69
+ *
60
70
  */
61
71
  export declare class UndeprecateDomainCommand extends $Command<UndeprecateDomainCommandInput, UndeprecateDomainCommandOutput, SWFClientResolvedConfig> {
62
72
  readonly input: UndeprecateDomainCommandInput;
@@ -70,6 +70,16 @@ export interface UndeprecateWorkflowTypeCommandOutput extends __MetadataBearer {
70
70
  * @see {@link UndeprecateWorkflowTypeCommandOutput} for command's `response` shape.
71
71
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
72
72
  *
73
+ * @throws {@link OperationNotPermittedFault} (client fault)
74
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
75
+ *
76
+ * @throws {@link TypeAlreadyExistsFault} (client fault)
77
+ * <p>Returned if the type already exists in the specified domain. You may get this fault if you are registering a type that is either already registered or deprecated, or if you undeprecate a type that is currently registered.</p>
78
+ *
79
+ * @throws {@link UnknownResourceFault} (client fault)
80
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
81
+ *
82
+ *
73
83
  */
74
84
  export declare class UndeprecateWorkflowTypeCommand extends $Command<UndeprecateWorkflowTypeCommandInput, UndeprecateWorkflowTypeCommandOutput, SWFClientResolvedConfig> {
75
85
  readonly input: UndeprecateWorkflowTypeCommandInput;
@@ -29,6 +29,16 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
29
29
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
30
30
  * @see {@link SWFClientResolvedConfig | config} for SWFClient's `config` shape.
31
31
  *
32
+ * @throws {@link LimitExceededFault} (client fault)
33
+ * <p>Returned by any operation if a system imposed limitation has been reached. To address this fault you should either clean up unused resources or increase the limit by contacting AWS.</p>
34
+ *
35
+ * @throws {@link OperationNotPermittedFault} (client fault)
36
+ * <p>Returned when the caller doesn't have sufficient permissions to invoke the action.</p>
37
+ *
38
+ * @throws {@link UnknownResourceFault} (client fault)
39
+ * <p>Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, SWFClientResolvedConfig> {
34
44
  readonly input: UntagResourceCommandInput;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-swf",
3
3
  "description": "AWS SDK for JavaScript Swf Client for Node.js, Browser and React Native",
4
- "version": "3.288.0",
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.288.0",
24
- "@aws-sdk/config-resolver": "3.287.0",
25
- "@aws-sdk/credential-provider-node": "3.288.0",
26
- "@aws-sdk/fetch-http-handler": "3.282.0",
27
- "@aws-sdk/hash-node": "3.272.0",
28
- "@aws-sdk/invalid-dependency": "3.272.0",
29
- "@aws-sdk/middleware-content-length": "3.282.0",
30
- "@aws-sdk/middleware-endpoint": "3.282.0",
31
- "@aws-sdk/middleware-host-header": "3.282.0",
32
- "@aws-sdk/middleware-logger": "3.288.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.282.0",
34
- "@aws-sdk/middleware-retry": "3.287.0",
35
- "@aws-sdk/middleware-serde": "3.272.0",
36
- "@aws-sdk/middleware-signing": "3.282.0",
37
- "@aws-sdk/middleware-stack": "3.272.0",
38
- "@aws-sdk/middleware-user-agent": "3.282.0",
39
- "@aws-sdk/node-config-provider": "3.287.0",
40
- "@aws-sdk/node-http-handler": "3.282.0",
41
- "@aws-sdk/protocol-http": "3.282.0",
42
- "@aws-sdk/smithy-client": "3.279.0",
43
- "@aws-sdk/types": "3.272.0",
44
- "@aws-sdk/url-parser": "3.272.0",
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.279.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.287.0",
50
- "@aws-sdk/util-endpoints": "3.272.0",
51
- "@aws-sdk/util-retry": "3.272.0",
52
- "@aws-sdk/util-user-agent-browser": "3.282.0",
53
- "@aws-sdk/util-user-agent-node": "3.287.0",
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
  },