aws-sdk-amplifyuibuilder 1.12.0 → 1.13.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f430b3e6b9459a053be8be14b2d0e3f87fadedb424db371aee16b0f16badfe11
4
- data.tar.gz: b1e7bdd3755d55cdce54b78335d011e00a2cbc5e2697331cc25d5c858510b7f6
3
+ metadata.gz: 66842d58c18968b6f39eb81232618c60108bcf032cba9f2afae1a86eb8736a5c
4
+ data.tar.gz: 83ee11b6699e2580243db6dc1f0bb092923b73150548d059af3ca5e287acdfe0
5
5
  SHA512:
6
- metadata.gz: 2387e493788311f927e578fb598a724bac5b390a54f7ddeab23590f7ec9411022cd5c2224bfaffad64469dfbc14ce1d1926c00b5b3c8553ad86384957ec8739d
7
- data.tar.gz: f149cfb51886d0922338d3cf48aa3d0134d11ff0612a908f85b76437eb9b2da27927630d787f8d7cc3d2d07c418e803967cff6202ef24e121bed29d3b4cff7cd
6
+ metadata.gz: 79c7baf5d51a9b1db61f2f3499360489b595f603e06a869df85122a6e5784b276a08c2a4e1cecda97fc244f1364129a17c0d142ffd820e8283563255895cdcac
7
+ data.tar.gz: a8ea11059986bdb322a885394142a0f13e91153a86c3097f213148b36eb8a9c8c979e6abe09a3dd1ffd6f8963e5e149a97918d823c1a17165e92d026b10d8422
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.13.0 (2023-06-12)
5
+ ------------------
6
+
7
+ * Feature - AWS Amplify UIBuilder is launching Codegen UI, a new feature that enables you to generate your amplify uibuilder components and forms.
8
+
4
9
  1.12.0 (2023-05-31)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.12.0
1
+ 1.13.0
@@ -1874,7 +1874,7 @@ module Aws::AmplifyUIBuilder
1874
1874
  req.send_request(options)
1875
1875
  end
1876
1876
 
1877
- # Creates a new form for an Amplify app.
1877
+ # Creates a new form for an Amplify.
1878
1878
  #
1879
1879
  # @option params [required, String] :app_id
1880
1880
  # The unique ID of the Amplify app to associate with the form.
@@ -3144,6 +3144,104 @@ module Aws::AmplifyUIBuilder
3144
3144
  req.send_request(options)
3145
3145
  end
3146
3146
 
