aws-sdk-amplifyuibuilder 1.6.0 → 1.7.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: ce106b86450f5c97d76728eefc3756fbe14eb109507015d506a94f344d383598
4
- data.tar.gz: 52ea24941b2b202cdff29e770f1703c4b35cd0b558a7b591d7844747cb0bc66f
3
+ metadata.gz: 9e8519cd8e0cfaefcf65ac2a897c117960c4c7708b68320e7584b73aed3fcba0
4
+ data.tar.gz: c373b417ed99058eeb7fd40207d2a07e630d033d87363384f663ba0a5709b840
5
5
  SHA512:
6
- metadata.gz: b62d7fe47f1e43ee48d7af049da14d537aec1ad6cc2252f3902431fad6ddf79da15bf3b8b63f0768237956e87bfa8346c1b06c1a3dcf9fd4d064332a40d3c5e2
7
- data.tar.gz: 0555babdfe8e5876ae8983828ba09aeae5d7a9d2785f56f4defa6824c267a226bc4641a134871ad5aa30a5fadfa1e2692c336a158a1d598c08307b0c24b49d8b
6
+ metadata.gz: 0ca3e103f1b1e1ada0d15f004fe5d23d7a5c7776d0048614da92683b00caa8fd52c36e99dbb84296a9299c0535117061a0df53b31c532308ee0249f4399f11bc
7
+ data.tar.gz: 6b1e043e6e86b06a01b0bd257d543fd23be53bc261f47081ba31787f34110f6f89e2d43b8af972ef371394c08a7320347a2125f5231cab080241b938153891ed
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.7.0 (2022-10-13)
5
+ ------------------
6
+
7
+ * Feature - We are releasing the ability for fields to be configured as arrays.
8
+
4
9
  1.6.0 (2022-09-14)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.0
1
+ 1.7.0
@@ -1918,6 +1918,7 @@ module Aws::AmplifyUIBuilder
1918
1918
  # default_country_code: "String",
1919
1919
  # default_value: "String",
1920
1920
  # descriptive_text: "String",
1921
+ # is_array: false,
1921
1922
  # max_value: 1.0,
1922
1923
  # min_value: 1.0,
1923
1924
  # name: "String",
@@ -2020,6 +2021,7 @@ module Aws::AmplifyUIBuilder
2020
2021
  # resp.entity.fields["String"].input_type.default_country_code #=> String
2021
2022
  # resp.entity.fields["String"].input_type.default_value #=> String
2022
2023
  # resp.entity.fields["String"].input_type.descriptive_text #=> String
2024
+ # resp.entity.fields["String"].input_type.is_array #=> Boolean
2023
2025
  # resp.entity.fields["String"].input_type.max_value #=> Float
2024
2026
  # resp.entity.fields["String"].input_type.min_value #=> Float
2025
2027
  # resp.entity.fields["String"].input_type.name #=> String
@@ -2925,6 +2927,7 @@ module Aws::AmplifyUIBuilder
2925
2927
  # resp.entities[0].fields["String"].input_type.default_country_code #=> String
2926
2928
  # resp.entities[0].fields["String"].input_type.default_value #=> String
2927
2929
  # resp.entities[0].fields["String"].input_type.descriptive_text #=> String
2930
+ # resp.entities[0].fields["String"].input_type.is_array #=> Boolean
2928
2931
  # resp.entities[0].fields["String"].input_type.max_value #=> Float
2929
2932
  # resp.entities[0].fields["String"].input_type.min_value #=> Float
2930
2933
  # resp.entities[0].fields["String"].input_type.name #=> String
@@ -3661,6 +3664,7 @@ module Aws::AmplifyUIBuilder
3661
3664
  # resp.form.fields["String"].input_type.default_country_code #=> String
3662
3665
  # resp.form.fields["String"].input_type.default_value #=> String
3663
3666
  # resp.form.fields["String"].input_type.descriptive_text #=> String
3667
+ # resp.form.fields["String"].input_type.is_array #=> Boolean
3664
3668
  # resp.form.fields["String"].input_type.max_value #=> Float
