@aws-sdk/client-swf 3.649.0 → 3.650.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 (43) hide show
  1. package/dist-cjs/index.js +39 -117
  2. package/dist-es/commands/CountClosedWorkflowExecutionsCommand.js +1 -3
  3. package/dist-es/commands/CountOpenWorkflowExecutionsCommand.js +1 -3
  4. package/dist-es/commands/CountPendingActivityTasksCommand.js +1 -3
  5. package/dist-es/commands/CountPendingDecisionTasksCommand.js +1 -3
  6. package/dist-es/commands/DeleteActivityTypeCommand.js +1 -3
  7. package/dist-es/commands/DeleteWorkflowTypeCommand.js +1 -3
  8. package/dist-es/commands/DeprecateActivityTypeCommand.js +1 -3
  9. package/dist-es/commands/DeprecateDomainCommand.js +1 -3
  10. package/dist-es/commands/DeprecateWorkflowTypeCommand.js +1 -3
  11. package/dist-es/commands/DescribeActivityTypeCommand.js +1 -3
  12. package/dist-es/commands/DescribeDomainCommand.js +1 -3
  13. package/dist-es/commands/DescribeWorkflowExecutionCommand.js +1 -3
  14. package/dist-es/commands/DescribeWorkflowTypeCommand.js +1 -3
  15. package/dist-es/commands/GetWorkflowExecutionHistoryCommand.js +1 -3
  16. package/dist-es/commands/ListActivityTypesCommand.js +1 -3
  17. package/dist-es/commands/ListClosedWorkflowExecutionsCommand.js +1 -3
  18. package/dist-es/commands/ListDomainsCommand.js +1 -3
  19. package/dist-es/commands/ListOpenWorkflowExecutionsCommand.js +1 -3
  20. package/dist-es/commands/ListTagsForResourceCommand.js +1 -3
  21. package/dist-es/commands/ListWorkflowTypesCommand.js +1 -3
  22. package/dist-es/commands/PollForActivityTaskCommand.js +1 -3
  23. package/dist-es/commands/PollForDecisionTaskCommand.js +1 -3
  24. package/dist-es/commands/RecordActivityTaskHeartbeatCommand.js +1 -3
  25. package/dist-es/commands/RegisterActivityTypeCommand.js +1 -3
  26. package/dist-es/commands/RegisterDomainCommand.js +1 -3
  27. package/dist-es/commands/RegisterWorkflowTypeCommand.js +1 -3
  28. package/dist-es/commands/RequestCancelWorkflowExecutionCommand.js +1 -3
  29. package/dist-es/commands/RespondActivityTaskCanceledCommand.js +1 -3
  30. package/dist-es/commands/RespondActivityTaskCompletedCommand.js +1 -3
  31. package/dist-es/commands/RespondActivityTaskFailedCommand.js +1 -3
  32. package/dist-es/commands/RespondDecisionTaskCompletedCommand.js +1 -3
  33. package/dist-es/commands/SignalWorkflowExecutionCommand.js +1 -3
  34. package/dist-es/commands/StartWorkflowExecutionCommand.js +1 -3
  35. package/dist-es/commands/TagResourceCommand.js +1 -3
  36. package/dist-es/commands/TerminateWorkflowExecutionCommand.js +1 -3
  37. package/dist-es/commands/UndeprecateActivityTypeCommand.js +1 -3
  38. package/dist-es/commands/UndeprecateDomainCommand.js +1 -3
  39. package/dist-es/commands/UndeprecateWorkflowTypeCommand.js +1 -3
  40. package/dist-es/commands/UntagResourceCommand.js +1 -3
  41. package/dist-es/endpoint/endpointResolver.js +7 -3
  42. package/package.json +4 -4
  43. package/dist-types/tsdoc-metadata.json +0 -11
