|
1307 | 1307 | -type delete_id_mapping_workflow_errors() :: |
1308 | 1308 | validation_exception() | |
1309 | 1309 | throttling_exception() | |
| 1310 | + resource_not_found_exception() | |
1310 | 1311 | internal_server_exception() | |
1311 | 1312 | conflict_exception() | |
1312 | 1313 | access_denied_exception(). |
1313 | 1314 |
|
1314 | 1315 | -type delete_id_namespace_errors() :: |
1315 | 1316 | validation_exception() | |
1316 | 1317 | throttling_exception() | |
| 1318 | + resource_not_found_exception() | |
1317 | 1319 | internal_server_exception() | |
1318 | 1320 | access_denied_exception(). |
1319 | 1321 |
|
1320 | 1322 | -type delete_matching_workflow_errors() :: |
1321 | 1323 | validation_exception() | |
1322 | 1324 | throttling_exception() | |
| 1325 | + resource_not_found_exception() | |
1323 | 1326 | internal_server_exception() | |
1324 | 1327 | conflict_exception() | |
1325 | 1328 | access_denied_exception(). |
|
1335 | 1338 | -type delete_schema_mapping_errors() :: |
1336 | 1339 | validation_exception() | |
1337 | 1340 | throttling_exception() | |
| 1341 | + resource_not_found_exception() | |
1338 | 1342 | internal_server_exception() | |
1339 | 1343 | conflict_exception() | |
1340 | 1344 | access_denied_exception(). |
@@ -1760,8 +1764,8 @@ create_schema_mapping(Client, Input0, Options0) -> |
1760 | 1764 |
|
1761 | 1765 | %% @doc Deletes the `IdMappingWorkflow' with a given name. |
1762 | 1766 | %% |
1763 | | -%% This operation will succeed even if a workflow with the given name does |
1764 | | -%% not exist. |
| 1767 | +%% This operation returns a `ResourceNotFoundException' if a workflow |
| 1768 | +%% with the given name does not exist. |
1765 | 1769 | -spec delete_id_mapping_workflow(aws_client:aws_client(), binary() | list(), delete_id_mapping_workflow_input()) -> |
1766 | 1770 | {ok, delete_id_mapping_workflow_output(), tuple()} | |
1767 | 1771 | {error, any()} | |
@@ -1796,6 +1800,9 @@ delete_id_mapping_workflow(Client, WorkflowName, Input0, Options0) -> |
1796 | 1800 | request(Client, Method, Path, Query_, CustomHeaders ++ Headers, Input, Options, SuccessStatusCode). |
1797 | 1801 |
|
1798 | 1802 | %% @doc Deletes the `IdNamespace' with a given name. |
| 1803 | +%% |
| 1804 | +%% This operation returns a `ResourceNotFoundException' if an ID |
| 1805 | +%% namespace with the given name does not exist. |
1799 | 1806 | -spec delete_id_namespace(aws_client:aws_client(), binary() | list(), delete_id_namespace_input()) -> |
1800 | 1807 | {ok, delete_id_namespace_output(), tuple()} | |
1801 | 1808 | {error, any()} | |
@@ -1831,8 +1838,8 @@ delete_id_namespace(Client, IdNamespaceName, Input0, Options0) -> |
1831 | 1838 |
|
1832 | 1839 | %% @doc Deletes the `MatchingWorkflow' with a given name. |
1833 | 1840 | %% |
1834 | | -%% This operation will succeed even if a workflow with the given name does |
1835 | | -%% not exist. |
| 1841 | +%% This operation returns a `ResourceNotFoundException' if a workflow |
| 1842 | +%% with the given name does not exist. |
1836 | 1843 | -spec delete_matching_workflow(aws_client:aws_client(), binary() | list(), delete_matching_workflow_input()) -> |
1837 | 1844 | {ok, delete_matching_workflow_output(), tuple()} | |
1838 | 1845 | {error, any()} | |
@@ -1902,10 +1909,10 @@ delete_policy_statement(Client, Arn, StatementId, Input0, Options0) -> |
1902 | 1909 |
|
1903 | 1910 | %% @doc Deletes the `SchemaMapping' with a given name. |
1904 | 1911 | %% |
1905 | | -%% This operation will succeed even if a schema with the given name does not |
1906 | | -%% exist. This operation will fail if there is a `MatchingWorkflow' |
1907 | | -%% object that references the `SchemaMapping' in the workflow's |
1908 | | -%% `InputSourceConfig'. |
| 1912 | +%% This operation returns a `ResourceNotFoundException' if a schema with |
| 1913 | +%% the given name does not exist. This operation will fail if there is a |
| 1914 | +%% `MatchingWorkflow' object that references the `SchemaMapping' in |
| 1915 | +%% the workflow's `InputSourceConfig'. |
1909 | 1916 | -spec delete_schema_mapping(aws_client:aws_client(), binary() | list(), delete_schema_mapping_input()) -> |
1910 | 1917 | {ok, delete_schema_mapping_output(), tuple()} | |
1911 | 1918 | {error, any()} | |
|
0 commit comments