3147
+ # Returns an existing code generation job.
3148
+ #
3149
+ # @option params [required, String] :app_id
3150
+ # The unique ID of the Amplify app associated with the code generation
3151
+ # job.
3152
+ #
3153
+ # @option params [required, String] :environment_name
3154
+ # The name of the backend environment that is a part of the Amplify app
3155
+ # associated with the code generation job.
3156
+ #
3157
+ # @option params [required, String] :id
3158
+ # The unique ID of the code generation job.
3159
+ #
3160
+ # @return [Types::GetCodegenJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3161
+ #
3162
+ # * {Types::GetCodegenJobResponse#job #job} => Types::CodegenJob
3163
+ #
3164
+ # @example Request syntax with placeholder values
3165
+ #
3166
+ # resp = client.get_codegen_job({
3167
+ # app_id: "AppId", # required
3168
+ # environment_name: "String", # required
3169
+ # id: "Uuid", # required
3170
+ # })
3171
+ #
3172
+ # @example Response structure
3173
+ #
3174
+ # resp.job.id #=> String
3175
+ # resp.job.app_id #=> String
3176
+ # resp.job.environment_name #=> String
3177
+ # resp.job.render_config.react.module #=> String, one of "es2020", "esnext"
3178
+ # resp.job.render_config.react.target #=> String, one of "es2015", "es2020"
3179
+ # resp.job.render_config.react.script #=> String, one of "jsx", "tsx", "js"
3180
+ # resp.job.render_config.react.render_type_declarations #=> Boolean
3181
+ # resp.job.render_config.react.inline_source_map #=> Boolean
3182
+ # resp.job.generic_data_schema.data_source_type #=> String, one of "DataStore"
3183
+ # resp.job.generic_data_schema.models #=> Hash
3184
+ # resp.job.generic_data_schema.models["String"].fields #=> Hash
3185
+ # resp.job.generic_data_schema.models["String"].fields["String"].data_type #=> String, one of "ID", "String", "Int", "Float", "AWSDate", "AWSTime", "AWSDateTime", "AWSTimestamp", "AWSEmail", "AWSURL", "AWSIPAddress", "Boolean", "AWSJSON", "AWSPhone", "Enum", "Model", "NonModel"
3186
+ # resp.job.generic_data_schema.models["String"].fields["String"].data_type_value #=> String
3187
+ # resp.job.generic_data_schema.models["String"].fields["String"].required #=> Boolean
3188
+ # resp.job.generic_data_schema.models["String"].fields["String"].read_only #=> Boolean
3189
+ # resp.job.generic_data_schema.models["String"].fields["String"].is_array #=> Boolean
3190
+ # resp.job.generic_data_schema.models["String"].fields["String"].relationship.type #=> String, one of "HAS_MANY", "HAS_ONE", "BELONGS_TO"
3191
+ # resp.job.generic_data_schema.models["String"].fields["String"].relationship.related_model_name #=> String
3192
+ # resp.job.generic_data_schema.models["String"].fields["String"].relationship.related_model_fields #=> Array
3193
+ # resp.job.generic_data_schema.models["String"].fields["String"].relationship.related_model_fields[0] #=> String
3194
+ # resp.job.generic_data_schema.models["String"].fields["String"].relationship.can_unlink_associated_model #=> Boolean
3195
+ # resp.job.generic_data_schema.models["String"].fields["String"].relationship.related_join_field_name #=> String
3196
+ # resp.job.generic_data_schema.models["String"].fields["String"].relationship.related_join_table_name #=> String
3197
+ # resp.job.generic_data_schema.models["String"].fields["String"].relationship.belongs_to_field_on_related_model #=> String
3198
+ # resp.job.generic_data_schema.models["String"].fields["String"].relationship.associated_fields #=> Array
3199
+ # resp.job.generic_data_schema.models["String"].fields["String"].relationship.associated_fields[0] #=> String
3200
+ # resp.job.generic_data_schema.models["String"].fields["String"].relationship.is_has_many_index #=> Boolean
3201
+ # resp.job.generic_data_schema.models["String"].is_join_table #=> Boolean
3202
+ # resp.job.generic_data_schema.models["String"].primary_keys #=> Array
3203
+ # resp.job.generic_data_schema.models["String"].primary_keys[0] #=> String
3204
+ # resp.job.generic_data_schema.enums #=> Hash
3205
+ # resp.job.generic_data_schema.enums["String"].values #=> Array
3206
+ # resp.job.generic_data_schema.enums["String"].values[0] #=> String
3207
+ # resp.job.generic_data_schema.non_models #=> Hash
3208
+ # resp.job.generic_data_schema.non_models["String"].fields #=> Hash
3209
+ # resp.job.generic_data_schema.non_models["String"].fields["String"].data_type #=> String, one of "ID", "String", "Int", "Float", "AWSDate", "AWSTime", "AWSDateTime", "AWSTimestamp", "AWSEmail", "AWSURL", "AWSIPAddress", "Boolean", "AWSJSON", "AWSPhone", "Enum", "Model", "NonModel"
3210
+ # resp.job.generic_data_schema.non_models["String"].fields["String"].data_type_value #=> String
3211
+ # resp.job.generic_data_schema.non_models["String"].fields["String"].required #=> Boolean
3212
+ # resp.job.generic_data_schema.non_models["String"].fields["String"].read_only #=> Boolean
3213
+ # resp.job.generic_data_schema.non_models["String"].fields["String"].is_array #=> Boolean
3214
+ # resp.job.generic_data_schema.non_models["String"].fields["String"].relationship.type #=> String, one of "HAS_MANY", "HAS_ONE", "BELONGS_TO"
3215
+ # resp.job.generic_data_schema.non_models["String"].fields["String"].relationship.related_model_name #=> String
3216
+ # resp.job.generic_data_schema.non_models["String"].fields["String"].relationship.related_model_fields #=> Array
3217
+ # resp.job.generic_data_schema.non_models["String"].fields["String"].relationship.related_model_fields[0] #=> String
3218
+ # resp.job.generic_data_schema.non_models["String"].fields["String"].relationship.can_unlink_associated_model #=> Boolean
3219
+ # resp.job.generic_data_schema.non_models["String"].fields["String"].relationship.related_join_field_name #=> String
3220
+ # resp.job.generic_data_schema.non_models["String"].fields["String"].relationship.related_join_table_name #=> String
3221
+ # resp.job.generic_data_schema.non_models["String"].fields["String"].relationship.belongs_to_field_on_related_model #=> String
3222
+ # resp.job.generic_data_schema.non_models["String"].fields["String"].relationship.associated_fields #=> Array
3223
+ # resp.job.generic_data_schema.non_models["String"].fields["String"].relationship.associated_fields[0] #=> String
3224
+ # resp.job.generic_data_schema.non_models["String"].fields["String"].relationship.is_has_many_index #=> Boolean
3225
+ # resp.job.auto_generate_forms #=> Boolean
3226
+ # resp.job.features.is_relationship_supported #=> Boolean
3227
+ # resp.job.features.is_non_model_supported #=> Boolean
3228
+ # resp.job.status #=> String, one of "in_progress", "failed", "succeeded"
3229
+ # resp.job.status_message #=> String
3230
+ # resp.job.asset.download_url #=> String
3231
+ # resp.job.tags #=> Hash
3232
+ # resp.job.tags["TagKey"] #=> String
3233
+ # resp.job.created_at #=> Time
3234
+ # resp.job.modified_at #=> Time
3235
+ #
3236
+ # @see http://docs.aws.amazon.com/goto/WebAPI/amplifyuibuilder-2021-08-11/GetCodegenJob AWS API Documentation
3237
+ #
3238
+ # @overload get_codegen_job(params = {})
3239
+ # @param [Hash] params ({})
3240
+ def get_codegen_job(params = {}, options = {})
3241
+ req = build_request(:get_codegen_job, params)
3242
+ req.send_request(options)
3243
+ end
3244
+
3147
3245
  # Returns an existing component for an Amplify app.
