aws-sdk-amplify 1.69.0 → 1.70.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-amplify/client.rb +15 -1
- data/lib/aws-sdk-amplify/types.rb +17 -0
- data/lib/aws-sdk-amplify.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b12a4a60f9501da1334b6bf675c12ad30f6810d7bac316ae0b4113fe0fdd03b7
|
|
4
|
+
data.tar.gz: 93cc14d278ec25e1fa93f0e49805e727711541207ad955d464a3fc74a0533bbf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 21021d72d87bb40fef1310102194d203b7b8e84b97d547a5baf31b18eca0b7d89c9525b1d2a01b61ff673119bfe9deb3f5209980dd9190c8ed0be4318d90c82c
|
|
7
|
+
data.tar.gz: 8bdcce7a9dc9ac9dd38d02ff6d9b8cab0398d270330e124d4b59f0670412c955a970b50400bad242f5eeae0b9becda3f062783032bf73a3e89d313af070dae20
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.70.0
|
|
@@ -461,6 +461,17 @@ module Aws::Amplify
|
|
|
461
461
|
# Hosting's original SSR support only, set the platform type to
|
|
462
462
|
# `WEB_DYNAMIC`.
|
|
463
463
|
#
|
|
464
|
+
# If you are deploying an SSG only app with Next.js version 14 or later,
|
|
465
|
+
# you must set the platform type to `WEB_COMPUTE` and set the artifacts
|
|
466
|
+
# `baseDirectory` to `.next` in the application's build settings. For
|
|
467
|
+
# an example of the build specification settings, see [Amplify build
|
|
468
|
+
# settings for a Next.js 14 SSG application][1] in the *Amplify Hosting
|
|
469
|
+
# User Guide*.
|
|
470
|
+
#
|
|
471
|
+
#
|
|
472
|
+
#
|
|
473
|
+
# [1]: https://docs.aws.amazon.com/amplify/latest/userguide/deploy-nextjs-app.html#build-setting-detection-ssg-14
|
|
474
|
+
#
|
|
464
475
|
# @option params [String] :iam_service_role_arn
|
|
465
476
|
# The AWS Identity and Access Management (IAM) service role for an
|
|
466
477
|
# Amplify app.
|
|
@@ -2446,6 +2457,9 @@ module Aws::Amplify
|
|
|
2446
2457
|
# Hosting's original SSR support only, set the platform type to
|
|
2447
2458
|
# `WEB_DYNAMIC`.
|
|
2448
2459
|
#
|
|
2460
|
+
# If you are deploying an SSG only app with Next.js version 14 or later,
|
|
2461
|
+
# you must set the platform type to `WEB_COMPUTE`.
|
|
2462
|
+
#
|
|
2449
2463
|
# @option params [String] :iam_service_role_arn
|
|
2450
2464
|
# The AWS Identity and Access Management (IAM) service role for an
|
|
2451
2465
|
# Amplify app.
|
|
@@ -2936,7 +2950,7 @@ module Aws::Amplify
|
|
|
2936
2950
|
tracer: tracer
|
|
2937
2951
|
)
|
|
2938
2952
|
context[:gem_name] = 'aws-sdk-amplify'
|
|
2939
|
-
context[:gem_version] = '1.
|
|
2953
|
+
context[:gem_version] = '1.70.0'
|
|
2940
2954
|
Seahorse::Client::Request.new(handlers, context)
|
|
2941
2955
|
end
|
|
2942
2956
|
|
|
@@ -43,6 +43,9 @@ module Aws::Amplify
|
|
|
43
43
|
# platform type to `WEB_COMPUTE`. For an app requiring Amplify
|
|
44
44
|
# Hosting's original SSR support only, set the platform type to
|
|
45
45
|
# `WEB_DYNAMIC`.
|
|
46
|
+
#
|
|
47
|
+
# If you are deploying an SSG only app with Next.js 14 or later, you
|
|
48
|
+
# must use the platform type `WEB_COMPUTE`.
|
|
46
49
|
# @return [String]
|
|
47
50
|
#
|
|
48
51
|
# @!attribute [rw] create_time
|
|
@@ -641,6 +644,17 @@ module Aws::Amplify
|
|
|
641
644
|
# platform type to `WEB_COMPUTE`. For an app requiring Amplify
|
|
642
645
|
# Hosting's original SSR support only, set the platform type to
|
|
643
646
|
# `WEB_DYNAMIC`.
|
|
647
|
+
#
|
|
648
|
+
# If you are deploying an SSG only app with Next.js version 14 or
|
|
649
|
+
# later, you must set the platform type to `WEB_COMPUTE` and set the
|
|
650
|
+
# artifacts `baseDirectory` to `.next` in the application's build
|
|
651
|
+
# settings. For an example of the build specification settings, see
|
|
652
|
+
# [Amplify build settings for a Next.js 14 SSG application][1] in the
|
|
653
|
+
# *Amplify Hosting User Guide*.
|
|
654
|
+
#
|
|
655
|
+
#
|
|
656
|
+
#
|
|
657
|
+
# [1]: https://docs.aws.amazon.com/amplify/latest/userguide/deploy-nextjs-app.html#build-setting-detection-ssg-14
|
|
644
658
|
# @return [String]
|
|
645
659
|
#
|
|
646
660
|
# @!attribute [rw] iam_service_role_arn
|
|
@@ -2659,6 +2673,9 @@ module Aws::Amplify
|
|
|
2659
2673
|
# platform type to `WEB_COMPUTE`. For an app requiring Amplify
|
|
2660
2674
|
# Hosting's original SSR support only, set the platform type to
|
|
2661
2675
|
# `WEB_DYNAMIC`.
|
|
2676
|
+
#
|
|
2677
|
+
# If you are deploying an SSG only app with Next.js version 14 or
|
|
2678
|
+
# later, you must set the platform type to `WEB_COMPUTE`.
|
|
2662
2679
|
# @return [String]
|
|
2663
2680
|
#
|
|
2664
2681
|
# @!attribute [rw] iam_service_role_arn
|
data/lib/aws-sdk-amplify.rb
CHANGED
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.70.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: 2024-09-
|
|
11
|
+
date: 2024-09-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|