aws-sdk-amplify 1.75.0 → 1.77.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-amplify/client.rb +51 -8
- data/lib/aws-sdk-amplify/client_api.rb +11 -0
- data/lib/aws-sdk-amplify/types.rb +56 -9
- data/lib/aws-sdk-amplify.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +11 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 64e697c7b88db055a685a5edef6245acabe2fd098facceb4105495cd7ab10601
|
4
|
+
data.tar.gz: 0b2c6091cdd2b16c224f3d0e3ad88bb913b345b82aad60bc96d5a35cb9adb8ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 823b87c89ac2119d3e04c2e2ccaa7a261b0ddb9f019c0c1ea7d56d71e10e04f1017fd1dc9ffded4d00dd4e4930d73a50d52db7edc5b44bfbef6ab3a3c97d953d
|
7
|
+
data.tar.gz: 9e7ae8718bac6a42a58864b8d36348bb0068c29329a7f1b673fc93448641eb1895694d1190e40569f84a96d77d9bdeb3cee7a5eef837ac448b4e0f6c46a09838
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.77.0 (2025-01-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.76.0 (2024-12-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Added WAF Configuration to Amplify Apps
|
13
|
+
|
4
14
|
1.75.0 (2024-10-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.77.0
|
@@ -257,11 +257,34 @@ module Aws::Amplify
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -677,6 +700,10 @@ module Aws::Amplify
|
|
677
700
|
# resp.app.auto_branch_creation_config.pull_request_environment_name #=> String
|
678
701
|
# resp.app.repository_clone_method #=> String, one of "SSH", "TOKEN", "SIGV4"
|
679
702
|
# resp.app.cache_config.type #=> String, one of "AMPLIFY_MANAGED", "AMPLIFY_MANAGED_NO_COOKIES"
|
703
|
+
# resp.app.webhook_create_time #=> Time
|
704
|
+
# resp.app.waf_configuration.web_acl_arn #=> String
|
705
|
+
# resp.app.waf_configuration.waf_status #=> String, one of "ASSOCIATING", "ASSOCIATION_FAILED", "ASSOCIATION_SUCCESS", "DISASSOCIATING", "DISASSOCIATION_FAILED"
|
706
|
+
# resp.app.waf_configuration.status_reason #=> String
|
680
707
|
#
|
681
708
|
# @see http://docs.aws.amazon.com/goto/WebAPI/amplify-2017-07-25/CreateApp AWS API Documentation
|
682
709
|
#
|
@@ -1130,6 +1157,10 @@ module Aws::Amplify
|
|
1130
1157
|
# resp.app.auto_branch_creation_config.pull_request_environment_name #=> String
|
1131
1158
|
# resp.app.repository_clone_method #=> String, one of "SSH", "TOKEN", "SIGV4"
|
1132
1159
|
# resp.app.cache_config.type #=> String, one of "AMPLIFY_MANAGED", "AMPLIFY_MANAGED_NO_COOKIES"
|
1160
|
+
# resp.app.webhook_create_time #=> Time
|
1161
|
+
# resp.app.waf_configuration.web_acl_arn #=> String
|
1162
|
+
# resp.app.waf_configuration.waf_status #=> String, one of "ASSOCIATING", "ASSOCIATION_FAILED", "ASSOCIATION_SUCCESS", "DISASSOCIATING", "DISASSOCIATION_FAILED"
|
1163
|
+
# resp.app.waf_configuration.status_reason #=> String
|
1133
1164
|
#
|
1134
1165
|
# @see http://docs.aws.amazon.com/goto/WebAPI/amplify-2017-07-25/DeleteApp AWS API Documentation
|
1135
1166
|
#
|
@@ -1326,7 +1357,7 @@ module Aws::Amplify
|
|
1326
1357
|
# resp.job_summary.commit_message #=> String
|
1327
1358
|
# resp.job_summary.commit_time #=> Time
|
1328
1359
|
# resp.job_summary.start_time #=> Time
|
1329
|
-
# resp.job_summary.status #=> String, one of "PENDING", "PROVISIONING", "RUNNING", "FAILED", "SUCCEED", "CANCELLING", "CANCELLED"
|
1360
|
+
# resp.job_summary.status #=> String, one of "CREATED", "PENDING", "PROVISIONING", "RUNNING", "FAILED", "SUCCEED", "CANCELLING", "CANCELLED"
|
1330
1361
|
# resp.job_summary.end_time #=> Time
|
1331
1362
|
# resp.job_summary.job_type #=> String, one of "RELEASE", "RETRY", "MANUAL", "WEB_HOOK"
|
1332
1363
|
# resp.job_summary.source_url #=> String
|
@@ -1480,6 +1511,10 @@ module Aws::Amplify
|
|
1480
1511
|
# resp.app.auto_branch_creation_config.pull_request_environment_name #=> String
|
1481
1512
|
# resp.app.repository_clone_method #=> String, one of "SSH", "TOKEN", "SIGV4"
|
1482
1513
|
# resp.app.cache_config.type #=> String, one of "AMPLIFY_MANAGED", "AMPLIFY_MANAGED_NO_COOKIES"
|
1514
|
+
# resp.app.webhook_create_time #=> Time
|
1515
|
+
# resp.app.waf_configuration.web_acl_arn #=> String
|
1516
|
+
# resp.app.waf_configuration.waf_status #=> String, one of "ASSOCIATING", "ASSOCIATION_FAILED", "ASSOCIATION_SUCCESS", "DISASSOCIATING", "DISASSOCIATION_FAILED"
|
1517
|
+
# resp.app.waf_configuration.status_reason #=> String
|
1483
1518
|
#
|
1484
1519
|
# @see http://docs.aws.amazon.com/goto/WebAPI/amplify-2017-07-25/GetApp AWS API Documentation
|
1485
1520
|
#
|
@@ -1706,7 +1741,7 @@ module Aws::Amplify
|
|
1706
1741
|
# resp.job.summary.commit_message #=> String
|
1707
1742
|
# resp.job.summary.commit_time #=> Time
|
1708
1743
|
# resp.job.summary.start_time #=> Time
|
1709
|
-
# resp.job.summary.status #=> String, one of "PENDING", "PROVISIONING", "RUNNING", "FAILED", "SUCCEED", "CANCELLING", "CANCELLED"
|
1744
|
+
# resp.job.summary.status #=> String, one of "CREATED", "PENDING", "PROVISIONING", "RUNNING", "FAILED", "SUCCEED", "CANCELLING", "CANCELLED"
|
1710
1745
|
# resp.job.summary.end_time #=> Time
|
1711
1746
|
# resp.job.summary.job_type #=> String, one of "RELEASE", "RETRY", "MANUAL", "WEB_HOOK"
|
1712
1747
|
# resp.job.summary.source_url #=> String
|
@@ -1714,7 +1749,7 @@ module Aws::Amplify
|
|
1714
1749
|
# resp.job.steps #=> Array
|
1715
1750
|
# resp.job.steps[0].step_name #=> String
|
1716
1751
|
# resp.job.steps[0].start_time #=> Time
|
1717
|
-
# resp.job.steps[0].status #=> String, one of "PENDING", "PROVISIONING", "RUNNING", "FAILED", "SUCCEED", "CANCELLING", "CANCELLED"
|
1752
|
+
# resp.job.steps[0].status #=> String, one of "CREATED", "PENDING", "PROVISIONING", "RUNNING", "FAILED", "SUCCEED", "CANCELLING", "CANCELLED"
|
1718
1753
|
# resp.job.steps[0].end_time #=> Time
|
1719
1754
|
# resp.job.steps[0].log_url #=> String
|
1720
1755
|
# resp.job.steps[0].artifacts_url #=> String
|
@@ -1840,6 +1875,10 @@ module Aws::Amplify
|
|
1840
1875
|
# resp.apps[0].auto_branch_creation_config.pull_request_environment_name #=> String
|
1841
1876
|
# resp.apps[0].repository_clone_method #=> String, one of "SSH", "TOKEN", "SIGV4"
|
1842
1877
|
# resp.apps[0].cache_config.type #=> String, one of "AMPLIFY_MANAGED", "AMPLIFY_MANAGED_NO_COOKIES"
|
1878
|
+
# resp.apps[0].webhook_create_time #=> Time
|
1879
|
+
# resp.apps[0].waf_configuration.web_acl_arn #=> String
|
1880
|
+
# resp.apps[0].waf_configuration.waf_status #=> String, one of "ASSOCIATING", "ASSOCIATION_FAILED", "ASSOCIATION_SUCCESS", "DISASSOCIATING", "DISASSOCIATION_FAILED"
|
1881
|
+
# resp.apps[0].waf_configuration.status_reason #=> String
|
1843
1882
|
# resp.next_token #=> String
|
1844
1883
|
#
|
1845
1884
|
# @see http://docs.aws.amazon.com/goto/WebAPI/amplify-2017-07-25/ListApps AWS API Documentation
|
@@ -2132,7 +2171,7 @@ module Aws::Amplify
|
|
2132
2171
|
# resp.job_summaries[0].commit_message #=> String
|
2133
2172
|
# resp.job_summaries[0].commit_time #=> Time
|
2134
2173
|
# resp.job_summaries[0].start_time #=> Time
|
2135
|
-
# resp.job_summaries[0].status #=> String, one of "PENDING", "PROVISIONING", "RUNNING", "FAILED", "SUCCEED", "CANCELLING", "CANCELLED"
|
2174
|
+
# resp.job_summaries[0].status #=> String, one of "CREATED", "PENDING", "PROVISIONING", "RUNNING", "FAILED", "SUCCEED", "CANCELLING", "CANCELLED"
|
2136
2175
|
# resp.job_summaries[0].end_time #=> Time
|
2137
2176
|
# resp.job_summaries[0].job_type #=> String, one of "RELEASE", "RETRY", "MANUAL", "WEB_HOOK"
|
2138
2177
|
# resp.job_summaries[0].source_url #=> String
|
@@ -2276,7 +2315,7 @@ module Aws::Amplify
|
|
2276
2315
|
# resp.job_summary.commit_message #=> String
|
2277
2316
|
# resp.job_summary.commit_time #=> Time
|
2278
2317
|
# resp.job_summary.start_time #=> Time
|
2279
|
-
# resp.job_summary.status #=> String, one of "PENDING", "PROVISIONING", "RUNNING", "FAILED", "SUCCEED", "CANCELLING", "CANCELLED"
|
2318
|
+
# resp.job_summary.status #=> String, one of "CREATED", "PENDING", "PROVISIONING", "RUNNING", "FAILED", "SUCCEED", "CANCELLING", "CANCELLED"
|
2280
2319
|
# resp.job_summary.end_time #=> Time
|
2281
2320
|
# resp.job_summary.job_type #=> String, one of "RELEASE", "RETRY", "MANUAL", "WEB_HOOK"
|
2282
2321
|
# resp.job_summary.source_url #=> String
|
@@ -2348,7 +2387,7 @@ module Aws::Amplify
|
|
2348
2387
|
# resp.job_summary.commit_message #=> String
|
2349
2388
|
# resp.job_summary.commit_time #=> Time
|
2350
2389
|
# resp.job_summary.start_time #=> Time
|
2351
|
-
# resp.job_summary.status #=> String, one of "PENDING", "PROVISIONING", "RUNNING", "FAILED", "SUCCEED", "CANCELLING", "CANCELLED"
|
2390
|
+
# resp.job_summary.status #=> String, one of "CREATED", "PENDING", "PROVISIONING", "RUNNING", "FAILED", "SUCCEED", "CANCELLING", "CANCELLED"
|
2352
2391
|
# resp.job_summary.end_time #=> Time
|
2353
2392
|
# resp.job_summary.job_type #=> String, one of "RELEASE", "RETRY", "MANUAL", "WEB_HOOK"
|
2354
2393
|
# resp.job_summary.source_url #=> String
|
@@ -2394,7 +2433,7 @@ module Aws::Amplify
|
|
2394
2433
|
# resp.job_summary.commit_message #=> String
|
2395
2434
|
# resp.job_summary.commit_time #=> Time
|
2396
2435
|
# resp.job_summary.start_time #=> Time
|
2397
|
-
# resp.job_summary.status #=> String, one of "PENDING", "PROVISIONING", "RUNNING", "FAILED", "SUCCEED", "CANCELLING", "CANCELLED"
|
2436
|
+
# resp.job_summary.status #=> String, one of "CREATED", "PENDING", "PROVISIONING", "RUNNING", "FAILED", "SUCCEED", "CANCELLING", "CANCELLED"
|
2398
2437
|
# resp.job_summary.end_time #=> Time
|
2399
2438
|
# resp.job_summary.job_type #=> String, one of "RELEASE", "RETRY", "MANUAL", "WEB_HOOK"
|
2400
2439
|
# resp.job_summary.source_url #=> String
|
@@ -2677,6 +2716,10 @@ module Aws::Amplify
|
|
2677
2716
|
# resp.app.auto_branch_creation_config.pull_request_environment_name #=> String
|
2678
2717
|
# resp.app.repository_clone_method #=> String, one of "SSH", "TOKEN", "SIGV4"
|
2679
2718
|
# resp.app.cache_config.type #=> String, one of "AMPLIFY_MANAGED", "AMPLIFY_MANAGED_NO_COOKIES"
|
2719
|
+
# resp.app.webhook_create_time #=> Time
|
2720
|
+
# resp.app.waf_configuration.web_acl_arn #=> String
|
2721
|
+
# resp.app.waf_configuration.waf_status #=> String, one of "ASSOCIATING", "ASSOCIATION_FAILED", "ASSOCIATION_SUCCESS", "DISASSOCIATING", "DISASSOCIATION_FAILED"
|
2722
|
+
# resp.app.waf_configuration.status_reason #=> String
|
2680
2723
|
#
|
2681
2724
|
# @see http://docs.aws.amazon.com/goto/WebAPI/amplify-2017-07-25/UpdateApp AWS API Documentation
|
2682
2725
|
#
|
@@ -2974,7 +3017,7 @@ module Aws::Amplify
|
|
2974
3017
|
tracer: tracer
|
2975
3018
|
)
|
2976
3019
|
context[:gem_name] = 'aws-sdk-amplify'
|
2977
|
-
context[:gem_version] = '1.
|
3020
|
+
context[:gem_version] = '1.77.0'
|
2978
3021
|
Seahorse::Client::Request.new(handlers, context)
|
2979
3022
|
end
|
2980
3023
|
|
@@ -229,11 +229,15 @@ module Aws::Amplify
|
|
229
229
|
UpdateWebhookResult = Shapes::StructureShape.new(name: 'UpdateWebhookResult')
|
230
230
|
UploadUrl = Shapes::StringShape.new(name: 'UploadUrl')
|
231
231
|
Verified = Shapes::BooleanShape.new(name: 'Verified')
|
232
|
+
WafConfiguration = Shapes::StructureShape.new(name: 'WafConfiguration')
|
233
|
+
WafStatus = Shapes::StringShape.new(name: 'WafStatus')
|
234
|
+
WebAclArn = Shapes::StringShape.new(name: 'WebAclArn')
|
232
235
|
Webhook = Shapes::StructureShape.new(name: 'Webhook')
|
233
236
|
WebhookArn = Shapes::StringShape.new(name: 'WebhookArn')
|
234
237
|
WebhookId = Shapes::StringShape.new(name: 'WebhookId')
|
235
238
|
WebhookUrl = Shapes::StringShape.new(name: 'WebhookUrl')
|
236
239
|
Webhooks = Shapes::ListShape.new(name: 'Webhooks')
|
240
|
+
webhookCreateTime = Shapes::TimestampShape.new(name: 'webhookCreateTime')
|
237
241
|
|
238
242
|
App.add_member(:app_id, Shapes::ShapeRef.new(shape: AppId, required: true, location_name: "appId"))
|
239
243
|
App.add_member(:app_arn, Shapes::ShapeRef.new(shape: AppArn, required: true, location_name: "appArn"))
|
@@ -260,6 +264,8 @@ module Aws::Amplify
|
|
260
264
|
App.add_member(:auto_branch_creation_config, Shapes::ShapeRef.new(shape: AutoBranchCreationConfig, location_name: "autoBranchCreationConfig"))
|
261
265
|
App.add_member(:repository_clone_method, Shapes::ShapeRef.new(shape: RepositoryCloneMethod, location_name: "repositoryCloneMethod"))
|
262
266
|
App.add_member(:cache_config, Shapes::ShapeRef.new(shape: CacheConfig, location_name: "cacheConfig"))
|
267
|
+
App.add_member(:webhook_create_time, Shapes::ShapeRef.new(shape: webhookCreateTime, location_name: "webhookCreateTime"))
|
268
|
+
App.add_member(:waf_configuration, Shapes::ShapeRef.new(shape: WafConfiguration, location_name: "wafConfiguration"))
|
263
269
|
App.struct_class = Types::App
|
264
270
|
|
265
271
|
Apps.member = Shapes::ShapeRef.new(shape: App)
|
@@ -831,6 +837,11 @@ module Aws::Amplify
|
|
831
837
|
UpdateWebhookResult.add_member(:webhook, Shapes::ShapeRef.new(shape: Webhook, required: true, location_name: "webhook"))
|
832
838
|
UpdateWebhookResult.struct_class = Types::UpdateWebhookResult
|
833
839
|
|
840
|
+
WafConfiguration.add_member(:web_acl_arn, Shapes::ShapeRef.new(shape: WebAclArn, location_name: "webAclArn"))
|
841
|
+
WafConfiguration.add_member(:waf_status, Shapes::ShapeRef.new(shape: WafStatus, location_name: "wafStatus"))
|
842
|
+
WafConfiguration.add_member(:status_reason, Shapes::ShapeRef.new(shape: StatusReason, location_name: "statusReason"))
|
843
|
+
WafConfiguration.struct_class = Types::WafConfiguration
|
844
|
+
|
834
845
|
Webhook.add_member(:webhook_arn, Shapes::ShapeRef.new(shape: WebhookArn, required: true, location_name: "webhookArn"))
|
835
846
|
Webhook.add_member(:webhook_id, Shapes::ShapeRef.new(shape: WebhookId, required: true, location_name: "webhookId"))
|
836
847
|
Webhook.add_member(:webhook_url, Shapes::ShapeRef.new(shape: WebhookUrl, required: true, location_name: "webhookUrl"))
|
@@ -49,11 +49,11 @@ module Aws::Amplify
|
|
49
49
|
# @return [String]
|
50
50
|
#
|
51
51
|
# @!attribute [rw] create_time
|
52
|
-
#
|
52
|
+
# A timestamp of when Amplify created the application.
|
53
53
|
# @return [Time]
|
54
54
|
#
|
55
55
|
# @!attribute [rw] update_time
|
56
|
-
#
|
56
|
+
# A timestamp of when Amplify updated the application.
|
57
57
|
# @return [Time]
|
58
58
|
#
|
59
59
|
# @!attribute [rw] iam_service_role_arn
|
@@ -146,6 +146,17 @@ module Aws::Amplify
|
|
146
146
|
# `AMPLIFY_MANAGED` setting.
|
147
147
|
# @return [Types::CacheConfig]
|
148
148
|
#
|
149
|
+
# @!attribute [rw] webhook_create_time
|
150
|
+
# A timestamp of when Amplify created the webhook in your Git
|
151
|
+
# repository.
|
152
|
+
# @return [Time]
|
153
|
+
#
|
154
|
+
# @!attribute [rw] waf_configuration
|
155
|
+
# Describes the Firewall configuration for the Amplify app. Firewall
|
156
|
+
# support enables you to protect your hosted applications with a
|
157
|
+
# direct integration with WAF.
|
158
|
+
# @return [Types::WafConfiguration]
|
159
|
+
#
|
149
160
|
# @see http://docs.aws.amazon.com/goto/WebAPI/amplify-2017-07-25/App AWS API Documentation
|
150
161
|
#
|
151
162
|
class App < Struct.new(
|
@@ -173,7 +184,9 @@ module Aws::Amplify
|
|
173
184
|
:auto_branch_creation_patterns,
|
174
185
|
:auto_branch_creation_config,
|
175
186
|
:repository_clone_method,
|
176
|
-
:cache_config
|
187
|
+
:cache_config,
|
188
|
+
:webhook_create_time,
|
189
|
+
:waf_configuration)
|
177
190
|
SENSITIVE = [:basic_auth_credentials, :build_spec]
|
178
191
|
include Aws::Structure
|
179
192
|
end
|
@@ -372,13 +385,11 @@ module Aws::Amplify
|
|
372
385
|
# @return [Boolean]
|
373
386
|
#
|
374
387
|
# @!attribute [rw] create_time
|
375
|
-
#
|
376
|
-
# app.
|
388
|
+
# A timestamp of when Amplify created the branch.
|
377
389
|
# @return [Time]
|
378
390
|
#
|
379
391
|
# @!attribute [rw] update_time
|
380
|
-
#
|
381
|
-
# Amplify app.
|
392
|
+
# A timestamp for the last updated time for a branch.
|
382
393
|
# @return [Time]
|
383
394
|
#
|
384
395
|
# @!attribute [rw] environment_variables
|
@@ -3089,6 +3100,40 @@ module Aws::Amplify
|
|
3089
3100
|
include Aws::Structure
|
3090
3101
|
end
|
3091
3102
|
|
3103
|
+
# Describes the Firewall configuration for a hosted Amplify application.
|
3104
|
+
# Firewall support enables you to protect your web applications with a
|
3105
|
+
# direct integration with WAF. For more information about using WAF
|
3106
|
+
# protections for an Amplify application, see [Firewall support for
|
3107
|
+
# hosted sites][1] in the *Amplify User Guide*.
|
3108
|
+
#
|
3109
|
+
#
|
3110
|
+
#
|
3111
|
+
# [1]: https://docs.aws.amazon.com/amplify/latest/userguide/WAF-integration.html
|
3112
|
+
#
|
3113
|
+
# @!attribute [rw] web_acl_arn
|
3114
|
+
# The Amazon Resource Name (ARN) for the web ACL associated with an
|
3115
|
+
# Amplify app.
|
3116
|
+
# @return [String]
|
3117
|
+
#
|
3118
|
+
# @!attribute [rw] waf_status
|
3119
|
+
# The status of the process to associate or disassociate a web ACL to
|
3120
|
+
# an Amplify app.
|
3121
|
+
# @return [String]
|
3122
|
+
#
|
3123
|
+
# @!attribute [rw] status_reason
|
3124
|
+
# The reason for the current status of the Firewall configuration.
|
3125
|
+
# @return [String]
|
3126
|
+
#
|
3127
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/amplify-2017-07-25/WafConfiguration AWS API Documentation
|
3128
|
+
#
|
3129
|
+
class WafConfiguration < Struct.new(
|
3130
|
+
:web_acl_arn,
|
3131
|
+
:waf_status,
|
3132
|
+
:status_reason)
|
3133
|
+
SENSITIVE = []
|
3134
|
+
include Aws::Structure
|
3135
|
+
end
|
3136
|
+
|
3092
3137
|
# Describes a webhook that connects repository events to an Amplify app.
|
3093
3138
|
#
|
3094
3139
|
# @!attribute [rw] webhook_arn
|
@@ -3112,11 +3157,13 @@ module Aws::Amplify
|
|
3112
3157
|
# @return [String]
|
3113
3158
|
#
|
3114
3159
|
# @!attribute [rw] create_time
|
3115
|
-
#
|
3160
|
+
# A timestamp of when Amplify created the webhook in your Git
|
3161
|
+
# repository.
|
3116
3162
|
# @return [Time]
|
3117
3163
|
#
|
3118
3164
|
# @!attribute [rw] update_time
|
3119
|
-
#
|
3165
|
+
# A timestamp of when Amplify updated the webhook in your Git
|
3166
|
+
# repository.
|
3120
3167
|
# @return [Time]
|
3121
3168
|
#
|
3122
3169
|
# @see http://docs.aws.amazon.com/goto/WebAPI/amplify-2017-07-25/Webhook AWS API Documentation
|
data/lib/aws-sdk-amplify.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/types.rbs
CHANGED
@@ -34,6 +34,8 @@ module Aws::Amplify
|
|
34
34
|
attr_accessor auto_branch_creation_config: Types::AutoBranchCreationConfig
|
35
35
|
attr_accessor repository_clone_method: ("SSH" | "TOKEN" | "SIGV4")
|
36
36
|
attr_accessor cache_config: Types::CacheConfig
|
37
|
+
attr_accessor webhook_create_time: ::Time
|
38
|
+
attr_accessor waf_configuration: Types::WafConfiguration
|
37
39
|
SENSITIVE: [:basic_auth_credentials, :build_spec]
|
38
40
|
end
|
39
41
|
|
@@ -439,7 +441,7 @@ module Aws::Amplify
|
|
439
441
|
attr_accessor commit_message: ::String
|
440
442
|
attr_accessor commit_time: ::Time
|
441
443
|
attr_accessor start_time: ::Time
|
442
|
-
attr_accessor status: ("PENDING" | "PROVISIONING" | "RUNNING" | "FAILED" | "SUCCEED" | "CANCELLING" | "CANCELLED")
|
444
|
+
attr_accessor status: ("CREATED" | "PENDING" | "PROVISIONING" | "RUNNING" | "FAILED" | "SUCCEED" | "CANCELLING" | "CANCELLED")
|
443
445
|
attr_accessor end_time: ::Time
|
444
446
|
attr_accessor job_type: ("RELEASE" | "RETRY" | "MANUAL" | "WEB_HOOK")
|
445
447
|
attr_accessor source_url: ::String
|
@@ -609,7 +611,7 @@ module Aws::Amplify
|
|
609
611
|
class Step
|
610
612
|
attr_accessor step_name: ::String
|
611
613
|
attr_accessor start_time: ::Time
|
612
|
-
attr_accessor status: ("PENDING" | "PROVISIONING" | "RUNNING" | "FAILED" | "SUCCEED" | "CANCELLING" | "CANCELLED")
|
614
|
+
attr_accessor status: ("CREATED" | "PENDING" | "PROVISIONING" | "RUNNING" | "FAILED" | "SUCCEED" | "CANCELLING" | "CANCELLED")
|
613
615
|
attr_accessor end_time: ::Time
|
614
616
|
attr_accessor log_url: ::String
|
615
617
|
attr_accessor artifacts_url: ::String
|
@@ -753,6 +755,13 @@ module Aws::Amplify
|
|
753
755
|
SENSITIVE: []
|
754
756
|
end
|
755
757
|
|
758
|
+
class WafConfiguration
|
759
|
+
attr_accessor web_acl_arn: ::String
|
760
|
+
attr_accessor waf_status: ("ASSOCIATING" | "ASSOCIATION_FAILED" | "ASSOCIATION_SUCCESS" | "DISASSOCIATING" | "DISASSOCIATION_FAILED")
|
761
|
+
attr_accessor status_reason: ::String
|
762
|
+
SENSITIVE: []
|
763
|
+
end
|
764
|
+
|
756
765
|
class Webhook
|
757
766
|
attr_accessor webhook_arn: ::String
|
758
767
|
attr_accessor webhook_id: ::String
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-amplify
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.77.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.216.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|