3148
3246
  #
3149
3247
  # @option params [required, String] :app_id
@@ -3929,6 +4027,56 @@ module Aws::AmplifyUIBuilder
3929
4027
  req.send_request(options)
3930
4028
  end
3931
4029
 
4030
+ # Retrieves a list of code generation jobs for a specified Amplify app
4031
+ # and backend environment.
4032
+ #
4033
+ # @option params [required, String] :app_id
4034
+ # The unique ID for the Amplify app.
4035
+ #
4036
+ # @option params [required, String] :environment_name
4037
+ # The name of the backend environment that is a part of the Amplify app.
4038
+ #
4039
+ # @option params [String] :next_token
4040
+ # The token to request the next page of results.
4041
+ #
4042
+ # @option params [Integer] :max_results
4043
+ # The maximum number of jobs to retrieve.
4044
+ #
4045
+ # @return [Types::ListCodegenJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4046
+ #
4047
+ # * {Types::ListCodegenJobsResponse#entities #entities} => Array<Types::CodegenJobSummary>
4048
+ # * {Types::ListCodegenJobsResponse#next_token #next_token} => String
4049
+ #
4050
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
4051
+ #
4052
+ # @example Request syntax with placeholder values
4053
+ #
4054
+ # resp = client.list_codegen_jobs({
4055
+ # app_id: "AppId", # required
4056
+ # environment_name: "String", # required
4057
+ # next_token: "String",
4058
+ # max_results: 1,
4059
+ # })
4060
+ #
4061
+ # @example Response structure
4062
+ #
4063
+ # resp.entities #=> Array
4064
+ # resp.entities[0].app_id #=> String
4065
+ # resp.entities[0].environment_name #=> String
4066
+ # resp.entities[0].id #=> String
4067
+ # resp.entities[0].created_at #=> Time
4068
+ # resp.entities[0].modified_at #=> Time
4069
+ # resp.next_token #=> String
4070
+ #
4071
+ # @see http://docs.aws.amazon.com/goto/WebAPI/amplifyuibuilder-2021-08-11/ListCodegenJobs AWS API Documentation
4072
+ #
4073
+ # @overload list_codegen_jobs(params = {})
4074
+ # @param [Hash] params ({})
4075
+ def list_codegen_jobs(params = {}, options = {})
4076
+ req = build_request(:list_codegen_jobs, params)
4077
+ req.send_request(options)
4078
+ end
4079
+
3932
4080
  # Retrieves a list of components for a specified Amplify app and backend