3665
3669
  # resp.form.fields["String"].input_type.min_value #=> Float
3666
3670
  # resp.form.fields["String"].input_type.name #=> String
@@ -5595,6 +5599,7 @@ module Aws::AmplifyUIBuilder
5595
5599
  # default_country_code: "String",
5596
5600
  # default_value: "String",
5597
5601
  # descriptive_text: "String",
5602
+ # is_array: false,
5598
5603
  # max_value: 1.0,
5599
5604
  # min_value: 1.0,
5600
5605
  # name: "String",
@@ -5694,6 +5699,7 @@ module Aws::AmplifyUIBuilder
5694
5699
  # resp.entity.fields["String"].input_type.default_country_code #=> String
5695
5700
  # resp.entity.fields["String"].input_type.default_value #=> String
5696
5701
  # resp.entity.fields["String"].input_type.descriptive_text #=> String
5702
+ # resp.entity.fields["String"].input_type.is_array #=> Boolean
5697
5703
  # resp.entity.fields["String"].input_type.max_value #=> Float
5698
5704
  # resp.entity.fields["String"].input_type.min_value #=> Float
5699
5705
  # resp.entity.fields["String"].input_type.name #=> String
@@ -5847,7 +5853,7 @@ module Aws::AmplifyUIBuilder
5847
5853
  params: params,
5848
5854
  config: config)
5849
5855
  context[:gem_name] = 'aws-sdk-amplifyuibuilder'
5850
- context[:gem_version] = '1.6.0'
5856
+ context[:gem_version] = '1.7.0'
5851
5857
  Seahorse::Client::Request.new(handlers, context)
5852
5858
  end
5853
5859
 
@@ -256,7 +256,7 @@ module Aws::AmplifyUIBuilder
256
256
  ComponentProperty.add_member(:component_name, Shapes::ShapeRef.new(shape: String, location_name: "componentName"))
257
257
  ComponentProperty.add_member(:concat, Shapes::ShapeRef.new(shape: ComponentPropertyList, location_name: "concat"))
258
258
  ComponentProperty.add_member(:condition, Shapes::ShapeRef.new(shape: ComponentConditionProperty, location_name: "condition"))
259
- ComponentProperty.add_member(:configured, Shapes::ShapeRef.new(shape: Boolean, location_name: "configured", metadata: {"box"=>true}))
259
+ ComponentProperty.add_member(:configured, Shapes::ShapeRef.new(shape: Boolean, location_name: "configured"))
260
260
  ComponentProperty.add_member(:default_value, Shapes::ShapeRef.new(shape: String, location_name: "defaultValue"))
261
261
  ComponentProperty.add_member(:event, Shapes::ShapeRef.new(shape: String, location_name: "event"))
262
262
  ComponentProperty.add_member(:imported_value, Shapes::ShapeRef.new(shape: String, location_name: "importedValue"))
@@ -387,7 +387,7 @@ module Aws::AmplifyUIBuilder
387
387
  ExchangeCodeForTokenRequestBody.struct_class = Types::ExchangeCodeForTokenRequestBody
388
388
 
389
389
  ExchangeCodeForTokenResponse.add_member(:access_token, Shapes::ShapeRef.new(shape: SensitiveString, required: true, location_name: "accessToken"))
390
- ExchangeCodeForTokenResponse.add_member(:expires_in, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "expiresIn", metadata: {"box"=>true}))
390
+ ExchangeCodeForTokenResponse.add_member(:expires_in, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "expiresIn"))
391
391
  ExchangeCodeForTokenResponse.add_member(:refresh_token, Shapes::ShapeRef.new(shape: SensitiveString, required: true, location_name: "refreshToken"))
392
392
  ExchangeCodeForTokenResponse.struct_class = Types::ExchangeCodeForTokenResponse
393
393
 
@@ -421,24 +421,25 @@ module Aws::AmplifyUIBuilder
421
421
  FeaturesMap.key = Shapes::ShapeRef.new(shape: String)