package/dist-cjs/index.js CHANGED
@@ -1753,9 +1753,7 @@ function sharedHeaders(operation) {
1753
1753
  __name(sharedHeaders, "sharedHeaders");
1754
1754
 
1755
1755
  // src/commands/CountClosedWorkflowExecutionsCommand.ts
1756
- var _CountClosedWorkflowExecutionsCommand = class _CountClosedWorkflowExecutionsCommand extends import_smithy_client.Command.classBuilder().ep({
1757
- ...commonParams
1758
- }).m(function(Command, cs, config, o) {
1756
+ var _CountClosedWorkflowExecutionsCommand = class _CountClosedWorkflowExecutionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1759
1757
  return [
1760
1758
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1761
1759
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1769,9 +1767,7 @@ var CountClosedWorkflowExecutionsCommand = _CountClosedWorkflowExecutionsCommand
1769
1767
 
1770
1768
 
1771
1769
 
1772
- var _CountOpenWorkflowExecutionsCommand = class _CountOpenWorkflowExecutionsCommand extends import_smithy_client.Command.classBuilder().ep({
1773
- ...commonParams
1774
- }).m(function(Command, cs, config, o) {
1770
+ var _CountOpenWorkflowExecutionsCommand = class _CountOpenWorkflowExecutionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1775
1771
  return [
1776
1772
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1777
1773
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1785,9 +1781,7 @@ var CountOpenWorkflowExecutionsCommand = _CountOpenWorkflowExecutionsCommand;
1785
1781
 
1786
1782
 
1787
1783
 
1788
- var _CountPendingActivityTasksCommand = class _CountPendingActivityTasksCommand extends import_smithy_client.Command.classBuilder().ep({
1789
- ...commonParams
1790
- }).m(function(Command, cs, config, o) {
1784
+ var _CountPendingActivityTasksCommand = class _CountPendingActivityTasksCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1791
1785
  return [
1792
1786
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1793
1787
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1801,9 +1795,7 @@ var CountPendingActivityTasksCommand = _CountPendingActivityTasksCommand;
1801
1795
 
1802
1796
 
1803
1797
 
1804
- var _CountPendingDecisionTasksCommand = class _CountPendingDecisionTasksCommand extends import_smithy_client.Command.classBuilder().ep({
1805
- ...commonParams
1806
- }).m(function(Command, cs, config, o) {
1798
+ var _CountPendingDecisionTasksCommand = class _CountPendingDecisionTasksCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1807
1799
  return [
1808
1800
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1809
1801
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1817,9 +1809,7 @@ var CountPendingDecisionTasksCommand = _CountPendingDecisionTasksCommand;
1817
1809
 
1818
1810
 
1819
1811
 
1820
- var _DeleteActivityTypeCommand = class _DeleteActivityTypeCommand extends import_smithy_client.Command.classBuilder().ep({
1821
- ...commonParams
1822
- }).m(function(Command, cs, config, o) {
1812
+ var _DeleteActivityTypeCommand = class _DeleteActivityTypeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1823
1813
  return [
1824
1814
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1825
1815
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1833,9 +1823,7 @@ var DeleteActivityTypeCommand = _DeleteActivityTypeCommand;
1833
1823
 
1834
1824
 
1835
1825
 
1836
- var _DeleteWorkflowTypeCommand = class _DeleteWorkflowTypeCommand extends import_smithy_client.Command.classBuilder().ep({
1837
- ...commonParams
1838
- }).m(function(Command, cs, config, o) {
1826
+ var _DeleteWorkflowTypeCommand = class _DeleteWorkflowTypeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1839
1827
  return [
1840
1828
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1841
1829
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1849,9 +1837,7 @@ var DeleteWorkflowTypeCommand = _DeleteWorkflowTypeCommand;
1849
1837
 
1850
1838
 
1851
1839
 
1852
- var _DeprecateActivityTypeCommand = class _DeprecateActivityTypeCommand extends import_smithy_client.Command.classBuilder().ep({
1853
- ...commonParams
1854
- }).m(function(Command, cs, config, o) {
1840
+ var _DeprecateActivityTypeCommand = class _DeprecateActivityTypeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1855
1841
  return [
1856
1842
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1857
1843
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1865,9 +1851,7 @@ var DeprecateActivityTypeCommand = _DeprecateActivityTypeCommand;
1865
1851
 
1866
1852
 
1867
1853
 
1868
- var _DeprecateDomainCommand = class _DeprecateDomainCommand extends import_smithy_client.Command.classBuilder().ep({
1869
- ...commonParams
1870
- }).m(function(Command, cs, config, o) {
1854
+ var _DeprecateDomainCommand = class _DeprecateDomainCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1871
1855
  return [
1872
1856
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1873
1857
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1881,9 +1865,7 @@ var DeprecateDomainCommand = _DeprecateDomainCommand;
1881
1865
 
1882
1866
 
1883
1867
 
1884
- var _DeprecateWorkflowTypeCommand = class _DeprecateWorkflowTypeCommand extends import_smithy_client.Command.classBuilder().ep({
1885
- ...commonParams
1886
- }).m(function(Command, cs, config, o) {
1868
+ var _DeprecateWorkflowTypeCommand = class _DeprecateWorkflowTypeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1887
1869
  return [
1888
1870
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1889
1871
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1897,9 +1879,7 @@ var DeprecateWorkflowTypeCommand = _DeprecateWorkflowTypeCommand;
1897
1879
 
1898
1880
 
1899
1881
 
1900
- var _DescribeActivityTypeCommand = class _DescribeActivityTypeCommand extends import_smithy_client.Command.classBuilder().ep({
1901
- ...commonParams
1902
- }).m(function(Command, cs, config, o) {
1882
+ var _DescribeActivityTypeCommand = class _DescribeActivityTypeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1903
1883
  return [
1904
1884
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1905
1885
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1913,9 +1893,7 @@ var DescribeActivityTypeCommand = _DescribeActivityTypeCommand;
1913
1893
 
1914
1894
 
1915
1895
 
1916
- var _DescribeDomainCommand = class _DescribeDomainCommand extends import_smithy_client.Command.classBuilder().ep({
1917
- ...commonParams
1918
- }).m(function(Command, cs, config, o) {
1896
+ var _DescribeDomainCommand = class _DescribeDomainCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1919
1897
  return [
1920
1898
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1921
1899
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1929,9 +1907,7 @@ var DescribeDomainCommand = _DescribeDomainCommand;
1929
1907
 
1930
1908
 
1931
1909
 
1932
- var _DescribeWorkflowExecutionCommand = class _DescribeWorkflowExecutionCommand extends import_smithy_client.Command.classBuilder().ep({
1933
- ...commonParams
1934
- }).m(function(Command, cs, config, o) {
1910
+ var _DescribeWorkflowExecutionCommand = class _DescribeWorkflowExecutionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1935
1911
  return [
1936
1912
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1937
1913
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1945,9 +1921,7 @@ var DescribeWorkflowExecutionCommand = _DescribeWorkflowExecutionCommand;
1945
1921
 
1946
1922
 
1947
1923
 
1948
- var _DescribeWorkflowTypeCommand = class _DescribeWorkflowTypeCommand extends import_smithy_client.Command.classBuilder().ep({
1949
- ...commonParams
1950
- }).m(function(Command, cs, config, o) {
1924
+ var _DescribeWorkflowTypeCommand = class _DescribeWorkflowTypeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1951
1925
  return [
1952
1926
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1953
1927
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1961,9 +1935,7 @@ var DescribeWorkflowTypeCommand = _DescribeWorkflowTypeCommand;
1961
1935
 
1962
1936
 
1963
1937
 
1964
- var _GetWorkflowExecutionHistoryCommand = class _GetWorkflowExecutionHistoryCommand extends import_smithy_client.Command.classBuilder().ep({
1965
- ...commonParams
1966
- }).m(function(Command, cs, config, o) {
1938
+ var _GetWorkflowExecutionHistoryCommand = class _GetWorkflowExecutionHistoryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1967
1939
  return [
1968
1940
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1969
1941
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1977,9 +1949,7 @@ var GetWorkflowExecutionHistoryCommand = _GetWorkflowExecutionHistoryCommand;
1977
1949
 
1978
1950
 
1979
1951
 
1980
- var _ListActivityTypesCommand = class _ListActivityTypesCommand extends import_smithy_client.Command.classBuilder().ep({
1981
- ...commonParams
1982
- }).m(function(Command, cs, config, o) {
1952
+ var _ListActivityTypesCommand = class _ListActivityTypesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1983
1953
  return [
1984
1954
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1985
1955
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -1993,9 +1963,7 @@ var ListActivityTypesCommand = _ListActivityTypesCommand;
1993
1963
 
1994
1964
 
1995
1965
 
1996
- var _ListClosedWorkflowExecutionsCommand = class _ListClosedWorkflowExecutionsCommand extends import_smithy_client.Command.classBuilder().ep({
1997
- ...commonParams
1998
- }).m(function(Command, cs, config, o) {
1966
+ var _ListClosedWorkflowExecutionsCommand = class _ListClosedWorkflowExecutionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1999
1967
  return [
2000
1968
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2001
1969
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2009,9 +1977,7 @@ var ListClosedWorkflowExecutionsCommand = _ListClosedWorkflowExecutionsCommand;
2009
1977
 
2010
1978
 
2011
1979
 
2012
- var _ListDomainsCommand = class _ListDomainsCommand extends import_smithy_client.Command.classBuilder().ep({
2013
- ...commonParams
2014
- }).m(function(Command, cs, config, o) {
1980
+ var _ListDomainsCommand = class _ListDomainsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2015
1981
  return [
2016
1982
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2017
1983
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2025,9 +1991,7 @@ var ListDomainsCommand = _ListDomainsCommand;
2025
1991
 
2026
1992
 
2027
1993
 
2028
- var _ListOpenWorkflowExecutionsCommand = class _ListOpenWorkflowExecutionsCommand extends import_smithy_client.Command.classBuilder().ep({
2029
- ...commonParams
2030
- }).m(function(Command, cs, config, o) {
1994
+ var _ListOpenWorkflowExecutionsCommand = class _ListOpenWorkflowExecutionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2031
1995
  return [
2032
1996
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2033
1997
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2041,9 +2005,7 @@ var ListOpenWorkflowExecutionsCommand = _ListOpenWorkflowExecutionsCommand;
2041
2005
 
2042
2006
 
2043
2007
 
2044
- var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep({
2045
- ...commonParams
2046
- }).m(function(Command, cs, config, o) {
2008
+ var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2047
2009
  return [
2048
2010
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2049
2011
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2057,9 +2019,7 @@ var ListTagsForResourceCommand = _ListTagsForResourceCommand;
2057
2019
 
2058
2020
 
2059
2021
 
2060
- var _ListWorkflowTypesCommand = class _ListWorkflowTypesCommand extends import_smithy_client.Command.classBuilder().ep({
2061
- ...commonParams
2062
- }).m(function(Command, cs, config, o) {
2022
+ var _ListWorkflowTypesCommand = class _ListWorkflowTypesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2063
2023
  return [
2064
2024
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2065
2025
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2073,9 +2033,7 @@ var ListWorkflowTypesCommand = _ListWorkflowTypesCommand;
2073
2033
 
2074
2034
 
2075
2035
 
2076
- var _PollForActivityTaskCommand = class _PollForActivityTaskCommand extends import_smithy_client.Command.classBuilder().ep({
2077
- ...commonParams
2078
- }).m(function(Command, cs, config, o) {
2036
+ var _PollForActivityTaskCommand = class _PollForActivityTaskCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2079
2037
  return [
2080
2038
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2081
2039
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2089,9 +2047,7 @@ var PollForActivityTaskCommand = _PollForActivityTaskCommand;
2089
2047
 
2090
2048
 
2091
2049
 
2092
- var _PollForDecisionTaskCommand = class _PollForDecisionTaskCommand extends import_smithy_client.Command.classBuilder().ep({
2093
- ...commonParams
2094
- }).m(function(Command, cs, config, o) {
2050
+ var _PollForDecisionTaskCommand = class _PollForDecisionTaskCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2095
2051
  return [
2096
2052
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2097
2053
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2105,9 +2061,7 @@ var PollForDecisionTaskCommand = _PollForDecisionTaskCommand;
2105
2061
 
2106
2062
 
2107
2063
 
2108
- var _RecordActivityTaskHeartbeatCommand = class _RecordActivityTaskHeartbeatCommand extends import_smithy_client.Command.classBuilder().ep({
2109
- ...commonParams
2110
- }).m(function(Command, cs, config, o) {
2064
+ var _RecordActivityTaskHeartbeatCommand = class _RecordActivityTaskHeartbeatCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2111
2065
  return [
2112
2066
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2113
2067
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2121,9 +2075,7 @@ var RecordActivityTaskHeartbeatCommand = _RecordActivityTaskHeartbeatCommand;
2121
2075
 
2122
2076
 
2123
2077
 
2124
- var _RegisterActivityTypeCommand = class _RegisterActivityTypeCommand extends import_smithy_client.Command.classBuilder().ep({
2125
- ...commonParams
2126
- }).m(function(Command, cs, config, o) {
2078
+ var _RegisterActivityTypeCommand = class _RegisterActivityTypeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2127
2079
  return [
2128
2080
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2129
2081
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2137,9 +2089,7 @@ var RegisterActivityTypeCommand = _RegisterActivityTypeCommand;
2137
2089
 
2138
2090
 
2139
2091
 
2140
- var _RegisterDomainCommand = class _RegisterDomainCommand extends import_smithy_client.Command.classBuilder().ep({
2141
- ...commonParams
2142
- }).m(function(Command, cs, config, o) {
2092
+ var _RegisterDomainCommand = class _RegisterDomainCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2143
2093
  return [
2144
2094
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2145
2095
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2153,9 +2103,7 @@ var RegisterDomainCommand = _RegisterDomainCommand;
2153
2103
 
2154
2104
 
2155
2105
 
2156
- var _RegisterWorkflowTypeCommand = class _RegisterWorkflowTypeCommand extends import_smithy_client.Command.classBuilder().ep({
2157
- ...commonParams
2158
- }).m(function(Command, cs, config, o) {
2106
+ var _RegisterWorkflowTypeCommand = class _RegisterWorkflowTypeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2159
2107
  return [
2160
2108
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2161
2109
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2169,9 +2117,7 @@ var RegisterWorkflowTypeCommand = _RegisterWorkflowTypeCommand;
2169
2117
 
2170
2118
 
2171
2119
 
2172
- var _RequestCancelWorkflowExecutionCommand = class _RequestCancelWorkflowExecutionCommand extends import_smithy_client.Command.classBuilder().ep({
2173
- ...commonParams
2174
- }).m(function(Command, cs, config, o) {
2120
+ var _RequestCancelWorkflowExecutionCommand = class _RequestCancelWorkflowExecutionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2175
2121
  return [
2176
2122
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2177
2123
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2185,9 +2131,7 @@ var RequestCancelWorkflowExecutionCommand = _RequestCancelWorkflowExecutionComma
2185
2131
 
2186
2132
 
2187
2133
 
2188
- var _RespondActivityTaskCanceledCommand = class _RespondActivityTaskCanceledCommand extends import_smithy_client.Command.classBuilder().ep({
2189
- ...commonParams
2190
- }).m(function(Command, cs, config, o) {
2134
+ var _RespondActivityTaskCanceledCommand = class _RespondActivityTaskCanceledCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2191
2135
  return [
2192
2136
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2193
2137
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2201,9 +2145,7 @@ var RespondActivityTaskCanceledCommand = _RespondActivityTaskCanceledCommand;
2201
2145
 
2202
2146
 
2203
2147
 
2204
- var _RespondActivityTaskCompletedCommand = class _RespondActivityTaskCompletedCommand extends import_smithy_client.Command.classBuilder().ep({
2205
- ...commonParams
2206
- }).m(function(Command, cs, config, o) {
2148
+ var _RespondActivityTaskCompletedCommand = class _RespondActivityTaskCompletedCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2207
2149
  return [
2208
2150
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2209
2151
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2217,9 +2159,7 @@ var RespondActivityTaskCompletedCommand = _RespondActivityTaskCompletedCommand;
2217
2159
 
2218
2160
 
2219
2161
 
2220
- var _RespondActivityTaskFailedCommand = class _RespondActivityTaskFailedCommand extends import_smithy_client.Command.classBuilder().ep({
2221
- ...commonParams
2222
- }).m(function(Command, cs, config, o) {
2162
+ var _RespondActivityTaskFailedCommand = class _RespondActivityTaskFailedCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2223
2163
  return [
2224
2164
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2225
2165
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2233,9 +2173,7 @@ var RespondActivityTaskFailedCommand = _RespondActivityTaskFailedCommand;
2233
2173
 
2234
2174
 
2235
2175
 
2236
- var _RespondDecisionTaskCompletedCommand = class _RespondDecisionTaskCompletedCommand extends import_smithy_client.Command.classBuilder().ep({
2237
- ...commonParams
2238
- }).m(function(Command, cs, config, o) {
2176
+ var _RespondDecisionTaskCompletedCommand = class _RespondDecisionTaskCompletedCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2239
2177
  return [
2240
2178
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2241
2179
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2249,9 +2187,7 @@ var RespondDecisionTaskCompletedCommand = _RespondDecisionTaskCompletedCommand;
2249
2187
 
2250
2188
 
2251
2189
 
2252
- var _SignalWorkflowExecutionCommand = class _SignalWorkflowExecutionCommand extends import_smithy_client.Command.classBuilder().ep({
2253
- ...commonParams
2254
- }).m(function(Command, cs, config, o) {
2190
+ var _SignalWorkflowExecutionCommand = class _SignalWorkflowExecutionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2255
2191
  return [
2256
2192
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2257
2193
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2265,9 +2201,7 @@ var SignalWorkflowExecutionCommand = _SignalWorkflowExecutionCommand;
2265
2201
 
2266
2202
 
2267
2203
 
2268
- var _StartWorkflowExecutionCommand = class _StartWorkflowExecutionCommand extends import_smithy_client.Command.classBuilder().ep({
2269
- ...commonParams
2270
- }).m(function(Command, cs, config, o) {
2204
+ var _StartWorkflowExecutionCommand = class _StartWorkflowExecutionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2271
2205
  return [
2272
2206
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2273
2207
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2281,9 +2215,7 @@ var StartWorkflowExecutionCommand = _StartWorkflowExecutionCommand;
2281
2215
 
2282
2216
 
2283
2217
 
2284
- var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
2285
- ...commonParams
2286
- }).m(function(Command, cs, config, o) {
2218
+ var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2287
2219
  return [
2288
2220
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2289
2221
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2297,9 +2229,7 @@ var TagResourceCommand = _TagResourceCommand;
2297
2229
 
2298
2230
 
2299
2231
 
2300
- var _TerminateWorkflowExecutionCommand = class _TerminateWorkflowExecutionCommand extends import_smithy_client.Command.classBuilder().ep({
2301
- ...commonParams
2302
- }).m(function(Command, cs, config, o) {
2232
+ var _TerminateWorkflowExecutionCommand = class _TerminateWorkflowExecutionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2303
2233
  return [
2304
2234
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2305
2235
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2313,9 +2243,7 @@ var TerminateWorkflowExecutionCommand = _TerminateWorkflowExecutionCommand;
2313
2243
 
2314
2244
 
2315
2245
 
2316
- var _UndeprecateActivityTypeCommand = class _UndeprecateActivityTypeCommand extends import_smithy_client.Command.classBuilder().ep({
2317
- ...commonParams
2318
- }).m(function(Command, cs, config, o) {
2246
+ var _UndeprecateActivityTypeCommand = class _UndeprecateActivityTypeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2319
2247
  return [
2320
2248
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2321
2249
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2329,9 +2257,7 @@ var UndeprecateActivityTypeCommand = _UndeprecateActivityTypeCommand;
2329
2257
 
2330
2258
 
2331
2259
 
2332
- var _UndeprecateDomainCommand = class _UndeprecateDomainCommand extends import_smithy_client.Command.classBuilder().ep({
2333
- ...commonParams
2334
- }).m(function(Command, cs, config, o) {
2260
+ var _UndeprecateDomainCommand = class _UndeprecateDomainCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2335
2261
  return [
2336
2262
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2337
2263
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2345,9 +2271,7 @@ var UndeprecateDomainCommand = _UndeprecateDomainCommand;
2345
2271
 
2346
2272
 
2347
2273
 
2348
- var _UndeprecateWorkflowTypeCommand = class _UndeprecateWorkflowTypeCommand extends import_smithy_client.Command.classBuilder().ep({
2349
- ...commonParams
2350
- }).m(function(Command, cs, config, o) {
2274
+ var _UndeprecateWorkflowTypeCommand = class _UndeprecateWorkflowTypeCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2351
2275
  return [
2352
2276
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2353
2277
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -2361,9 +2285,7 @@ var UndeprecateWorkflowTypeCommand = _UndeprecateWorkflowTypeCommand;
2361
2285
 
2362
2286
 
2363
2287
 
2364
- var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
2365
- ...commonParams
2366
- }).m(function(Command, cs, config, o) {
2288
+ var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2367
2289
  return [
2368
2290
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2369
2291
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
@@ -6,9 +6,7 @@ import { de_CountClosedWorkflowExecutionsCommand, se_CountClosedWorkflowExecutio
6
6
  export { $Command };
7
7
  export class CountClosedWorkflowExecutionsCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_CountOpenWorkflowExecutionsCommand, se_CountOpenWorkflowExecutionsCo
6
6
  export { $Command };
7
7
  export class CountOpenWorkflowExecutionsCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_CountPendingActivityTasksCommand, se_CountPendingActivityTasksComman
6
6
  export { $Command };
7
7
  export class CountPendingActivityTasksCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_CountPendingDecisionTasksCommand, se_CountPendingDecisionTasksComman
6
6
  export { $Command };
7
7
  export class CountPendingDecisionTasksCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_DeleteActivityTypeCommand, se_DeleteActivityTypeCommand } from "../p
6
6
  export { $Command };
7
7
  export class DeleteActivityTypeCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_DeleteWorkflowTypeCommand, se_DeleteWorkflowTypeCommand } from "../p
6
6
  export { $Command };
7
7
  export class DeleteWorkflowTypeCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_DeprecateActivityTypeCommand, se_DeprecateActivityTypeCommand } from
6
6
  export { $Command };
7
7
  export class DeprecateActivityTypeCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_DeprecateDomainCommand, se_DeprecateDomainCommand } from "../protoco
6
6
  export { $Command };
7
7
  export class DeprecateDomainCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_DeprecateWorkflowTypeCommand, se_DeprecateWorkflowTypeCommand } from
6
6
  export { $Command };
7
7
  export class DeprecateWorkflowTypeCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_DescribeActivityTypeCommand, se_DescribeActivityTypeCommand } from "
6
6
  export { $Command };
7
7
  export class DescribeActivityTypeCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_DescribeDomainCommand, se_DescribeDomainCommand } from "../protocols
6
6
  export { $Command };
7
7
  export class DescribeDomainCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_DescribeWorkflowExecutionCommand, se_DescribeWorkflowExecutionComman
6
6
  export { $Command };
7
7
  export class DescribeWorkflowExecutionCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_DescribeWorkflowTypeCommand, se_DescribeWorkflowTypeCommand } from "
6
6
  export { $Command };
7
7
  export class DescribeWorkflowTypeCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_GetWorkflowExecutionHistoryCommand, se_GetWorkflowExecutionHistoryCo
6
6
  export { $Command };
7
7
  export class GetWorkflowExecutionHistoryCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_ListActivityTypesCommand, se_ListActivityTypesCommand } from "../pro
6
6
  export { $Command };
7
7
  export class ListActivityTypesCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_ListClosedWorkflowExecutionsCommand, se_ListClosedWorkflowExecutions
6
6
  export { $Command };
7
7
  export class ListClosedWorkflowExecutionsCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_ListDomainsCommand, se_ListDomainsCommand } from "../protocols/Aws_j
6
6
  export { $Command };
7
7
  export class ListDomainsCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_ListOpenWorkflowExecutionsCommand, se_ListOpenWorkflowExecutionsComm
6
6
  export { $Command };
7
7
  export class ListOpenWorkflowExecutionsCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "..
6
6
  export { $Command };
7
7
  export class ListTagsForResourceCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_ListWorkflowTypesCommand, se_ListWorkflowTypesCommand } from "../pro
6
6
  export { $Command };
7
7
  export class ListWorkflowTypesCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_PollForActivityTaskCommand, se_PollForActivityTaskCommand } from "..
6
6
  export { $Command };
7
7
  export class PollForActivityTaskCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_PollForDecisionTaskCommand, se_PollForDecisionTaskCommand } from "..
6
6
  export { $Command };
7
7
  export class PollForDecisionTaskCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_RecordActivityTaskHeartbeatCommand, se_RecordActivityTaskHeartbeatCo
6
6
  export { $Command };
7
7
  export class RecordActivityTaskHeartbeatCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_RegisterActivityTypeCommand, se_RegisterActivityTypeCommand } from "
6
6
  export { $Command };
7
7
  export class RegisterActivityTypeCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_RegisterDomainCommand, se_RegisterDomainCommand } from "../protocols
6
6
  export { $Command };
7
7
  export class RegisterDomainCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_RegisterWorkflowTypeCommand, se_RegisterWorkflowTypeCommand } from "
6
6
  export { $Command };
7
7
  export class RegisterWorkflowTypeCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_RequestCancelWorkflowExecutionCommand, se_RequestCancelWorkflowExecu
6
6
  export { $Command };
7
7
  export class RequestCancelWorkflowExecutionCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_RespondActivityTaskCanceledCommand, se_RespondActivityTaskCanceledCo
6
6
  export { $Command };
7
7
  export class RespondActivityTaskCanceledCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_RespondActivityTaskCompletedCommand, se_RespondActivityTaskCompleted
6
6
  export { $Command };
7
7
  export class RespondActivityTaskCompletedCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_RespondActivityTaskFailedCommand, se_RespondActivityTaskFailedComman
6
6
  export { $Command };
7
7
  export class RespondActivityTaskFailedCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_RespondDecisionTaskCompletedCommand, se_RespondDecisionTaskCompleted
6
6
  export { $Command };
7
7
  export class RespondDecisionTaskCompletedCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_SignalWorkflowExecutionCommand, se_SignalWorkflowExecutionCommand }
6
6
  export { $Command };
7
7
  export class SignalWorkflowExecutionCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_StartWorkflowExecutionCommand, se_StartWorkflowExecutionCommand } fr
6
6
  export { $Command };
7
7
  export class StartWorkflowExecutionCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_j
6
6
  export { $Command };
7
7
  export class TagResourceCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_TerminateWorkflowExecutionCommand, se_TerminateWorkflowExecutionComm
6
6
  export { $Command };
7
7
  export class TerminateWorkflowExecutionCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_UndeprecateActivityTypeCommand, se_UndeprecateActivityTypeCommand }
6
6
  export { $Command };
7
7
  export class UndeprecateActivityTypeCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_UndeprecateDomainCommand, se_UndeprecateDomainCommand } from "../pro
6
6
  export { $Command };
7
7
  export class UndeprecateDomainCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_UndeprecateWorkflowTypeCommand, se_UndeprecateWorkflowTypeCommand }
6
6
  export { $Command };
7
7
  export class UndeprecateWorkflowTypeCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/A
6
6
  export { $Command };
7
7
  export class UntagResourceCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -1,10 +1,14 @@
1
1
  import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
2
- import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
2
+ import { customEndpointFunctions, EndpointCache, resolveEndpoint } from "@smithy/util-endpoints";
3
3
  import { ruleSet } from "./ruleset";
4
+ const cache = new EndpointCache({
5
+ size: 50,
6
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
7
+ });
4
8
  export const defaultEndpointResolver = (endpointParams, context = {}) => {
5
- return resolveEndpoint(ruleSet, {
9
+ return cache.get(endpointParams, () => resolveEndpoint(ruleSet, {
6
10
  endpointParams: endpointParams,
7
11
  logger: context.logger,
8
- });
12
+ }));
9
13
  };
10
14
  customEndpointFunctions.aws = awsEndpointFunctions;
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.649.0",
4
+ "version": "3.650.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-swf",
@@ -20,10 +20,10 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.649.0",
24
- "@aws-sdk/client-sts": "3.649.0",
23
+ "@aws-sdk/client-sso-oidc": "3.650.0",
24
+ "@aws-sdk/client-sts": "3.650.0",
25
25
  "@aws-sdk/core": "3.649.0",
26
- "@aws-sdk/credential-provider-node": "3.649.0",
26
+ "@aws-sdk/credential-provider-node": "3.650.0",
27
27
  "@aws-sdk/middleware-host-header": "3.649.0",
28
28
  "@aws-sdk/middleware-logger": "3.649.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.649.0",
@@ -1,11 +0,0 @@
1
- // This file is read by tools that parse documentation comments conforming to the TSDoc standard.
2
- // It should be published with your NPM package. It should not be tracked by Git.
3
- {
4
- "tsdocVersion": "0.12",
5
- "toolPackages": [
6
- {
7
- "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.34.4"
9
- }
10
- ]
11
- }