aws-sdk-amplify 1.42.0 → 1.43.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dcfef7d8c7b142a11b570727aea08b9cdca24be384b38e1160bcd58f49cc3e42
4
- data.tar.gz: c73eb5499c70a7e30551360c5227e674059ae11a484b0d8d96897e4aefc9ad1e
3
+ metadata.gz: d782632ffdff3aef8d0e5b24d89721e326d5de60b2e06f7c105a9440639dd858
4
+ data.tar.gz: 900ab986c6a7ff71db7cfdee7cede7d6a469a84bd8d52daf9317e0c8d750053e
5
5
  SHA512:
6
- metadata.gz: c2ab137bb1c19089c4785eda90ab2d7956553fedbd0af2eb2974ff0e3368c0ed3b63111432d7993757ee64313591da51f1b1afe7d9aabd3cabb67ab2e68fcedb
7
- data.tar.gz: 96d2a571d8094d8c69e071014bab62cd490224d71c6b4f03466cfc12a2092648be5764b2a97d2dbe8a3b41ba322a4757fa198e58c204f46bd6b140ae63c89649
6
+ metadata.gz: 0cf57e33a02937e4ebc7e4b60cbf6dcb2ae713487b75101cf591b0676c3a95c614fc667de3c9cfdbc11e7754120dcdfc2cdf7630c1f34651bc9bf78d7108dca1
7
+ data.tar.gz: 4ddb96deb18eacb81e0ff2de96ceb7ddd2a95d0e6b510a1e3796659a4921486a4e860f4eaacd5568dd5c61bdbbdf80f3388345d21cd31624686b03a861d3c1ee
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.43.0 (2022-11-17)
5
+ ------------------
6
+
7
+ * Feature - Adds a new value (WEB_COMPUTE) to the Platform enum that allows customers to create Amplify Apps with Server-Side Rendering support.
8
+
4
9
  1.42.0 (2022-10-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.42.0
1
+ 1.43.0
@@ -380,7 +380,11 @@ module Aws::Amplify
380
380
  # The repository for an Amplify app.
381
381
  #
382
382
  # @option params [String] :platform
383
- # The platform or framework for an Amplify app.
383
+ # The platform for the Amplify app. For a static app, set the platform
384
+ # type to `WEB`. For a dynamic server-side rendered (SSR) app, set the
385
+ # platform type to `WEB_COMPUTE`. For an app requiring Amplify
386
+ # Hosting's original SSR support only, set the platform type to
387
+ # `WEB_DYNAMIC`.
384
388
  #
385
389
  # @option params [String] :iam_service_role_arn
386
390
  # The AWS Identity and Access Management (IAM) service role for an
@@ -480,7 +484,7 @@ module Aws::Amplify
480
484
  # name: "Name", # required
481
485
  # description: "Description",
482
486
  # repository: "Repository",
483
- # platform: "WEB", # accepts WEB, WEB_DYNAMIC
487
+ # platform: "WEB", # accepts WEB, WEB_DYNAMIC, WEB_COMPUTE
484
488
  # iam_service_role_arn: "ServiceRoleArn",
485
489
  # oauth_token: "OauthToken",
486
490
  # access_token: "AccessToken",
@@ -531,7 +535,7 @@ module Aws::Amplify
531
535
  # resp.app.tags["TagKey"] #=> String
532
536
  # resp.app.description #=> String
533
537
  # resp.app.repository #=> String
534
- # resp.app.platform #=> String, one of "WEB", "WEB_DYNAMIC"
538
+ # resp.app.platform #=> String, one of "WEB", "WEB_DYNAMIC", "WEB_COMPUTE"
535
539
  # resp.app.create_time #=> Time
536
540
  # resp.app.update_time #=> Time
537
541
  # resp.app.iam_service_role_arn #=> String
@@ -943,7 +947,7 @@ module Aws::Amplify
943
947
  # resp.app.tags["TagKey"] #=> String
944
948
  # resp.app.description #=> String
945
949
  # resp.app.repository #=> String
946
- # resp.app.platform #=> String, one of "WEB", "WEB_DYNAMIC"
950
+ # resp.app.platform #=> String, one of "WEB", "WEB_DYNAMIC", "WEB_COMPUTE"
947
951
  # resp.app.create_time #=> Time
948
952
  # resp.app.update_time #=> Time
949
953
  # resp.app.iam_service_role_arn #=> String
@@ -1279,7 +1283,7 @@ module Aws::Amplify
1279
1283
  # resp.app.tags["TagKey"] #=> String
1280
1284
  # resp.app.description #=> String
1281
1285
  # resp.app.repository #=> String
1282
- # resp.app.platform #=> String, one of "WEB", "WEB_DYNAMIC"
1286
+ # resp.app.platform #=> String, one of "WEB", "WEB_DYNAMIC", "WEB_COMPUTE"
1283
1287
  # resp.app.create_time #=> Time
1284
1288
  # resp.app.update_time #=> Time
1285
1289
  # resp.app.iam_service_role_arn #=> String
@@ -1623,7 +1627,7 @@ module Aws::Amplify
1623
1627
  # resp.apps[0].tags["TagKey"] #=> String
1624
1628
  # resp.apps[0].description #=> String
1625
1629
  # resp.apps[0].repository #=> String
1626
- # resp.apps[0].platform #=> String, one of "WEB", "WEB_DYNAMIC"
1630
+ # resp.apps[0].platform #=> String, one of "WEB", "WEB_DYNAMIC", "WEB_COMPUTE"
1627
1631
  # resp.apps[0].create_time #=> Time
1628
1632
  # resp.apps[0].update_time #=> Time
1629
1633
  # resp.apps[0].iam_service_role_arn #=> String
@@ -2256,7 +2260,11 @@ module Aws::Amplify
2256
2260
  # The description for an Amplify app.
2257
2261
  #
2258
2262
  # @option params [String] :platform
2259
- # The platform for an Amplify app.
2263
+ # The platform for the Amplify app. For a static app, set the platform
2264
+ # type to `WEB`. For a dynamic server-side rendered (SSR) app, set the
2265
+ # platform type to `WEB_COMPUTE`. For an app requiring Amplify
2266
+ # Hosting's original SSR support only, set the platform type to
2267
+ # `WEB_DYNAMIC`.
2260
2268
  #
2261
2269
  # @option params [String] :iam_service_role_arn
2262
2270
  # The AWS Identity and Access Management (IAM) service role for an
@@ -2358,7 +2366,7 @@ module Aws::Amplify
2358
2366
  # app_id: "AppId", # required
2359
2367
  # name: "Name",
2360
2368
  # description: "Description",
2361
- # platform: "WEB", # accepts WEB, WEB_DYNAMIC
2369
+ # platform: "WEB", # accepts WEB, WEB_DYNAMIC, WEB_COMPUTE
2362
2370
  # iam_service_role_arn: "ServiceRoleArn",
2363
2371
  # environment_variables: {
2364
2372
  # "EnvKey" => "EnvValue",
@@ -2407,7 +2415,7 @@ module Aws::Amplify
2407
2415
  # resp.app.tags["TagKey"] #=> String
2408
2416
  # resp.app.description #=> String
2409
2417
  # resp.app.repository #=> String
2410
- # resp.app.platform #=> String, one of "WEB", "WEB_DYNAMIC"
2418
+ # resp.app.platform #=> String, one of "WEB", "WEB_DYNAMIC", "WEB_COMPUTE"
2411
2419
  # resp.app.create_time #=> Time
2412
2420
  # resp.app.update_time #=> Time
2413
2421
  # resp.app.iam_service_role_arn #=> String
@@ -2709,7 +2717,7 @@ module Aws::Amplify
2709
2717
  params: params,
2710
2718
  config: config)