3933
4081
  # environment.
3934
4082
  #
@@ -4154,6 +4302,187 @@ module Aws::AmplifyUIBuilder
4154
4302
  req.send_request(options)
4155
4303
  end
4156
4304
 
4305
+ # Starts a code generation job for for a specified Amplify app and
4306
+ # backend environment.
4307
+ #
4308
+ # @option params [required, String] :app_id
4309
+ # The unique ID for the Amplify app.
4310
+ #
4311
+ # @option params [required, String] :environment_name
4312
+ # The name of the backend environment that is a part of the Amplify app.
4313
+ #
4314
+ # @option params [String] :client_token
4315
+ # The idempotency token used to ensure that the code generation job
4316
+ # request completes only once.
4317
+ #
4318
+ # **A suitable default value is auto-generated.** You should normally
4319
+ # not need to pass this option.**
4320
+ #
4321
+ # @option params [required, Types::StartCodegenJobData] :codegen_job_to_create
4322
+ # The code generation job resource configuration.
4323
+ #
4324
+ # @return [Types::StartCodegenJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4325
+ #
4326
+ # * {Types::StartCodegenJobResponse#entity #entity} => Types::CodegenJob
4327
+ #
4328
+ # @example Request syntax with placeholder values
4329
+ #
4330
+ # resp = client.start_codegen_job({
4331
+ # app_id: "AppId", # required
4332
+ # environment_name: "String", # required
4333
+ # client_token: "String",
4334
+ # codegen_job_to_create: { # required
4335
+ # render_config: { # required
4336
+ # react: {
4337
+ # module: "es2020", # accepts es2020, esnext
4338
+ # target: "es2015", # accepts es2015, es2020
4339
+ # script: "jsx", # accepts jsx, tsx, js
4340
+ # render_type_declarations: false,
4341
+ # inline_source_map: false,
4342
+ # },
4343
+ # },
4344
+ # generic_data_schema: {
4345
+ # data_source_type: "DataStore", # required, accepts DataStore
4346
+ # models: { # required
4347
+ # "String" => {
4348
+ # fields: { # required
4349
+ # "String" => {
4350
+ # data_type: "ID", # required, accepts ID, String, Int, Float, AWSDate, AWSTime, AWSDateTime, AWSTimestamp, AWSEmail, AWSURL, AWSIPAddress, Boolean, AWSJSON, AWSPhone, Enum, Model, NonModel
4351
+ # data_type_value: "String", # required
4352
+ # required: false, # required
4353
+ # read_only: false, # required
4354
+ # is_array: false, # required
4355
+ # relationship: {
4356
+ # type: "HAS_MANY", # required, accepts HAS_MANY, HAS_ONE, BELONGS_TO
4357
+ # related_model_name: "String", # required
4358
+ # related_model_fields: ["String"],
4359
+ # can_unlink_associated_model: false,
4360
+ # related_join_field_name: "String",
4361
+ # related_join_table_name: "String",
4362
+ # belongs_to_field_on_related_model: "String",
4363
+ # associated_fields: ["String"],
4364
+ # is_has_many_index: false,
4365
+ # },
4366
+ # },
4367
+ # },
4368
+ # is_join_table: false,
4369
+ # primary_keys: ["String"], # required
4370
+ # },
4371
+ # },
4372
+ # enums: { # required
4373
+ # "String" => {
4374
+ # values: ["String"], # required
4375
+ # },
4376
+ # },
4377
+ # non_models: { # required
4378
+ # "String" => {
4379
+ # fields: { # required
4380
+ # "String" => {
4381
+ # data_type: "ID", # required, accepts ID, String, Int, Float, AWSDate, AWSTime, AWSDateTime, AWSTimestamp, AWSEmail, AWSURL, AWSIPAddress, Boolean, AWSJSON, AWSPhone, Enum, Model, NonModel
4382
+ # data_type_value: "String", # required
4383
+ # required: false, # required
4384
+ # read_only: false, # required
4385
+ # is_array: false, # required
4386
+ # relationship: {
4387
+ # type: "HAS_MANY", # required, accepts HAS_MANY, HAS_ONE, BELONGS_TO
4388
+ # related_model_name: "String", # required
4389
+ # related_model_fields: ["String"],
4390
+ # can_unlink_associated_model: false,
4391
+ # related_join_field_name: "String",
4392
+ # related_join_table_name: "String",
4393
+ # belongs_to_field_on_related_model: "String",
4394
+ # associated_fields: ["String"],
4395
+ # is_has_many_index: false,
4396
+ # },
4397
+ # },
4398
+ # },
4399
+ # },
4400
+ # },
4401
+ # },
4402
+ # auto_generate_forms: false,
4403
+ # features: {
4404
+ # is_relationship_supported: false,
4405
+ # is_non_model_supported: false,
4406
+ # },
4407
+ # tags: {
4408
+ # "TagKey" => "TagValue",
4409
+ # },
4410
+ # },
4411
+ # })
4412
+ #
4413
+ # @example Response structure
4414
+ #
4415
+ # resp.entity.id #=> String
4416
+ # resp.entity.app_id #=> String
4417
+ # resp.entity.environment_name #=> String
4418
+ # resp.entity.render_config.react.module #=> String, one of "es2020", "esnext"
4419
+ # resp.entity.render_config.react.target #=> String, one of "es2015", "es2020"
4420
+ # resp.entity.render_config.react.script #=> String, one of "jsx", "tsx", "js"
4421
+ # resp.entity.render_config.react.render_type_declarations #=> Boolean
4422
+ # resp.entity.render_config.react.inline_source_map #=> Boolean
4423
+ # resp.entity.generic_data_schema.data_source_type #=> String, one of "DataStore"
4424
+ # resp.entity.generic_data_schema.models #=> Hash
4425
+ # resp.entity.generic_data_schema.models["String"].fields #=> Hash
4426
+ # resp.entity.generic_data_schema.models["String"].fields["String"].data_type #=> String, one of "ID", "String", "Int", "Float", "AWSDate", "AWSTime", "AWSDateTime", "AWSTimestamp", "AWSEmail", "AWSURL", "AWSIPAddress", "Boolean", "AWSJSON", "AWSPhone", "Enum", "Model", "NonModel"
4427
+ # resp.entity.generic_data_schema.models["String"].fields["String"].data_type_value #=> String
4428
+ # resp.entity.generic_data_schema.models["String"].fields["String"].required #=> Boolean
4429
+ # resp.entity.generic_data_schema.models["String"].fields["String"].read_only #=> Boolean
4430
+ # resp.entity.generic_data_schema.models["String"].fields["String"].is_array #=> Boolean
4431
+ # resp.entity.generic_data_schema.models["String"].fields["String"].relationship.type #=> String, one of "HAS_MANY", "HAS_ONE", "BELONGS_TO"
4432
+ # resp.entity.generic_data_schema.models["String"].fields["String"].relationship.related_model_name #=> String
4433
+ # resp.entity.generic_data_schema.models["String"].fields["String"].relationship.related_model_fields #=> Array
4434
+ # resp.entity.generic_data_schema.models["String"].fields["String"].relationship.related_model_fields[0] #=> String
4435
+ # resp.entity.generic_data_schema.models["String"].fields["String"].relationship.can_unlink_associated_model #=> Boolean
4436
+ # resp.entity.generic_data_schema.models["String"].fields["String"].relationship.related_join_field_name #=> String
4437
+ # resp.entity.generic_data_schema.models["String"].fields["String"].relationship.related_join_table_name #=> String
4438
+ # resp.entity.generic_data_schema.models["String"].fields["String"].relationship.belongs_to_field_on_related_model #=> String
4439
+ # resp.entity.generic_data_schema.models["String"].fields["String"].relationship.associated_fields #=> Array
4440
+ # resp.entity.generic_data_schema.models["String"].fields["String"].relationship.associated_fields[0] #=> String
4441
+ # resp.entity.generic_data_schema.models["String"].fields["String"].relationship.is_has_many_index #=> Boolean
4442
+ # resp.entity.generic_data_schema.models["String"].is_join_table #=> Boolean
4443
+ # resp.entity.generic_data_schema.models["String"].primary_keys #=> Array
4444
+ # resp.entity.generic_data_schema.models["String"].primary_keys[0] #=> String
4445
+ # resp.entity.generic_data_schema.enums #=> Hash
4446
+ # resp.entity.generic_data_schema.enums["String"].values #=> Array
4447
+ # resp.entity.generic_data_schema.enums["String"].values[0] #=> String
4448
+ # resp.entity.generic_data_schema.non_models #=> Hash
4449
+ # resp.entity.generic_data_schema.non_models["String"].fields #=> Hash
4450
+ # resp.entity.generic_data_schema.non_models["String"].fields["String"].data_type #=> String, one of "ID", "String", "Int", "Float", "AWSDate", "AWSTime", "AWSDateTime", "AWSTimestamp", "AWSEmail", "AWSURL", "AWSIPAddress", "Boolean", "AWSJSON", "AWSPhone", "Enum", "Model", "NonModel"
4451
+ # resp.entity.generic_data_schema.non_models["String"].fields["String"].data_type_value #=> String
4452
+ # resp.entity.generic_data_schema.non_models["String"].fields["String"].required #=> Boolean
4453
+ # resp.entity.generic_data_schema.non_models["String"].fields["String"].read_only #=> Boolean
4454
+ # resp.entity.generic_data_schema.non_models["String"].fields["String"].is_array #=> Boolean
4455
+ # resp.entity.generic_data_schema.non_models["String"].fields["String"].relationship.type #=> String, one of "HAS_MANY", "HAS_ONE", "BELONGS_TO"
4456
+ # resp.entity.generic_data_schema.non_models["String"].fields["String"].relationship.related_model_name #=> String
4457
+ # resp.entity.generic_data_schema.non_models["String"].fields["String"].relationship.related_model_fields #=> Array
4458
+ # resp.entity.generic_data_schema.non_models["String"].fields["String"].relationship.related_model_fields[0] #=> String
4459
+ # resp.entity.generic_data_schema.non_models["String"].fields["String"].relationship.can_unlink_associated_model #=> Boolean
4460
+ # resp.entity.generic_data_schema.non_models["String"].fields["String"].relationship.related_join_field_name #=> String
4461
+ # resp.entity.generic_data_schema.non_models["String"].fields["String"].relationship.related_join_table_name #=> String
4462
+ # resp.entity.generic_data_schema.non_models["String"].fields["String"].relationship.belongs_to_field_on_related_model #=> String
4463
+ # resp.entity.generic_data_schema.non_models["String"].fields["String"].relationship.associated_fields #=> Array
4464
+ # resp.entity.generic_data_schema.non_models["String"].fields["String"].relationship.associated_fields[0] #=> String
4465
+ # resp.entity.generic_data_schema.non_models["String"].fields["String"].relationship.is_has_many_index #=> Boolean
4466
+ # resp.entity.auto_generate_forms #=> Boolean
4467
+ # resp.entity.features.is_relationship_supported #=> Boolean
4468
+ # resp.entity.features.is_non_model_supported #=> Boolean
4469
+ # resp.entity.status #=> String, one of "in_progress", "failed", "succeeded"
4470
+ # resp.entity.status_message #=> String
4471
+ # resp.entity.asset.download_url #=> String
4472
+ # resp.entity.tags #=> Hash
4473
+ # resp.entity.tags["TagKey"] #=> String
4474
+ # resp.entity.created_at #=> Time
4475
+ # resp.entity.modified_at #=> Time
4476
+ #
4477
+ # @see http://docs.aws.amazon.com/goto/WebAPI/amplifyuibuilder-2021-08-11/StartCodegenJob AWS API Documentation
4478
+ #
4479
+ # @overload start_codegen_job(params = {})
4480
+ # @param [Hash] params ({})
4481
+ def start_codegen_job(params = {}, options = {})
4482
+ req = build_request(:start_codegen_job, params)
4483
+ req.send_request(options)
4484
+ end
4485
+
4157
4486
  # Updates an existing component.
4158
4487
  #
4159
4488
  # @option params [required, String] :app_id
@@ -6041,7 +6370,7 @@ module Aws::AmplifyUIBuilder
6041
6370
  params: params,
6042
6371
  config: config)
6043
6372
  context[:gem_name] = 'aws-sdk-amplifyuibuilder'
6044
- context[:gem_version] = '1.12.0'
6373
+ context[:gem_version] = '1.13.0'
6045
6374
  Seahorse::Client::Request.new(handlers, context)
6046
6375
  end
6047
6376