Skip to content

Commit b47d991

Browse files
committed
Update services based on release-2026-08-18 of AWS Go SDK
Reference: https://github.com/aws/aws-sdk-go-v2/releases/tag/release-2026-08-18
1 parent 79e203b commit b47d991

7 files changed

Lines changed: 441 additions & 11 deletions

.latest-tag-aws-sdk-go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
release-2026-08-17
1+
release-2026-08-18

src/aws_ec2.erl

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26514,6 +26514,14 @@ create_fpga_image(Client, Input, Options)
2651426514
%% the same
2651526515
%% Local Zone or in its parent Region.
2651626516
%%
26517+
%% If the source instance is on an Outpost that supports local snapshots, you
26518+
%% can create
26519+
%% the snapshots on the same Outpost or in the parent Region of that Outpost.
26520+
%% In this case,
26521+
%% you must use the `SnapshotLocation' parameter to specify where to
26522+
%% create the
26523+
%% snapshots.
26524+
%%
2651726525
%% For more information, see Create an Amazon EBS-backed AMI:
2651826526
%% https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/creating-an-ami-ebs.html
2651926527
%% in

src/aws_entityresolution.erl

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1307,19 +1307,22 @@
13071307
-type delete_id_mapping_workflow_errors() ::
13081308
validation_exception() |
13091309
throttling_exception() |
1310+
resource_not_found_exception() |
13101311
internal_server_exception() |
13111312
conflict_exception() |
13121313
access_denied_exception().
13131314

13141315
-type delete_id_namespace_errors() ::
13151316
validation_exception() |
13161317
throttling_exception() |
1318+
resource_not_found_exception() |
13171319
internal_server_exception() |
13181320
access_denied_exception().
13191321

13201322
-type delete_matching_workflow_errors() ::
13211323
validation_exception() |
13221324
throttling_exception() |
1325+
resource_not_found_exception() |
13231326
internal_server_exception() |
13241327
conflict_exception() |
13251328
access_denied_exception().
@@ -1335,6 +1338,7 @@
13351338
-type delete_schema_mapping_errors() ::
13361339
validation_exception() |
13371340
throttling_exception() |
1341+
resource_not_found_exception() |
13381342
internal_server_exception() |
13391343
conflict_exception() |
13401344
access_denied_exception().
@@ -1760,8 +1764,8 @@ create_schema_mapping(Client, Input0, Options0) ->
17601764

17611765
%% @doc Deletes the `IdMappingWorkflow' with a given name.
17621766
%%
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.
17651769
-spec delete_id_mapping_workflow(aws_client:aws_client(), binary() | list(), delete_id_mapping_workflow_input()) ->
17661770
{ok, delete_id_mapping_workflow_output(), tuple()} |
17671771
{error, any()} |
@@ -1796,6 +1800,9 @@ delete_id_mapping_workflow(Client, WorkflowName, Input0, Options0) ->
17961800
request(Client, Method, Path, Query_, CustomHeaders ++ Headers, Input, Options, SuccessStatusCode).
17971801

17981802
%% @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.
17991806
-spec delete_id_namespace(aws_client:aws_client(), binary() | list(), delete_id_namespace_input()) ->
18001807
{ok, delete_id_namespace_output(), tuple()} |
18011808
{error, any()} |
@@ -1831,8 +1838,8 @@ delete_id_namespace(Client, IdNamespaceName, Input0, Options0) ->
18311838

18321839
%% @doc Deletes the `MatchingWorkflow' with a given name.
18331840
%%
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.
18361843
-spec delete_matching_workflow(aws_client:aws_client(), binary() | list(), delete_matching_workflow_input()) ->
18371844
{ok, delete_matching_workflow_output(), tuple()} |
18381845
{error, any()} |
@@ -1902,10 +1909,10 @@ delete_policy_statement(Client, Arn, StatementId, Input0, Options0) ->
19021909

19031910
%% @doc Deletes the `SchemaMapping' with a given name.
19041911
%%
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'.
19091916
-spec delete_schema_mapping(aws_client:aws_client(), binary() | list(), delete_schema_mapping_input()) ->
19101917
{ok, delete_schema_mapping_output(), tuple()} |
19111918
{error, any()} |

0 commit comments

Comments
 (0)