Skip to content

Commit 07d3866

Browse files
committed
Update services based on release-2024-10-15 of AWS Go SDK
Reference: https://github.com/aws/aws-sdk-go-v2/releases/tag/release-2024-10-15
1 parent fc96c80 commit 07d3866

File tree

9 files changed

+875
-523
lines changed

9 files changed

+875
-523
lines changed

.latest-tag-aws-sdk-go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
release-2024-10-14
1+
release-2024-10-15

lib/aws/generated/amplify.ex

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -496,6 +496,8 @@ defmodule AWS.Amplify do
496496
"jobArn" => String.t(),
497497
"jobId" => String.t(),
498498
"jobType" => list(any()),
499+
"sourceUrl" => String.t(),
500+
"sourceUrlType" => list(any()),
499501
"startTime" => non_neg_integer(),
500502
"status" => list(any())
501503
}
@@ -1266,7 +1268,8 @@ defmodule AWS.Amplify do
12661268
12671269
start_deployment_request() :: %{
12681270
optional("jobId") => String.t(),
1269-
optional("sourceUrl") => String.t()
1271+
optional("sourceUrl") => String.t(),
1272+
optional("sourceUrlType") => list(any())
12701273
}
12711274
12721275
"""
@@ -1632,7 +1635,7 @@ defmodule AWS.Amplify do
16321635
Creates a deployment for a manually deployed Amplify app.
16331636
16341637
Manually deployed apps are
1635-
not connected to a repository.
1638+
not connected to a Git repository.
16361639
16371640
The maximum duration between the `CreateDeployment` call and the
16381641
`StartDeployment` call cannot exceed 8 hours. If the duration exceeds 8
@@ -2384,7 +2387,7 @@ defmodule AWS.Amplify do
23842387
Starts a deployment for a manually deployed app.
23852388
23862389
Manually deployed apps are not
2387-
connected to a repository.
2390+
connected to a Git repository.
23882391
23892392
The maximum duration between the `CreateDeployment` call and the
23902393
`StartDeployment` call cannot exceed 8 hours. If the duration exceeds 8

lib/aws/generated/cloud_formation.ex

Lines changed: 486 additions & 445 deletions
Large diffs are not rendered by default.

lib/aws/generated/code_build.ex

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,18 @@ defmodule AWS.CodeBuild do
199199

200200
@typedoc """
201201
202+
## Example:
203+
204+
proxy_configuration() :: %{
205+
"defaultBehavior" => list(any()),
206+
"orderedProxyRules" => list(fleet_proxy_rule()())
207+
}
208+
209+
"""
210+
@type proxy_configuration() :: %{String.t() => any()}
211+
212+
@typedoc """
213+
202214
## Example:
203215
204216
logs_config() :: %{
@@ -1454,6 +1466,7 @@ defmodule AWS.CodeBuild do
14541466
optional("fleetServiceRole") => String.t(),
14551467
optional("imageId") => String.t(),
14561468
optional("overflowBehavior") => list(any()),
1469+
optional("proxyConfiguration") => proxy_configuration(),
14571470
optional("scalingConfiguration") => scaling_configuration_input(),
14581471
optional("tags") => list(tag()()),
14591472
optional("vpcConfig") => vpc_config(),
@@ -1471,6 +1484,7 @@ defmodule AWS.CodeBuild do
14711484
optional("fleetServiceRole") => String.t(),
14721485
optional("imageId") => String.t(),
14731486
optional("overflowBehavior") => list(any()),
1487+
optional("proxyConfiguration") => proxy_configuration(),
14741488
optional("scalingConfiguration") => scaling_configuration_input(),
14751489
optional("tags") => list(tag()()),
14761490
optional("vpcConfig") => vpc_config(),
@@ -1532,6 +1546,19 @@ defmodule AWS.CodeBuild do
15321546

15331547
@typedoc """
15341548
1549+
## Example:
1550+
1551+
fleet_proxy_rule() :: %{
1552+
"effect" => list(any()),
1553+
"entities" => list(String.t()()),
1554+
"type" => list(any())
1555+
}
1556+
1557+
"""
1558+
@type fleet_proxy_rule() :: %{String.t() => any()}
1559+
1560+
@typedoc """
1561+
15351562
## Example:
15361563
15371564
delete_resource_policy_output() :: %{}
@@ -2163,6 +2190,7 @@ defmodule AWS.CodeBuild do
21632190
"lastModified" => non_neg_integer(),
21642191
"name" => String.t(),
21652192
"overflowBehavior" => list(any()),
2193+
"proxyConfiguration" => proxy_configuration(),
21662194
"scalingConfiguration" => scaling_configuration_output(),
21672195
"status" => fleet_status(),
21682196
"tags" => list(tag()()),

lib/aws/generated/ivs.ex

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -818,6 +818,7 @@ defmodule AWS.Ivs do
818818
## Example:
819819
820820
stream_event() :: %{
821+
"code" => String.t(),
821822
"eventTime" => non_neg_integer(),
822823
"name" => String.t(),
823824
"type" => String.t()

lib/aws/generated/q_business.ex

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -858,6 +858,7 @@ defmodule AWS.QBusiness do
858858
create_web_experience_request() :: %{
859859
optional("clientToken") => String.t(),
860860
optional("identityProviderConfiguration") => list(),
861+
optional("origins") => list(String.t()()),
861862
optional("roleArn") => String.t(),
862863
optional("samplePromptsControlMode") => list(any()),
863864
optional("subtitle") => String.t(),
@@ -984,6 +985,7 @@ defmodule AWS.QBusiness do
984985
"defaultEndpoint" => String.t(),
985986
"error" => error_detail(),
986987
"identityProviderConfiguration" => list(),
988+
"origins" => list(String.t()()),
987989
"roleArn" => String.t(),
988990
"samplePromptsControlMode" => list(any()),
989991
"status" => list(any()),
@@ -1156,6 +1158,7 @@ defmodule AWS.QBusiness do
11561158
update_web_experience_request() :: %{
11571159
optional("authenticationConfiguration") => list(),
11581160
optional("identityProviderConfiguration") => list(),
1161+
optional("origins") => list(String.t()()),
11591162
optional("roleArn") => String.t(),
11601163
optional("samplePromptsControlMode") => list(any()),
11611164
optional("subtitle") => String.t(),

0 commit comments

Comments
 (0)