2711
2719
  context[:gem_name] = 'aws-sdk-amplify'
2712
- context[:gem_version] = '1.42.0'
2720
+ context[:gem_version] = '1.43.0'
2713
2721
  Seahorse::Client::Request.new(handlers, context)
2714
2722
  end
2715
2723
 
@@ -38,7 +38,11 @@ module Aws::Amplify
38
38
  # @return [String]
39
39
  #
40
40
  # @!attribute [rw] platform
41
- # The platform for the Amplify app.
41
+ # The platform for the Amplify app. For a static app, set the platform
42
+ # type to `WEB`. For a dynamic server-side rendered (SSR) app, set the
43
+ # platform type to `WEB_COMPUTE`. For an app requiring Amplify
44
+ # Hosting's original SSR support only, set the platform type to
45
+ # `WEB_DYNAMIC`.
42
46
  # @return [String]
43
47
  #
44
48
  # @!attribute [rw] create_time
@@ -481,7 +485,7 @@ module Aws::Amplify
481
485
  # name: "Name", # required
482
486
  # description: "Description",
483
487
  # repository: "Repository",
484
- # platform: "WEB", # accepts WEB, WEB_DYNAMIC
488
+ # platform: "WEB", # accepts WEB, WEB_DYNAMIC, WEB_COMPUTE
485
489
  # iam_service_role_arn: "ServiceRoleArn",
486
490
  # oauth_token: "OauthToken",
487
491
  # access_token: "AccessToken",
@@ -536,7 +540,11 @@ module Aws::Amplify
536
540
  # @return [String]
537
541
  #
538
542
  # @!attribute [rw] platform
539
- # The platform or framework for an Amplify app.
543
+ # The platform for the Amplify app. For a static app, set the platform
544
+ # type to `WEB`. For a dynamic server-side rendered (SSR) app, set the
545
+ # platform type to `WEB_COMPUTE`. For an app requiring Amplify
546
+ # Hosting's original SSR support only, set the platform type to
547
+ # `WEB_DYNAMIC`.
540
548
  # @return [String]
541
549
  #
542
550
  # @!attribute [rw] iam_service_role_arn
@@ -2777,7 +2785,7 @@ module Aws::Amplify
2777
2785
  # app_id: "AppId", # required
2778
2786
  # name: "Name",
2779
2787
  # description: "Description",
2780
- # platform: "WEB", # accepts WEB, WEB_DYNAMIC
2788
+ # platform: "WEB", # accepts WEB, WEB_DYNAMIC, WEB_COMPUTE
2781
2789
  # iam_service_role_arn: "ServiceRoleArn",
2782
2790
  # environment_variables: {
2783
2791
  # "EnvKey" => "EnvValue",
@@ -2830,7 +2838,11 @@ module Aws::Amplify
2830
2838
  # @return [String]
2831
2839
  #
2832
2840
  # @!attribute [rw] platform
2833
- # The platform for an Amplify app.
2841
+ # The platform for the Amplify app. For a static app, set the platform
2842
+ # type to `WEB`. For a dynamic server-side rendered (SSR) app, set the
2843
+ # platform type to `WEB_COMPUTE`. For an app requiring Amplify
2844
+ # Hosting's original SSR support only, set the platform type to
2845
+ # `WEB_DYNAMIC`.
2834
2846
  # @return [String]
2835
2847
  #
2836
2848
  # @!attribute [rw] iam_service_role_arn
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-amplify/customizations'
52
52
  # @!group service
53
53
  module Aws::Amplify
54
54
 
55
- GEM_VERSION = '1.42.0'
55
+ GEM_VERSION = '1.43.0'
56
56
 
57
57
  end
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.42.0
4
+ version: 1.43.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: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2022-11-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core