422
422
  FeaturesMap.value = Shapes::ShapeRef.new(shape: String)
423
423
 
424
- FieldConfig.add_member(:excluded, Shapes::ShapeRef.new(shape: Boolean, location_name: "excluded", metadata: {"box"=>true}))
424
+ FieldConfig.add_member(:excluded, Shapes::ShapeRef.new(shape: Boolean, location_name: "excluded"))
425
425
  FieldConfig.add_member(:input_type, Shapes::ShapeRef.new(shape: FieldInputConfig, location_name: "inputType"))
426
426
  FieldConfig.add_member(:label, Shapes::ShapeRef.new(shape: String, location_name: "label"))
427
427
  FieldConfig.add_member(:position, Shapes::ShapeRef.new(shape: FieldPosition, location_name: "position"))
428
428
  FieldConfig.add_member(:validations, Shapes::ShapeRef.new(shape: ValidationsList, location_name: "validations"))
429
429
  FieldConfig.struct_class = Types::FieldConfig
430
430
 
431
- FieldInputConfig.add_member(:default_checked, Shapes::ShapeRef.new(shape: Boolean, location_name: "defaultChecked", metadata: {"box"=>true}))
431
+ FieldInputConfig.add_member(:default_checked, Shapes::ShapeRef.new(shape: Boolean, location_name: "defaultChecked"))
432
432
  FieldInputConfig.add_member(:default_country_code, Shapes::ShapeRef.new(shape: String, location_name: "defaultCountryCode"))
433
433
  FieldInputConfig.add_member(:default_value, Shapes::ShapeRef.new(shape: String, location_name: "defaultValue"))
434
434
  FieldInputConfig.add_member(:descriptive_text, Shapes::ShapeRef.new(shape: String, location_name: "descriptiveText"))
435
- FieldInputConfig.add_member(:max_value, Shapes::ShapeRef.new(shape: Float, location_name: "maxValue", metadata: {"box"=>true}))
436
- FieldInputConfig.add_member(:min_value, Shapes::ShapeRef.new(shape: Float, location_name: "minValue", metadata: {"box"=>true}))
435
+ FieldInputConfig.add_member(:is_array, Shapes::ShapeRef.new(shape: Boolean, location_name: "isArray"))
436
+ FieldInputConfig.add_member(:max_value, Shapes::ShapeRef.new(shape: Float, location_name: "maxValue"))
437
+ FieldInputConfig.add_member(:min_value, Shapes::ShapeRef.new(shape: Float, location_name: "minValue"))
437
438
  FieldInputConfig.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
438
439
  FieldInputConfig.add_member(:placeholder, Shapes::ShapeRef.new(shape: String, location_name: "placeholder"))
439
- FieldInputConfig.add_member(:read_only, Shapes::ShapeRef.new(shape: Boolean, location_name: "readOnly", metadata: {"box"=>true}))
440
- FieldInputConfig.add_member(:required, Shapes::ShapeRef.new(shape: Boolean, location_name: "required", metadata: {"box"=>true}))
441
- FieldInputConfig.add_member(:step, Shapes::ShapeRef.new(shape: Float, location_name: "step", metadata: {"box"=>true}))
440
+ FieldInputConfig.add_member(:read_only, Shapes::ShapeRef.new(shape: Boolean, location_name: "readOnly"))
441
+ FieldInputConfig.add_member(:required, Shapes::ShapeRef.new(shape: Boolean, location_name: "required"))
442
+ FieldInputConfig.add_member(:step, Shapes::ShapeRef.new(shape: Float, location_name: "step"))
442
443
  FieldInputConfig.add_member(:type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "type"))
443
444
  FieldInputConfig.add_member(:value, Shapes::ShapeRef.new(shape: String, location_name: "value"))
444
445
  FieldInputConfig.add_member(:value_mappings, Shapes::ShapeRef.new(shape: ValueMappings, location_name: "valueMappings"))
