aws-sdk-amplifyuibuilder 1.4.0 → 1.5.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-amplifyuibuilder/client.rb +21 -3
- data/lib/aws-sdk-amplifyuibuilder/client_api.rb +8 -9
- data/lib/aws-sdk-amplifyuibuilder/types.rb +34 -5
- data/lib/aws-sdk-amplifyuibuilder.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: 0e85cab655e3b57ea769db4b6a2b8f1eca302f2fb4d4fd8b6f4faf5312c4840c
|
|
4
|
+
data.tar.gz: 845525df5d4e3e802ad2281e83c2270823ccfe4dfa12da7246f1fbac4b39c7f1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0a578b510a7af4f219cd19ede21200279211326376adde756cdfc3633972acabe374f376377330722b849b5deb1fcec43a1c769c5c87ad5daa70ea5a3c4def17
|
|
7
|
+
data.tar.gz: c6b895ef8f9f7a4dab64cd9d4ef7489186a72512c2d1d975c072ac2c283989026cbf57145cd09d46e1586d4b8b95b47c1e9439b83e230258af20e6baf0a6e8af
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.5.0
|
|
@@ -414,6 +414,7 @@ module Aws::AmplifyUIBuilder
|
|
|
414
414
|
# events: {
|
|
415
415
|
# "String" => {
|
|
416
416
|
# action: "String",
|
|
417
|
+
# binding_event: "String",
|
|
417
418
|
# parameters: {
|
|
418
419
|
# anchor: {
|
|
419
420
|
# binding_properties: {
|
|
@@ -824,6 +825,7 @@ module Aws::AmplifyUIBuilder
|
|
|
824
825
|
# value: "String",
|
|
825
826
|
# },
|
|
826
827
|
# },
|
|
828
|
+
# source_id: "String",
|
|
827
829
|
# },
|
|
828
830
|
# ],
|
|
829
831
|
# collection_properties: {
|
|
@@ -857,6 +859,7 @@ module Aws::AmplifyUIBuilder
|
|
|
857
859
|
# events: {
|
|
858
860
|
# "String" => {
|
|
859
861
|
# action: "String",
|
|
862
|
+
# binding_event: "String",
|
|
860
863
|
# parameters: {
|
|
861
864
|
# anchor: {
|
|
862
865
|
# binding_properties: {
|
|
@@ -1316,6 +1319,7 @@ module Aws::AmplifyUIBuilder
|
|
|
1316
1319
|
# resp.entity.children[0].component_type #=> String
|
|
1317
1320
|
# resp.entity.children[0].events #=> Hash
|
|
1318
1321
|
# resp.entity.children[0].events["String"].action #=> String
|
|
1322
|
+
# resp.entity.children[0].events["String"].binding_event #=> String
|
|
1319
1323
|
# resp.entity.children[0].events["String"].parameters.anchor.binding_properties.field #=> String
|
|
1320
1324
|
# resp.entity.children[0].events["String"].parameters.anchor.binding_properties.property #=> String
|
|
1321
1325
|
# resp.entity.children[0].events["String"].parameters.anchor.bindings #=> Hash
|
|
@@ -1556,6 +1560,7 @@ module Aws::AmplifyUIBuilder
|
|
|
1556
1560
|
# resp.entity.children[0].properties["String"].type #=> String
|
|
1557
1561
|
# resp.entity.children[0].properties["String"].user_attribute #=> String
|
|
1558
1562
|
# resp.entity.children[0].properties["String"].value #=> String
|
|
1563
|
+
# resp.entity.children[0].source_id #=> String
|
|
1559
1564
|
# resp.entity.collection_properties #=> Hash
|
|
1560
1565
|
# resp.entity.collection_properties["String"].identifiers #=> Array
|
|
1561
1566
|
# resp.entity.collection_properties["String"].identifiers[0] #=> String
|
|
@@ -1575,6 +1580,7 @@ module Aws::AmplifyUIBuilder
|
|
|
1575
1580
|
# resp.entity.environment_name #=> String
|
|
1576
1581
|
# resp.entity.events #=> Hash
|
|
1577
1582
|
# resp.entity.events["String"].action #=> String
|
|
1583
|
+
# resp.entity.events["String"].binding_event #=> String
|
|
1578
1584
|
# resp.entity.events["String"].parameters.anchor.binding_properties.field #=> String
|
|
1579
1585
|
# resp.entity.events["String"].parameters.anchor.binding_properties.property #=> String
|
|
1580
1586
|
# resp.entity.events["String"].parameters.anchor.bindings #=> Hash
|
|
@@ -2006,7 +2012,7 @@ module Aws::AmplifyUIBuilder
|
|
|
2006
2012
|
# resp = client.exchange_code_for_token({
|
|
2007
2013
|
# provider: "figma", # required, accepts figma
|
|
2008
2014
|
# request: { # required
|
|
2009
|
-
# code: "
|
|
2015
|
+
# code: "SensitiveString", # required
|
|
2010
2016
|
# redirect_uri: "String", # required
|
|
2011
2017
|
# },
|
|
2012
2018
|
# })
|
|
@@ -2077,6 +2083,7 @@ module Aws::AmplifyUIBuilder
|
|
|
2077
2083
|
# resp.entities[0].children[0].component_type #=> String
|
|
2078
2084
|
# resp.entities[0].children[0].events #=> Hash
|
|
2079
2085
|
# resp.entities[0].children[0].events["String"].action #=> String
|
|
2086
|
+
# resp.entities[0].children[0].events["String"].binding_event #=> String
|
|
2080
2087
|
# resp.entities[0].children[0].events["String"].parameters.anchor.binding_properties.field #=> String
|
|
2081
2088
|
# resp.entities[0].children[0].events["String"].parameters.anchor.binding_properties.property #=> String
|
|
2082
2089
|
# resp.entities[0].children[0].events["String"].parameters.anchor.bindings #=> Hash
|
|
@@ -2317,6 +2324,7 @@ module Aws::AmplifyUIBuilder
|
|
|
2317
2324
|
# resp.entities[0].children[0].properties["String"].type #=> String
|
|
2318
2325
|
# resp.entities[0].children[0].properties["String"].user_attribute #=> String
|
|
2319
2326
|
# resp.entities[0].children[0].properties["String"].value #=> String
|
|
2327
|
+
# resp.entities[0].children[0].source_id #=> String
|
|
2320
2328
|
# resp.entities[0].collection_properties #=> Hash
|
|
2321
2329
|
# resp.entities[0].collection_properties["String"].identifiers #=> Array
|
|
2322
2330
|
# resp.entities[0].collection_properties["String"].identifiers[0] #=> String
|
|
@@ -2336,6 +2344,7 @@ module Aws::AmplifyUIBuilder
|
|
|
2336
2344
|
# resp.entities[0].environment_name #=> String
|
|
2337
2345
|
# resp.entities[0].events #=> Hash
|
|
2338
2346
|
# resp.entities[0].events["String"].action #=> String
|
|
2347
|
+
# resp.entities[0].events["String"].binding_event #=> String
|
|
2339
2348
|
# resp.entities[0].events["String"].parameters.anchor.binding_properties.field #=> String
|
|
2340
2349
|
# resp.entities[0].events["String"].parameters.anchor.binding_properties.property #=> String
|
|
2341
2350
|
# resp.entities[0].events["String"].parameters.anchor.bindings #=> Hash
|
|
@@ -2705,6 +2714,7 @@ module Aws::AmplifyUIBuilder
|
|
|
2705
2714
|
# resp.component.children[0].component_type #=> String
|
|
2706
2715
|
# resp.component.children[0].events #=> Hash
|
|
2707
2716
|
# resp.component.children[0].events["String"].action #=> String
|
|
2717
|
+
# resp.component.children[0].events["String"].binding_event #=> String
|
|
2708
2718
|
# resp.component.children[0].events["String"].parameters.anchor.binding_properties.field #=> String
|
|
2709
2719
|
# resp.component.children[0].events["String"].parameters.anchor.binding_properties.property #=> String
|
|
2710
2720
|
# resp.component.children[0].events["String"].parameters.anchor.bindings #=> Hash
|
|
@@ -2945,6 +2955,7 @@ module Aws::AmplifyUIBuilder
|
|
|
2945
2955
|
# resp.component.children[0].properties["String"].type #=> String
|
|
2946
2956
|
# resp.component.children[0].properties["String"].user_attribute #=> String
|
|
2947
2957
|
# resp.component.children[0].properties["String"].value #=> String
|
|
2958
|
+
# resp.component.children[0].source_id #=> String
|
|
2948
2959
|
# resp.component.collection_properties #=> Hash
|
|
2949
2960
|
# resp.component.collection_properties["String"].identifiers #=> Array
|
|
2950
2961
|
# resp.component.collection_properties["String"].identifiers[0] #=> String
|
|
@@ -2964,6 +2975,7 @@ module Aws::AmplifyUIBuilder
|
|
|
2964
2975
|
# resp.component.environment_name #=> String
|
|
2965
2976
|
# resp.component.events #=> Hash
|
|
2966
2977
|
# resp.component.events["String"].action #=> String
|
|
2978
|
+
# resp.component.events["String"].binding_event #=> String
|
|
2967
2979
|
# resp.component.events["String"].parameters.anchor.binding_properties.field #=> String
|
|
2968
2980
|
# resp.component.events["String"].parameters.anchor.binding_properties.property #=> String
|
|
2969
2981
|
# resp.component.events["String"].parameters.anchor.bindings #=> Hash
|
|
@@ -3398,7 +3410,7 @@ module Aws::AmplifyUIBuilder
|
|
|
3398
3410
|
# resp = client.refresh_token({
|
|
3399
3411
|
# provider: "figma", # required, accepts figma
|
|
3400
3412
|
# refresh_token_body: { # required
|
|
3401
|
-
# token: "
|
|
3413
|
+
# token: "SensitiveString", # required
|
|
3402
3414
|
# },
|
|
3403
3415
|
# })
|
|
3404
3416
|
#
|
|
@@ -3484,6 +3496,7 @@ module Aws::AmplifyUIBuilder
|
|
|
3484
3496
|
# events: {
|
|
3485
3497
|
# "String" => {
|
|
3486
3498
|
# action: "String",
|
|
3499
|
+
# binding_event: "String",
|
|
3487
3500
|
# parameters: {
|
|
3488
3501
|
# anchor: {
|
|
3489
3502
|
# binding_properties: {
|
|
@@ -3894,6 +3907,7 @@ module Aws::AmplifyUIBuilder
|
|
|
3894
3907
|
# value: "String",
|
|
3895
3908
|
# },
|
|
3896
3909
|
# },
|
|
3910
|
+
# source_id: "String",
|
|
3897
3911
|
# },
|
|
3898
3912
|
# ],
|
|
3899
3913
|
# collection_properties: {
|
|
@@ -3927,6 +3941,7 @@ module Aws::AmplifyUIBuilder
|
|
|
3927
3941
|
# events: {
|
|
3928
3942
|
# "String" => {
|
|
3929
3943
|
# action: "String",
|
|
3944
|
+
# binding_event: "String",
|
|
3930
3945
|
# parameters: {
|
|
3931
3946
|
# anchor: {
|
|
3932
3947
|
# binding_properties: {
|
|
@@ -4383,6 +4398,7 @@ module Aws::AmplifyUIBuilder
|
|
|
4383
4398
|
# resp.entity.children[0].component_type #=> String
|
|
4384
4399
|
# resp.entity.children[0].events #=> Hash
|
|
4385
4400
|
# resp.entity.children[0].events["String"].action #=> String
|
|
4401
|
+
# resp.entity.children[0].events["String"].binding_event #=> String
|
|
4386
4402
|
# resp.entity.children[0].events["String"].parameters.anchor.binding_properties.field #=> String
|
|
4387
4403
|
# resp.entity.children[0].events["String"].parameters.anchor.binding_properties.property #=> String
|
|
4388
4404
|
# resp.entity.children[0].events["String"].parameters.anchor.bindings #=> Hash
|
|
@@ -4623,6 +4639,7 @@ module Aws::AmplifyUIBuilder
|
|
|
4623
4639
|
# resp.entity.children[0].properties["String"].type #=> String
|
|
4624
4640
|
# resp.entity.children[0].properties["String"].user_attribute #=> String
|
|
4625
4641
|
# resp.entity.children[0].properties["String"].value #=> String
|
|
4642
|
+
# resp.entity.children[0].source_id #=> String
|
|
4626
4643
|
# resp.entity.collection_properties #=> Hash
|
|
4627
4644
|
# resp.entity.collection_properties["String"].identifiers #=> Array
|
|
4628
4645
|
# resp.entity.collection_properties["String"].identifiers[0] #=> String
|
|
@@ -4642,6 +4659,7 @@ module Aws::AmplifyUIBuilder
|
|
|
4642
4659
|
# resp.entity.environment_name #=> String
|
|
4643
4660
|
# resp.entity.events #=> Hash
|
|
4644
4661
|
# resp.entity.events["String"].action #=> String
|
|
4662
|
+
# resp.entity.events["String"].binding_event #=> String
|
|
4645
4663
|
# resp.entity.events["String"].parameters.anchor.binding_properties.field #=> String
|
|
4646
4664
|
# resp.entity.events["String"].parameters.anchor.binding_properties.property #=> String
|
|
4647
4665
|
# resp.entity.events["String"].parameters.anchor.bindings #=> Hash
|
|
@@ -5007,7 +5025,7 @@ module Aws::AmplifyUIBuilder
|
|
|
5007
5025
|
params: params,
|
|
5008
5026
|
config: config)
|
|
5009
5027
|
context[:gem_name] = 'aws-sdk-amplifyuibuilder'
|
|
5010
|
-
context[:gem_version] = '1.
|
|
5028
|
+
context[:gem_version] = '1.5.0'
|
|
5011
5029
|
Seahorse::Client::Request.new(handlers, context)
|
|
5012
5030
|
end
|
|
5013
5031
|
|
|
@@ -79,15 +79,12 @@ module Aws::AmplifyUIBuilder
|
|
|
79
79
|
RefreshTokenResponse = Shapes::StructureShape.new(name: 'RefreshTokenResponse')
|
|
80
80
|
ResourceConflictException = Shapes::StructureShape.new(name: 'ResourceConflictException')
|
|
81
81
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
|
82
|
+
SensitiveString = Shapes::StringShape.new(name: 'SensitiveString')
|
|
82
83
|
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
|
83
84
|
SortDirection = Shapes::StringShape.new(name: 'SortDirection')
|
|
84
85
|
SortProperty = Shapes::StructureShape.new(name: 'SortProperty')
|
|
85
86
|
SortPropertyList = Shapes::ListShape.new(name: 'SortPropertyList')
|
|
86
87
|
String = Shapes::StringShape.new(name: 'String')
|
|
87
|
-
SyntheticExchangeCodeForTokenRequestBodyString = Shapes::StringShape.new(name: 'SyntheticExchangeCodeForTokenRequestBodyString')
|
|
88
|
-
SyntheticExchangeCodeForTokenResponseString = Shapes::StringShape.new(name: 'SyntheticExchangeCodeForTokenResponseString')
|
|
89
|
-
SyntheticRefreshTokenRequestBodyString = Shapes::StringShape.new(name: 'SyntheticRefreshTokenRequestBodyString')
|
|
90
|
-
SyntheticRefreshTokenResponseString = Shapes::StringShape.new(name: 'SyntheticRefreshTokenResponseString')
|
|
91
88
|
SyntheticTimestamp_date_time = Shapes::TimestampShape.new(name: 'SyntheticTimestamp_date_time', timestampFormat: "iso8601")
|
|
92
89
|
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
|
93
90
|
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
|
@@ -161,6 +158,7 @@ module Aws::AmplifyUIBuilder
|
|
|
161
158
|
ComponentChild.add_member(:events, Shapes::ShapeRef.new(shape: ComponentEvents, location_name: "events"))
|
|
162
159
|
ComponentChild.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "name"))
|
|
163
160
|
ComponentChild.add_member(:properties, Shapes::ShapeRef.new(shape: ComponentProperties, required: true, location_name: "properties"))
|
|
161
|
+
ComponentChild.add_member(:source_id, Shapes::ShapeRef.new(shape: String, location_name: "sourceId"))
|
|
164
162
|
ComponentChild.struct_class = Types::ComponentChild
|
|
165
163
|
|
|
166
164
|
ComponentChildList.member = Shapes::ShapeRef.new(shape: ComponentChild)
|
|
@@ -184,6 +182,7 @@ module Aws::AmplifyUIBuilder
|
|
|
184
182
|
ComponentDataConfiguration.struct_class = Types::ComponentDataConfiguration
|
|
185
183
|
|
|
186
184
|
ComponentEvent.add_member(:action, Shapes::ShapeRef.new(shape: String, location_name: "action"))
|
|
185
|
+
ComponentEvent.add_member(:binding_event, Shapes::ShapeRef.new(shape: String, location_name: "bindingEvent"))
|
|
187
186
|
ComponentEvent.add_member(:parameters, Shapes::ShapeRef.new(shape: ActionParameters, location_name: "parameters"))
|
|
188
187
|
ComponentEvent.struct_class = Types::ComponentEvent
|
|
189
188
|
|
|
@@ -304,13 +303,13 @@ module Aws::AmplifyUIBuilder
|
|
|
304
303
|
ExchangeCodeForTokenRequest[:payload] = :request
|
|
305
304
|
ExchangeCodeForTokenRequest[:payload_member] = ExchangeCodeForTokenRequest.member(:request)
|
|
306
305
|
|
|
307
|
-
ExchangeCodeForTokenRequestBody.add_member(:code, Shapes::ShapeRef.new(shape:
|
|
306
|
+
ExchangeCodeForTokenRequestBody.add_member(:code, Shapes::ShapeRef.new(shape: SensitiveString, required: true, location_name: "code"))
|
|
308
307
|
ExchangeCodeForTokenRequestBody.add_member(:redirect_uri, Shapes::ShapeRef.new(shape: String, required: true, location_name: "redirectUri"))
|
|
309
308
|
ExchangeCodeForTokenRequestBody.struct_class = Types::ExchangeCodeForTokenRequestBody
|
|
310
309
|
|
|
311
|
-
ExchangeCodeForTokenResponse.add_member(:access_token, Shapes::ShapeRef.new(shape:
|
|
310
|
+
ExchangeCodeForTokenResponse.add_member(:access_token, Shapes::ShapeRef.new(shape: SensitiveString, required: true, location_name: "accessToken"))
|
|
312
311
|
ExchangeCodeForTokenResponse.add_member(:expires_in, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "expiresIn"))
|
|
313
|
-
ExchangeCodeForTokenResponse.add_member(:refresh_token, Shapes::ShapeRef.new(shape:
|
|
312
|
+
ExchangeCodeForTokenResponse.add_member(:refresh_token, Shapes::ShapeRef.new(shape: SensitiveString, required: true, location_name: "refreshToken"))
|
|
314
313
|
ExchangeCodeForTokenResponse.struct_class = Types::ExchangeCodeForTokenResponse
|
|
315
314
|
|
|
316
315
|
ExportComponentsRequest.add_member(:app_id, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "appId"))
|
|
@@ -406,10 +405,10 @@ module Aws::AmplifyUIBuilder
|
|
|
406
405
|
RefreshTokenRequest[:payload] = :refresh_token_body
|
|
407
406
|
RefreshTokenRequest[:payload_member] = RefreshTokenRequest.member(:refresh_token_body)
|
|
408
407
|
|
|
409
|
-
RefreshTokenRequestBody.add_member(:token, Shapes::ShapeRef.new(shape:
|
|
408
|
+
RefreshTokenRequestBody.add_member(:token, Shapes::ShapeRef.new(shape: SensitiveString, required: true, location_name: "token"))
|
|
410
409
|
RefreshTokenRequestBody.struct_class = Types::RefreshTokenRequestBody
|
|
411
410
|
|
|
412
|
-
RefreshTokenResponse.add_member(:access_token, Shapes::ShapeRef.new(shape:
|
|
411
|
+
RefreshTokenResponse.add_member(:access_token, Shapes::ShapeRef.new(shape: SensitiveString, required: true, location_name: "accessToken"))
|
|
413
412
|
RefreshTokenResponse.add_member(:expires_in, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "expiresIn"))
|
|
414
413
|
RefreshTokenResponse.struct_class = Types::RefreshTokenResponse
|
|
415
414
|
|
|
@@ -697,6 +697,7 @@ module Aws::AmplifyUIBuilder
|
|
|
697
697
|
# events: {
|
|
698
698
|
# "String" => {
|
|
699
699
|
# action: "String",
|
|
700
|
+
# binding_event: "String",
|
|
700
701
|
# parameters: {
|
|
701
702
|
# anchor: {
|
|
702
703
|
# binding_properties: {
|
|
@@ -1107,12 +1108,14 @@ module Aws::AmplifyUIBuilder
|
|
|
1107
1108
|
# value: "String",
|
|
1108
1109
|
# },
|
|
1109
1110
|
# },
|
|
1111
|
+
# source_id: "String",
|
|
1110
1112
|
# },
|
|
1111
1113
|
# ],
|
|
1112
1114
|
# component_type: "String", # required
|
|
1113
1115
|
# events: {
|
|
1114
1116
|
# "String" => {
|
|
1115
1117
|
# action: "String",
|
|
1118
|
+
# binding_event: "String",
|
|
1116
1119
|
# parameters: {
|
|
1117
1120
|
# anchor: {
|
|
1118
1121
|
# binding_properties: {
|
|
@@ -1523,6 +1526,7 @@ module Aws::AmplifyUIBuilder
|
|
|
1523
1526
|
# value: "String",
|
|
1524
1527
|
# },
|
|
1525
1528
|
# },
|
|
1529
|
+
# source_id: "String",
|
|
1526
1530
|
# }
|
|
1527
1531
|
#
|
|
1528
1532
|
# @!attribute [rw] children
|
|
@@ -1548,6 +1552,11 @@ module Aws::AmplifyUIBuilder
|
|
|
1548
1552
|
# `tags` as a valid property for `properties`.
|
|
1549
1553
|
# @return [Hash<String,Types::ComponentProperty>]
|
|
1550
1554
|
#
|
|
1555
|
+
# @!attribute [rw] source_id
|
|
1556
|
+
# The unique ID of the child component in its original source system,
|
|
1557
|
+
# such as Figma.
|
|
1558
|
+
# @return [String]
|
|
1559
|
+
#
|
|
1551
1560
|
# @see http://docs.aws.amazon.com/goto/WebAPI/amplifyuibuilder-2021-08-11/ComponentChild AWS API Documentation
|
|
1552
1561
|
#
|
|
1553
1562
|
class ComponentChild < Struct.new(
|
|
@@ -1555,7 +1564,8 @@ module Aws::AmplifyUIBuilder
|
|
|
1555
1564
|
:component_type,
|
|
1556
1565
|
:events,
|
|
1557
1566
|
:name,
|
|
1558
|
-
:properties
|
|
1567
|
+
:properties,
|
|
1568
|
+
:source_id)
|
|
1559
1569
|
SENSITIVE = []
|
|
1560
1570
|
include Aws::Structure
|
|
1561
1571
|
end
|
|
@@ -1778,6 +1788,7 @@ module Aws::AmplifyUIBuilder
|
|
|
1778
1788
|
#
|
|
1779
1789
|
# {
|
|
1780
1790
|
# action: "String",
|
|
1791
|
+
# binding_event: "String",
|
|
1781
1792
|
# parameters: {
|
|
1782
1793
|
# anchor: {
|
|
1783
1794
|
# binding_properties: {
|
|
@@ -2145,6 +2156,11 @@ module Aws::AmplifyUIBuilder
|
|
|
2145
2156
|
# The action to perform when a specific event is raised.
|
|
2146
2157
|
# @return [String]
|
|
2147
2158
|
#
|
|
2159
|
+
# @!attribute [rw] binding_event
|
|
2160
|
+
# Binds an event to an action on a component. When you specify a
|
|
2161
|
+
# `bindingEvent`, the event is called when the action is performed.
|
|
2162
|
+
# @return [String]
|
|
2163
|
+
#
|
|
2148
2164
|
# @!attribute [rw] parameters
|
|
2149
2165
|
# Describes information about the action.
|
|
2150
2166
|
# @return [Types::ActionParameters]
|
|
@@ -2153,6 +2169,7 @@ module Aws::AmplifyUIBuilder
|
|
|
2153
2169
|
#
|
|
2154
2170
|
class ComponentEvent < Struct.new(
|
|
2155
2171
|
:action,
|
|
2172
|
+
:binding_event,
|
|
2156
2173
|
:parameters)
|
|
2157
2174
|
SENSITIVE = []
|
|
2158
2175
|
include Aws::Structure
|
|
@@ -2545,6 +2562,7 @@ module Aws::AmplifyUIBuilder
|
|
|
2545
2562
|
# events: {
|
|
2546
2563
|
# "String" => {
|
|
2547
2564
|
# action: "String",
|
|
2565
|
+
# binding_event: "String",
|
|
2548
2566
|
# parameters: {
|
|
2549
2567
|
# anchor: {
|
|
2550
2568
|
# binding_properties: {
|
|
@@ -2955,6 +2973,7 @@ module Aws::AmplifyUIBuilder
|
|
|
2955
2973
|
# value: "String",
|
|
2956
2974
|
# },
|
|
2957
2975
|
# },
|
|
2976
|
+
# source_id: "String",
|
|
2958
2977
|
# },
|
|
2959
2978
|
# ],
|
|
2960
2979
|
# collection_properties: {
|
|
@@ -2988,6 +3007,7 @@ module Aws::AmplifyUIBuilder
|
|
|
2988
3007
|
# events: {
|
|
2989
3008
|
# "String" => {
|
|
2990
3009
|
# action: "String",
|
|
3010
|
+
# binding_event: "String",
|
|
2991
3011
|
# parameters: {
|
|
2992
3012
|
# anchor: {
|
|
2993
3013
|
# binding_properties: {
|
|
@@ -3538,6 +3558,7 @@ module Aws::AmplifyUIBuilder
|
|
|
3538
3558
|
# events: {
|
|
3539
3559
|
# "String" => {
|
|
3540
3560
|
# action: "String",
|
|
3561
|
+
# binding_event: "String",
|
|
3541
3562
|
# parameters: {
|
|
3542
3563
|
# anchor: {
|
|
3543
3564
|
# binding_properties: {
|
|
@@ -3948,6 +3969,7 @@ module Aws::AmplifyUIBuilder
|
|
|
3948
3969
|
# value: "String",
|
|
3949
3970
|
# },
|
|
3950
3971
|
# },
|
|
3972
|
+
# source_id: "String",
|
|
3951
3973
|
# },
|
|
3952
3974
|
# ],
|
|
3953
3975
|
# collection_properties: {
|
|
@@ -3981,6 +4003,7 @@ module Aws::AmplifyUIBuilder
|
|
|
3981
4003
|
# events: {
|
|
3982
4004
|
# "String" => {
|
|
3983
4005
|
# action: "String",
|
|
4006
|
+
# binding_event: "String",
|
|
3984
4007
|
# parameters: {
|
|
3985
4008
|
# anchor: {
|
|
3986
4009
|
# binding_properties: {
|
|
@@ -4674,7 +4697,7 @@ module Aws::AmplifyUIBuilder
|
|
|
4674
4697
|
# {
|
|
4675
4698
|
# provider: "figma", # required, accepts figma
|
|
4676
4699
|
# request: { # required
|
|
4677
|
-
# code: "
|
|
4700
|
+
# code: "SensitiveString", # required
|
|
4678
4701
|
# redirect_uri: "String", # required
|
|
4679
4702
|
# },
|
|
4680
4703
|
# }
|
|
@@ -4704,7 +4727,7 @@ module Aws::AmplifyUIBuilder
|
|
|
4704
4727
|
# data as a hash:
|
|
4705
4728
|
#
|
|
4706
4729
|
# {
|
|
4707
|
-
# code: "
|
|
4730
|
+
# code: "SensitiveString", # required
|
|
4708
4731
|
# redirect_uri: "String", # required
|
|
4709
4732
|
# }
|
|
4710
4733
|
#
|
|
@@ -5248,7 +5271,7 @@ module Aws::AmplifyUIBuilder
|
|
|
5248
5271
|
# {
|
|
5249
5272
|
# provider: "figma", # required, accepts figma
|
|
5250
5273
|
# refresh_token_body: { # required
|
|
5251
|
-
# token: "
|
|
5274
|
+
# token: "SensitiveString", # required
|
|
5252
5275
|
# },
|
|
5253
5276
|
# }
|
|
5254
5277
|
#
|
|
@@ -5276,7 +5299,7 @@ module Aws::AmplifyUIBuilder
|
|
|
5276
5299
|
# data as a hash:
|
|
5277
5300
|
#
|
|
5278
5301
|
# {
|
|
5279
|
-
# token: "
|
|
5302
|
+
# token: "SensitiveString", # required
|
|
5280
5303
|
# }
|
|
5281
5304
|
#
|
|
5282
5305
|
# @!attribute [rw] token
|
|
@@ -5580,6 +5603,7 @@ module Aws::AmplifyUIBuilder
|
|
|
5580
5603
|
# events: {
|
|
5581
5604
|
# "String" => {
|
|
5582
5605
|
# action: "String",
|
|
5606
|
+
# binding_event: "String",
|
|
5583
5607
|
# parameters: {
|
|
5584
5608
|
# anchor: {
|
|
5585
5609
|
# binding_properties: {
|
|
@@ -5990,6 +6014,7 @@ module Aws::AmplifyUIBuilder
|
|
|
5990
6014
|
# value: "String",
|
|
5991
6015
|
# },
|
|
5992
6016
|
# },
|
|
6017
|
+
# source_id: "String",
|
|
5993
6018
|
# },
|
|
5994
6019
|
# ],
|
|
5995
6020
|
# collection_properties: {
|
|
@@ -6023,6 +6048,7 @@ module Aws::AmplifyUIBuilder
|
|
|
6023
6048
|
# events: {
|
|
6024
6049
|
# "String" => {
|
|
6025
6050
|
# action: "String",
|
|
6051
|
+
# binding_event: "String",
|
|
6026
6052
|
# parameters: {
|
|
6027
6053
|
# anchor: {
|
|
6028
6054
|
# binding_properties: {
|
|
@@ -6573,6 +6599,7 @@ module Aws::AmplifyUIBuilder
|
|
|
6573
6599
|
# events: {
|
|
6574
6600
|
# "String" => {
|
|
6575
6601
|
# action: "String",
|
|
6602
|
+
# binding_event: "String",
|
|
6576
6603
|
# parameters: {
|
|
6577
6604
|
# anchor: {
|
|
6578
6605
|
# binding_properties: {
|
|
@@ -6983,6 +7010,7 @@ module Aws::AmplifyUIBuilder
|
|
|
6983
7010
|
# value: "String",
|
|
6984
7011
|
# },
|
|
6985
7012
|
# },
|
|
7013
|
+
# source_id: "String",
|
|
6986
7014
|
# },
|
|
6987
7015
|
# ],
|
|
6988
7016
|
# collection_properties: {
|
|
@@ -7016,6 +7044,7 @@ module Aws::AmplifyUIBuilder
|
|
|
7016
7044
|
# events: {
|
|
7017
7045
|
# "String" => {
|
|
7018
7046
|
# action: "String",
|
|
7047
|
+
# binding_event: "String",
|
|
7019
7048
|
# parameters: {
|
|
7020
7049
|
# anchor: {
|
|
7021
7050
|
# binding_properties: {
|
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.
|
|
4
|
+
version: 1.5.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-
|
|
11
|
+
date: 2022-04-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|