@@ -485,7 +486,7 @@ module Aws::AmplifyUIBuilder
485
486
  FormBindings.value = Shapes::ShapeRef.new(shape: FormBindingElement)
486
487
 
487
488
  FormButton.add_member(:children, Shapes::ShapeRef.new(shape: String, location_name: "children"))
488
- FormButton.add_member(:excluded, Shapes::ShapeRef.new(shape: Boolean, location_name: "excluded", metadata: {"box"=>true}))
489
+ FormButton.add_member(:excluded, Shapes::ShapeRef.new(shape: Boolean, location_name: "excluded"))
489
490
  FormButton.add_member(:position, Shapes::ShapeRef.new(shape: FieldPosition, location_name: "position"))
490
491
  FormButton.struct_class = Types::FormButton
491
492
 
@@ -574,7 +575,7 @@ module Aws::AmplifyUIBuilder
574
575
 
575
576
  ListComponentsRequest.add_member(:app_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "appId"))
576
577
  ListComponentsRequest.add_member(:environment_name, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "environmentName"))
577
- ListComponentsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListComponentsLimit, location: "querystring", location_name: "maxResults", metadata: {"box"=>true}))
578
+ ListComponentsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListComponentsLimit, location: "querystring", location_name: "maxResults"))
578
579
  ListComponentsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "nextToken"))
579
580
  ListComponentsRequest.struct_class = Types::ListComponentsRequest
580
581
 
@@ -584,7 +585,7 @@ module Aws::AmplifyUIBuilder
584
585
 
585
586
  ListFormsRequest.add_member(:app_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "appId"))
586
587
  ListFormsRequest.add_member(:environment_name, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "environmentName"))
587
- ListFormsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListFormsLimit, location: "querystring", location_name: "maxResults", metadata: {"box"=>true}))
588
+ ListFormsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListFormsLimit, location: "querystring", location_name: "maxResults"))
588
589
  ListFormsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "nextToken"))
589
590
  ListFormsRequest.struct_class = Types::ListFormsRequest
590
591
 
@@ -594,7 +595,7 @@ module Aws::AmplifyUIBuilder
594
595
 
595
596
  ListThemesRequest.add_member(:app_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "appId"))
596
597
  ListThemesRequest.add_member(:environment_name, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "environmentName"))
597
- ListThemesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListThemesLimit, location: "querystring", location_name: "maxResults", metadata: {"box"=>true}))
598
+ ListThemesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListThemesLimit, location: "querystring", location_name: "maxResults"))
598
599
  ListThemesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "nextToken"))
599
600
  ListThemesRequest.struct_class = Types::ListThemesRequest
600
601
 
@@ -639,7 +640,7 @@ module Aws::AmplifyUIBuilder
639
640
  RefreshTokenRequestBody.struct_class = Types::RefreshTokenRequestBody
640
641
 
641
642
  RefreshTokenResponse.add_member(:access_token, Shapes::ShapeRef.new(shape: SensitiveString, required: true, location_name: "accessToken"))
642
- RefreshTokenResponse.add_member(:expires_in, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "expiresIn", metadata: {"box"=>true}))
643
+ RefreshTokenResponse.add_member(:expires_in, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "expiresIn"))
643
644
  RefreshTokenResponse.struct_class = Types::RefreshTokenResponse
644
645
 
645
646
  ResourceConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
@@ -648,7 +649,7 @@ module Aws::AmplifyUIBuilder
648
649
  ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
649
650
  ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
650
651
 
651
- SectionalElement.add_member(:level, Shapes::ShapeRef.new(shape: Integer, location_name: "level", metadata: {"box"=>true}))
652
+ SectionalElement.add_member(:level, Shapes::ShapeRef.new(shape: Integer, location_name: "level"))
652
653
  SectionalElement.add_member(:orientation, Shapes::ShapeRef.new(shape: String, location_name: "orientation"))
653
654
  SectionalElement.add_member(:position, Shapes::ShapeRef.new(shape: FieldPosition, location_name: "position"))
654
655
  SectionalElement.add_member(:text, Shapes::ShapeRef.new(shape: String, location_name: "text"))
@@ -4540,6 +4540,7 @@ module Aws::AmplifyUIBuilder
4540
4540
  # default_country_code: "String",
4541
4541
  # default_value: "String",
4542
4542
  # descriptive_text: "String",
4543
+ # is_array: false,
4543
4544
  # max_value: 1.0,
4544
4545
  # min_value: 1.0,
4545
4546
  # name: "String",
@@ -4717,6 +4718,7 @@ module Aws::AmplifyUIBuilder
4717
4718
  # default_country_code: "String",
4718
4719
  # default_value: "String",
4719
4720
  # descriptive_text: "String",
4721
+ # is_array: false,
4720
4722
  # max_value: 1.0,
4721
4723
  # min_value: 1.0,
4722
4724
  # name: "String",
@@ -5312,6 +5314,7 @@ module Aws::AmplifyUIBuilder
5312
5314
  # default_country_code: "String",
5313
5315
  # default_value: "String",
5314
5316
  # descriptive_text: "String",
5317
+ # is_array: false,
5315
5318
  # max_value: 1.0,
5316
5319
  # min_value: 1.0,
5317
5320
  # name: "String",
@@ -5394,6 +5397,7 @@ module Aws::AmplifyUIBuilder
5394
5397
  # default_country_code: "String",
5395
5398
  # default_value: "String",
5396
5399
  # descriptive_text: "String",
5400
+ # is_array: false,
5397
5401
  # max_value: 1.0,
5398
5402
  # min_value: 1.0,
5399
5403
  # name: "String",
@@ -5433,6 +5437,11 @@ module Aws::AmplifyUIBuilder
5433
5437
  # The text to display to describe the field.
5434
5438
  # @return [String]
5435
5439
  #
5440
+ # @!attribute [rw] is_array
5441
+ # Specifies whether to render the field as an array. This property is
5442
+ # ignored if the `dataSourceType` for the form is a Data Store.
5443
+ # @return [Boolean]
5444
+ #
5436
5445
  # @!attribute [rw] max_value
5437
5446
  # The maximum value to display for the field.
5438
5447
  # @return [Float]
@@ -5481,6 +5490,7 @@ module Aws::AmplifyUIBuilder
5481
5490
  :default_country_code,
5482
5491
  :default_value,
5483
5492
  :descriptive_text,
5493
+ :is_array,
5484
5494
  :max_value,
5485
5495
  :min_value,
5486
5496
  :name,
@@ -5710,7 +5720,7 @@ module Aws::AmplifyUIBuilder
5710
5720
  include Aws::Structure
5711
5721
  end
5712
5722
 
5713
- # Describes the call to action button configuration for the form..
5723
+ # Describes the call to action button configuration for the form.
5714
5724
  #
5715
5725
  # @note When making an API call, you may pass FormCTA
5716
5726
  # data as a hash:
@@ -8881,6 +8891,7 @@ module Aws::AmplifyUIBuilder
8881
8891
  # default_country_code: "String",
8882
8892
  # default_value: "String",
8883
8893
  # descriptive_text: "String",
8894
+ # is_array: false,
8884
8895
  # max_value: 1.0,
8885
8896
  # min_value: 1.0,
8886
8897
  # name: "String",
@@ -9051,6 +9062,7 @@ module Aws::AmplifyUIBuilder
9051
9062
  # default_country_code: "String",
9052
9063
  # default_value: "String",
9053
9064
  # descriptive_text: "String",
9065
+ # is_array: false,
9054
9066
  # max_value: 1.0,
9055
9067
  # min_value: 1.0,
9056
9068
  # name: "String",
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-amplifyuibuilder/customizations'
48
48
  # @!group service
49
49
  module Aws::AmplifyUIBuilder
50
50
 
51
- GEM_VERSION = '1.6.0'
51
+ GEM_VERSION = '1.7.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-amplifyuibuilder
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.7.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-09-14 00:00:00.000000000 Z
11
+ date: 2022-10-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core