aws-sdk-mq 1.36.0 → 1.37.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-mq.rb +1 -1
- data/lib/aws-sdk-mq/client.rb +130 -60
- data/lib/aws-sdk-mq/client_api.rb +90 -86
- data/lib/aws-sdk-mq/types.rb +424 -248
- metadata +5 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 06a7c28f6e783202bb6684358b6d2679e685c6adfc2691041b4fcc851edaa633
|
4
|
+
data.tar.gz: 411407ebb0065c4ce05625ba2df4e9d35492933496ac7fb9880980de46668103
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4314491d05cc20799533deba4c3c36681abf578e94604390c9f796351004d0a370c2972f06a90ce94a68b36de08e85ecb14c64b5bd61a12bcbb2139d52758003
|
7
|
+
data.tar.gz: e3bfc258df1a8513df85b0ca7fb5f6703407117d56851423d5ac073c525488bdf5e74dece07ab7b598a25ea61eea5e25975bfc4820071e4ac49c4dd5065b863c
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.37.0
|
data/lib/aws-sdk-mq.rb
CHANGED
data/lib/aws-sdk-mq/client.rb
CHANGED
@@ -329,36 +329,85 @@ module Aws::MQ
|
|
329
329
|
|
330
330
|
# Creates a broker. Note: This API is asynchronous.
|
331
331
|
#
|
332
|
+
# To create a broker, you must either use the AmazonMQFullAccess IAM
|
333
|
+
# policy or include the following EC2 permissions in your IAM policy.
|
334
|
+
#
|
335
|
+
# * ec2:CreateNetworkInterface
|
336
|
+
#
|
337
|
+
# This permission is required to allow Amazon MQ to create an elastic
|
338
|
+
# network interface (ENI) on behalf of your account.
|
339
|
+
#
|
340
|
+
# * ec2:CreateNetworkInterfacePermission
|
341
|
+
#
|
342
|
+
# This permission is required to attach the ENI to the broker
|
343
|
+
# instance.
|
344
|
+
#
|
345
|
+
# * ec2:DeleteNetworkInterface
|
346
|
+
#
|
347
|
+
# * ec2:DeleteNetworkInterfacePermission
|
348
|
+
#
|
349
|
+
# * ec2:DetachNetworkInterface
|
350
|
+
#
|
351
|
+
# * ec2:DescribeInternetGateways
|
352
|
+
#
|
353
|
+
# * ec2:DescribeNetworkInterfaces
|
354
|
+
#
|
355
|
+
# * ec2:DescribeNetworkInterfacePermissions
|
356
|
+
#
|
357
|
+
# * ec2:DescribeRouteTables
|
358
|
+
#
|
359
|
+
# * ec2:DescribeSecurityGroups
|
360
|
+
#
|
361
|
+
# * ec2:DescribeSubnets
|
362
|
+
#
|
363
|
+
# * ec2:DescribeVpcs
|
364
|
+
#
|
365
|
+
# For more information, see [Create an IAM User and Get Your AWS
|
366
|
+
# Credentials][1] and [Never Modify or Delete the Amazon MQ Elastic
|
367
|
+
# Network Interface][2] in the *Amazon MQ Developer Guide*.
|
368
|
+
#
|
369
|
+
#
|
370
|
+
#
|
371
|
+
# [1]: https://docs.aws.amazon.com//amazon-mq/latest/developer-guide/amazon-mq-setting-up.html#create-iam-user
|
372
|
+
# [2]: https://docs.aws.amazon.com/amazon-mq/latest/developer-guide/connecting-to-amazon-mq.html#never-modify-delete-elastic-network-interface
|
373
|
+
#
|
332
374
|
# @option params [String] :authentication_strategy
|
333
|
-
# The authentication strategy used to secure the broker.
|
375
|
+
# Optional. The authentication strategy used to secure the broker. The
|
376
|
+
# default is SIMPLE.
|
334
377
|
#
|
335
|
-
# @option params [Boolean] :auto_minor_version_upgrade
|
378
|
+
# @option params [required, Boolean] :auto_minor_version_upgrade
|
336
379
|
#
|
337
|
-
# @option params [String] :broker_name
|
380
|
+
# @option params [required, String] :broker_name
|
338
381
|
#
|
339
382
|
# @option params [Types::ConfigurationId] :configuration
|
340
|
-
# A list of information about the configuration.
|
383
|
+
# A list of information about the configuration.
|
384
|
+
#
|
385
|
+
# Does not apply to RabbitMQ brokers.
|
341
386
|
#
|
342
387
|
# @option params [String] :creator_request_id
|
343
388
|
# **A suitable default value is auto-generated.** You should normally
|
344
389
|
# not need to pass this option.**
|
345
390
|
#
|
346
|
-
# @option params [String] :deployment_mode
|
347
|
-
# The deployment mode
|
391
|
+
# @option params [required, String] :deployment_mode
|
392
|
+
# The broker's deployment mode.
|
348
393
|
#
|
349
394
|
# @option params [Types::EncryptionOptions] :encryption_options
|
395
|
+
# Does not apply to RabbitMQ brokers.
|
396
|
+
#
|
350
397
|
# Encryption options for the broker.
|
351
398
|
#
|
352
|
-
# @option params [String] :engine_type
|
353
|
-
# The type of broker engine.
|
354
|
-
# ActiveMQ and RabbitMQ.
|
399
|
+
# @option params [required, String] :engine_type
|
400
|
+
# The type of broker engine. Amazon MQ supports ActiveMQ and RabbitMQ.
|
355
401
|
#
|
356
|
-
# @option params [String] :engine_version
|
402
|
+
# @option params [required, String] :engine_version
|
357
403
|
#
|
358
|
-
# @option params [String] :host_instance_type
|
404
|
+
# @option params [required, String] :host_instance_type
|
359
405
|
#
|
360
406
|
# @option params [Types::LdapServerMetadataInput] :ldap_server_metadata
|
361
|
-
# The metadata of the LDAP server used to authenticate and
|
407
|
+
# Optional. The metadata of the LDAP server used to authenticate and
|
408
|
+
# authorize connections to the broker.
|
409
|
+
#
|
410
|
+
# Does not apply to RabbitMQ brokers.
|
362
411
|
#
|
363
412
|
# @option params [Types::Logs] :logs
|
364
413
|
# The list of information about logs to be enabled for the specified
|
@@ -368,18 +417,20 @@ module Aws::MQ
|
|
368
417
|
# The scheduled time period relative to UTC during which Amazon MQ
|
369
418
|
# begins to apply pending updates or patches to the broker.
|
370
419
|
#
|
371
|
-
# @option params [Boolean] :publicly_accessible
|
420
|
+
# @option params [required, Boolean] :publicly_accessible
|
372
421
|
#
|
373
422
|
# @option params [Array<String>] :security_groups
|
374
423
|
#
|
375
424
|
# @option params [String] :storage_type
|
376
|
-
# The
|
425
|
+
# The broker's storage type.
|
426
|
+
#
|
427
|
+
# EFS is not supported for RabbitMQ engine type.
|
377
428
|
#
|
378
429
|
# @option params [Array<String>] :subnet_ids
|
379
430
|
#
|
380
431
|
# @option params [Hash<String,String>] :tags
|
381
432
|
#
|
382
|
-
# @option params [Array<Types::User>] :users
|
433
|
+
# @option params [required, Array<Types::User>] :users
|
383
434
|
#
|
384
435
|
# @return [Types::CreateBrokerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
385
436
|
#
|
@@ -390,32 +441,32 @@ module Aws::MQ
|
|
390
441
|
#
|
391
442
|
# resp = client.create_broker({
|
392
443
|
# authentication_strategy: "SIMPLE", # accepts SIMPLE, LDAP
|
393
|
-
# auto_minor_version_upgrade: false,
|
394
|
-
# broker_name: "__string",
|
444
|
+
# auto_minor_version_upgrade: false, # required
|
445
|
+
# broker_name: "__string", # required
|
395
446
|
# configuration: {
|
396
|
-
# id: "__string",
|
447
|
+
# id: "__string", # required
|
397
448
|
# revision: 1,
|
398
449
|
# },
|
399
450
|
# creator_request_id: "__string",
|
400
|
-
# deployment_mode: "SINGLE_INSTANCE", # accepts SINGLE_INSTANCE, ACTIVE_STANDBY_MULTI_AZ, CLUSTER_MULTI_AZ
|
451
|
+
# deployment_mode: "SINGLE_INSTANCE", # required, accepts SINGLE_INSTANCE, ACTIVE_STANDBY_MULTI_AZ, CLUSTER_MULTI_AZ
|
401
452
|
# encryption_options: {
|
402
453
|
# kms_key_id: "__string",
|
403
454
|
# use_aws_owned_key: false, # required
|
404
455
|
# },
|
405
|
-
# engine_type: "ACTIVEMQ", # accepts ACTIVEMQ, RABBITMQ
|
406
|
-
# engine_version: "__string",
|
407
|
-
# host_instance_type: "__string",
|
456
|
+
# engine_type: "ACTIVEMQ", # required, accepts ACTIVEMQ, RABBITMQ
|
457
|
+
# engine_version: "__string", # required
|
458
|
+
# host_instance_type: "__string", # required
|
408
459
|
# ldap_server_metadata: {
|
409
|
-
# hosts: ["__string"],
|
410
|
-
# role_base: "__string",
|
460
|
+
# hosts: ["__string"], # required
|
461
|
+
# role_base: "__string", # required
|
411
462
|
# role_name: "__string",
|
412
|
-
# role_search_matching: "__string",
|
463
|
+
# role_search_matching: "__string", # required
|
413
464
|
# role_search_subtree: false,
|
414
|
-
# service_account_password: "__string",
|
415
|
-
# service_account_username: "__string",
|
416
|
-
# user_base: "__string",
|
465
|
+
# service_account_password: "__string", # required
|
466
|
+
# service_account_username: "__string", # required
|
467
|
+
# user_base: "__string", # required
|
417
468
|
# user_role_name: "__string",
|
418
|
-
# user_search_matching: "__string",
|
469
|
+
# user_search_matching: "__string", # required
|
419
470
|
# user_search_subtree: false,
|
420
471
|
# },
|
421
472
|
# logs: {
|
@@ -423,23 +474,23 @@ module Aws::MQ
|
|
423
474
|
# general: false,
|
424
475
|
# },
|
425
476
|
# maintenance_window_start_time: {
|
426
|
-
# day_of_week: "MONDAY", # accepts MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY
|
427
|
-
# time_of_day: "__string",
|
477
|
+
# day_of_week: "MONDAY", # required, accepts MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY
|
478
|
+
# time_of_day: "__string", # required
|
428
479
|
# time_zone: "__string",
|
429
480
|
# },
|
430
|
-
# publicly_accessible: false,
|
481
|
+
# publicly_accessible: false, # required
|
431
482
|
# security_groups: ["__string"],
|
432
483
|
# storage_type: "EBS", # accepts EBS, EFS
|
433
484
|
# subnet_ids: ["__string"],
|
434
485
|
# tags: {
|
435
486
|
# "__string" => "__string",
|
436
487
|
# },
|
437
|
-
# users: [
|
488
|
+
# users: [ # required
|
438
489
|
# {
|
439
490
|
# console_access: false,
|
440
491
|
# groups: ["__string"],
|
441
|
-
# password: "__string",
|
442
|
-
# username: "__string",
|
492
|
+
# password: "__string", # required
|
493
|
+
# username: "__string", # required
|
443
494
|
# },
|
444
495
|
# ],
|
445
496
|
# })
|
@@ -463,15 +514,15 @@ module Aws::MQ
|
|
463
514
|
# version).
|
464
515
|
#
|
465
516
|
# @option params [String] :authentication_strategy
|
466
|
-
# The authentication strategy used to secure the broker.
|
517
|
+
# Optional. The authentication strategy used to secure the broker. The
|
518
|
+
# default is SIMPLE.
|
467
519
|
#
|
468
|
-
# @option params [String] :engine_type
|
469
|
-
# The type of broker engine.
|
470
|
-
# ActiveMQ and RabbitMQ.
|
520
|
+
# @option params [required, String] :engine_type
|
521
|
+
# The type of broker engine. Amazon MQ supports ActiveMQ and RabbitMQ.
|
471
522
|
#
|
472
|
-
# @option params [String] :engine_version
|
523
|
+
# @option params [required, String] :engine_version
|
473
524
|
#
|
474
|
-
# @option params [String] :name
|
525
|
+
# @option params [required, String] :name
|
475
526
|
#
|
476
527
|
# @option params [Hash<String,String>] :tags
|
477
528
|
#
|
@@ -488,9 +539,9 @@ module Aws::MQ
|
|
488
539
|
#
|
489
540
|
# resp = client.create_configuration({
|
490
541
|
# authentication_strategy: "SIMPLE", # accepts SIMPLE, LDAP
|
491
|
-
# engine_type: "ACTIVEMQ", # accepts ACTIVEMQ, RABBITMQ
|
492
|
-
# engine_version: "__string",
|
493
|
-
# name: "__string",
|
542
|
+
# engine_type: "ACTIVEMQ", # required, accepts ACTIVEMQ, RABBITMQ
|
543
|
+
# engine_version: "__string", # required
|
544
|
+
# name: "__string", # required
|
494
545
|
# tags: {
|
495
546
|
# "__string" => "__string",
|
496
547
|
# },
|
@@ -550,7 +601,7 @@ module Aws::MQ
|
|
550
601
|
#
|
551
602
|
# @option params [Array<String>] :groups
|
552
603
|
#
|
553
|
-
# @option params [String] :password
|
604
|
+
# @option params [required, String] :password
|
554
605
|
#
|
555
606
|
# @option params [required, String] :username
|
556
607
|
#
|
@@ -562,7 +613,7 @@ module Aws::MQ
|
|
562
613
|
# broker_id: "__string", # required
|
563
614
|
# console_access: false,
|
564
615
|
# groups: ["__string"],
|
565
|
-
# password: "__string",
|
616
|
+
# password: "__string", # required
|
566
617
|
# username: "__string", # required
|
567
618
|
# })
|
568
619
|
#
|
@@ -1218,26 +1269,36 @@ module Aws::MQ
|
|
1218
1269
|
# Adds a pending configuration change to a broker.
|
1219
1270
|
#
|
1220
1271
|
# @option params [String] :authentication_strategy
|
1221
|
-
# The authentication strategy used to secure the broker.
|
1272
|
+
# Optional. The authentication strategy used to secure the broker. The
|
1273
|
+
# default is SIMPLE.
|
1222
1274
|
#
|
1223
1275
|
# @option params [Boolean] :auto_minor_version_upgrade
|
1224
1276
|
#
|
1225
1277
|
# @option params [required, String] :broker_id
|
1226
1278
|
#
|
1227
1279
|
# @option params [Types::ConfigurationId] :configuration
|
1228
|
-
# A list of information about the configuration.
|
1280
|
+
# A list of information about the configuration.
|
1281
|
+
#
|
1282
|
+
# Does not apply to RabbitMQ brokers.
|
1229
1283
|
#
|
1230
1284
|
# @option params [String] :engine_version
|
1231
1285
|
#
|
1232
1286
|
# @option params [String] :host_instance_type
|
1233
1287
|
#
|
1234
1288
|
# @option params [Types::LdapServerMetadataInput] :ldap_server_metadata
|
1235
|
-
# The metadata of the LDAP server used to authenticate and
|
1289
|
+
# Optional. The metadata of the LDAP server used to authenticate and
|
1290
|
+
# authorize connections to the broker.
|
1291
|
+
#
|
1292
|
+
# Does not apply to RabbitMQ brokers.
|
1236
1293
|
#
|
1237
1294
|
# @option params [Types::Logs] :logs
|
1238
1295
|
# The list of information about logs to be enabled for the specified
|
1239
1296
|
# broker.
|
1240
1297
|
#
|
1298
|
+
# @option params [Types::WeeklyStartTime] :maintenance_window_start_time
|
1299
|
+
# The scheduled time period relative to UTC during which Amazon MQ
|
1300
|
+
# begins to apply pending updates or patches to the broker.
|
1301
|
+
#
|
1241
1302
|
# @option params [Array<String>] :security_groups
|
1242
1303
|
#
|
1243
1304
|
# @return [Types::UpdateBrokerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -1250,6 +1311,7 @@ module Aws::MQ
|
|
1250
1311
|
# * {Types::UpdateBrokerResponse#host_instance_type #host_instance_type} => String
|
1251
1312
|
# * {Types::UpdateBrokerResponse#ldap_server_metadata #ldap_server_metadata} => Types::LdapServerMetadataOutput
|
1252
1313
|
# * {Types::UpdateBrokerResponse#logs #logs} => Types::Logs
|
1314
|
+
# * {Types::UpdateBrokerResponse#maintenance_window_start_time #maintenance_window_start_time} => Types::WeeklyStartTime
|
1253
1315
|
# * {Types::UpdateBrokerResponse#security_groups #security_groups} => Array<String>
|
1254
1316
|
#
|
1255
1317
|
# @example Request syntax with placeholder values
|
@@ -1259,28 +1321,33 @@ module Aws::MQ
|
|
1259
1321
|
# auto_minor_version_upgrade: false,
|
1260
1322
|
# broker_id: "__string", # required
|
1261
1323
|
# configuration: {
|
1262
|
-
# id: "__string",
|
1324
|
+
# id: "__string", # required
|
1263
1325
|
# revision: 1,
|
1264
1326
|
# },
|
1265
1327
|
# engine_version: "__string",
|
1266
1328
|
# host_instance_type: "__string",
|
1267
1329
|
# ldap_server_metadata: {
|
1268
|
-
# hosts: ["__string"],
|
1269
|
-
# role_base: "__string",
|
1330
|
+
# hosts: ["__string"], # required
|
1331
|
+
# role_base: "__string", # required
|
1270
1332
|
# role_name: "__string",
|
1271
|
-
# role_search_matching: "__string",
|
1333
|
+
# role_search_matching: "__string", # required
|
1272
1334
|
# role_search_subtree: false,
|
1273
|
-
# service_account_password: "__string",
|
1274
|
-
# service_account_username: "__string",
|
1275
|
-
# user_base: "__string",
|
1335
|
+
# service_account_password: "__string", # required
|
1336
|
+
# service_account_username: "__string", # required
|
1337
|
+
# user_base: "__string", # required
|
1276
1338
|
# user_role_name: "__string",
|
1277
|
-
# user_search_matching: "__string",
|
1339
|
+
# user_search_matching: "__string", # required
|
1278
1340
|
# user_search_subtree: false,
|
1279
1341
|
# },
|
1280
1342
|
# logs: {
|
1281
1343
|
# audit: false,
|
1282
1344
|
# general: false,
|
1283
1345
|
# },
|
1346
|
+
# maintenance_window_start_time: {
|
1347
|
+
# day_of_week: "MONDAY", # required, accepts MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY
|
1348
|
+
# time_of_day: "__string", # required
|
1349
|
+
# time_zone: "__string",
|
1350
|
+
# },
|
1284
1351
|
# security_groups: ["__string"],
|
1285
1352
|
# })
|
1286
1353
|
#
|
@@ -1306,6 +1373,9 @@ module Aws::MQ
|
|
1306
1373
|
# resp.ldap_server_metadata.user_search_subtree #=> Boolean
|
1307
1374
|
# resp.logs.audit #=> Boolean
|
1308
1375
|
# resp.logs.general #=> Boolean
|
1376
|
+
# resp.maintenance_window_start_time.day_of_week #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
|
1377
|
+
# resp.maintenance_window_start_time.time_of_day #=> String
|
1378
|
+
# resp.maintenance_window_start_time.time_zone #=> String
|
1309
1379
|
# resp.security_groups #=> Array
|
1310
1380
|
# resp.security_groups[0] #=> String
|
1311
1381
|
#
|
@@ -1322,7 +1392,7 @@ module Aws::MQ
|
|
1322
1392
|
#
|
1323
1393
|
# @option params [required, String] :configuration_id
|
1324
1394
|
#
|
1325
|
-
# @option params [String] :data
|
1395
|
+
# @option params [required, String] :data
|
1326
1396
|
#
|
1327
1397
|
# @option params [String] :description
|
1328
1398
|
#
|
@@ -1339,7 +1409,7 @@ module Aws::MQ
|
|
1339
1409
|
#
|
1340
1410
|
# resp = client.update_configuration({
|
1341
1411
|
# configuration_id: "__string", # required
|
1342
|
-
# data: "__string",
|
1412
|
+
# data: "__string", # required
|
1343
1413
|
# description: "__string",
|
1344
1414
|
# })
|
1345
1415
|
#
|
@@ -1412,7 +1482,7 @@ module Aws::MQ
|
|
1412
1482
|
params: params,
|
1413
1483
|
config: config)
|
1414
1484
|
context[:gem_name] = 'aws-sdk-mq'
|
1415
|
-
context[:gem_version] = '1.
|
1485
|
+
context[:gem_version] = '1.37.0'
|
1416
1486
|
Seahorse::Client::Request.new(handlers, context)
|
1417
1487
|
end
|
1418
1488
|
|
@@ -149,7 +149,7 @@ module Aws::MQ
|
|
149
149
|
BrokerEngineType.struct_class = Types::BrokerEngineType
|
150
150
|
|
151
151
|
BrokerEngineTypeOutput.add_member(:broker_engine_types, Shapes::ShapeRef.new(shape: __listOfBrokerEngineType, location_name: "brokerEngineTypes"))
|
152
|
-
BrokerEngineTypeOutput.add_member(:max_results, Shapes::ShapeRef.new(shape: __integerMin5Max100, location_name: "maxResults"))
|
152
|
+
BrokerEngineTypeOutput.add_member(:max_results, Shapes::ShapeRef.new(shape: __integerMin5Max100, required: true, location_name: "maxResults"))
|
153
153
|
BrokerEngineTypeOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
|
154
154
|
BrokerEngineTypeOutput.struct_class = Types::BrokerEngineTypeOutput
|
155
155
|
|
@@ -167,7 +167,7 @@ module Aws::MQ
|
|
167
167
|
BrokerInstanceOption.struct_class = Types::BrokerInstanceOption
|
168
168
|
|
169
169
|
BrokerInstanceOptionsOutput.add_member(:broker_instance_options, Shapes::ShapeRef.new(shape: __listOfBrokerInstanceOption, location_name: "brokerInstanceOptions"))
|
170
|
-
BrokerInstanceOptionsOutput.add_member(:max_results, Shapes::ShapeRef.new(shape: __integerMin5Max100, location_name: "maxResults"))
|
170
|
+
BrokerInstanceOptionsOutput.add_member(:max_results, Shapes::ShapeRef.new(shape: __integerMin5Max100, required: true, location_name: "maxResults"))
|
171
171
|
BrokerInstanceOptionsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
|
172
172
|
BrokerInstanceOptionsOutput.struct_class = Types::BrokerInstanceOptionsOutput
|
173
173
|
|
@@ -176,30 +176,30 @@ module Aws::MQ
|
|
176
176
|
BrokerSummary.add_member(:broker_name, Shapes::ShapeRef.new(shape: __string, location_name: "brokerName"))
|
177
177
|
BrokerSummary.add_member(:broker_state, Shapes::ShapeRef.new(shape: BrokerState, location_name: "brokerState"))
|
178
178
|
BrokerSummary.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "created"))
|
179
|
-
BrokerSummary.add_member(:deployment_mode, Shapes::ShapeRef.new(shape: DeploymentMode, location_name: "deploymentMode"))
|
180
|
-
BrokerSummary.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, location_name: "engineType"))
|
179
|
+
BrokerSummary.add_member(:deployment_mode, Shapes::ShapeRef.new(shape: DeploymentMode, required: true, location_name: "deploymentMode"))
|
180
|
+
BrokerSummary.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, required: true, location_name: "engineType"))
|
181
181
|
BrokerSummary.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "hostInstanceType"))
|
182
182
|
BrokerSummary.struct_class = Types::BrokerSummary
|
183
183
|
|
184
|
-
Configuration.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
|
185
|
-
Configuration.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
186
|
-
Configuration.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "created"))
|
187
|
-
Configuration.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
|
188
|
-
Configuration.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, location_name: "engineType"))
|
189
|
-
Configuration.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
|
190
|
-
Configuration.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
191
|
-
Configuration.add_member(:latest_revision, Shapes::ShapeRef.new(shape: ConfigurationRevision, location_name: "latestRevision"))
|
192
|
-
Configuration.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
184
|
+
Configuration.add_member(:arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "arn"))
|
185
|
+
Configuration.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, required: true, location_name: "authenticationStrategy"))
|
186
|
+
Configuration.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, required: true, location_name: "created"))
|
187
|
+
Configuration.add_member(:description, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "description"))
|
188
|
+
Configuration.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, required: true, location_name: "engineType"))
|
189
|
+
Configuration.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "engineVersion"))
|
190
|
+
Configuration.add_member(:id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "id"))
|
191
|
+
Configuration.add_member(:latest_revision, Shapes::ShapeRef.new(shape: ConfigurationRevision, required: true, location_name: "latestRevision"))
|
192
|
+
Configuration.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "name"))
|
193
193
|
Configuration.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
194
194
|
Configuration.struct_class = Types::Configuration
|
195
195
|
|
196
|
-
ConfigurationId.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
196
|
+
ConfigurationId.add_member(:id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "id"))
|
197
197
|
ConfigurationId.add_member(:revision, Shapes::ShapeRef.new(shape: __integer, location_name: "revision"))
|
198
198
|
ConfigurationId.struct_class = Types::ConfigurationId
|
199
199
|
|
200
|
-
ConfigurationRevision.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "created"))
|
200
|
+
ConfigurationRevision.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, required: true, location_name: "created"))
|
201
201
|
ConfigurationRevision.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
|
202
|
-
ConfigurationRevision.add_member(:revision, Shapes::ShapeRef.new(shape: __integer, location_name: "revision"))
|
202
|
+
ConfigurationRevision.add_member(:revision, Shapes::ShapeRef.new(shape: __integer, required: true, location_name: "revision"))
|
203
203
|
ConfigurationRevision.struct_class = Types::ConfigurationRevision
|
204
204
|
|
205
205
|
Configurations.add_member(:current, Shapes::ShapeRef.new(shape: ConfigurationId, location_name: "current"))
|
@@ -212,24 +212,24 @@ module Aws::MQ
|
|
212
212
|
ConflictException.struct_class = Types::ConflictException
|
213
213
|
|
214
214
|
CreateBrokerInput.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
215
|
-
CreateBrokerInput.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: __boolean, location_name: "autoMinorVersionUpgrade"))
|
216
|
-
CreateBrokerInput.add_member(:broker_name, Shapes::ShapeRef.new(shape: __string, location_name: "brokerName"))
|
215
|
+
CreateBrokerInput.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: __boolean, required: true, location_name: "autoMinorVersionUpgrade"))
|
216
|
+
CreateBrokerInput.add_member(:broker_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "brokerName"))
|
217
217
|
CreateBrokerInput.add_member(:configuration, Shapes::ShapeRef.new(shape: ConfigurationId, location_name: "configuration"))
|
218
218
|
CreateBrokerInput.add_member(:creator_request_id, Shapes::ShapeRef.new(shape: __string, location_name: "creatorRequestId", metadata: {"idempotencyToken"=>true}))
|
219
|
-
CreateBrokerInput.add_member(:deployment_mode, Shapes::ShapeRef.new(shape: DeploymentMode, location_name: "deploymentMode"))
|
219
|
+
CreateBrokerInput.add_member(:deployment_mode, Shapes::ShapeRef.new(shape: DeploymentMode, required: true, location_name: "deploymentMode"))
|
220
220
|
CreateBrokerInput.add_member(:encryption_options, Shapes::ShapeRef.new(shape: EncryptionOptions, location_name: "encryptionOptions"))
|
221
|
-
CreateBrokerInput.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, location_name: "engineType"))
|
222
|
-
CreateBrokerInput.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
|
223
|
-
CreateBrokerInput.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "hostInstanceType"))
|
221
|
+
CreateBrokerInput.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, required: true, location_name: "engineType"))
|
222
|
+
CreateBrokerInput.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "engineVersion"))
|
223
|
+
CreateBrokerInput.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "hostInstanceType"))
|
224
224
|
CreateBrokerInput.add_member(:ldap_server_metadata, Shapes::ShapeRef.new(shape: LdapServerMetadataInput, location_name: "ldapServerMetadata"))
|
225
225
|
CreateBrokerInput.add_member(:logs, Shapes::ShapeRef.new(shape: Logs, location_name: "logs"))
|
226
226
|
CreateBrokerInput.add_member(:maintenance_window_start_time, Shapes::ShapeRef.new(shape: WeeklyStartTime, location_name: "maintenanceWindowStartTime"))
|
227
|
-
CreateBrokerInput.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: __boolean, location_name: "publiclyAccessible"))
|
227
|
+
CreateBrokerInput.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: __boolean, required: true, location_name: "publiclyAccessible"))
|
228
228
|
CreateBrokerInput.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
|
229
229
|
CreateBrokerInput.add_member(:storage_type, Shapes::ShapeRef.new(shape: BrokerStorageType, location_name: "storageType"))
|
230
230
|
CreateBrokerInput.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "subnetIds"))
|
231
231
|
CreateBrokerInput.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
232
|
-
CreateBrokerInput.add_member(:users, Shapes::ShapeRef.new(shape: __listOfUser, location_name: "users"))
|
232
|
+
CreateBrokerInput.add_member(:users, Shapes::ShapeRef.new(shape: __listOfUser, required: true, location_name: "users"))
|
233
233
|
CreateBrokerInput.struct_class = Types::CreateBrokerInput
|
234
234
|
|
235
235
|
CreateBrokerOutput.add_member(:broker_arn, Shapes::ShapeRef.new(shape: __string, location_name: "brokerArn"))
|
@@ -237,24 +237,24 @@ module Aws::MQ
|
|
237
237
|
CreateBrokerOutput.struct_class = Types::CreateBrokerOutput
|
238
238
|
|
239
239
|
CreateBrokerRequest.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
240
|
-
CreateBrokerRequest.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: __boolean, location_name: "autoMinorVersionUpgrade"))
|
241
|
-
CreateBrokerRequest.add_member(:broker_name, Shapes::ShapeRef.new(shape: __string, location_name: "brokerName"))
|
240
|
+
CreateBrokerRequest.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: __boolean, required: true, location_name: "autoMinorVersionUpgrade"))
|
241
|
+
CreateBrokerRequest.add_member(:broker_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "brokerName"))
|
242
242
|
CreateBrokerRequest.add_member(:configuration, Shapes::ShapeRef.new(shape: ConfigurationId, location_name: "configuration"))
|
243
243
|
CreateBrokerRequest.add_member(:creator_request_id, Shapes::ShapeRef.new(shape: __string, location_name: "creatorRequestId", metadata: {"idempotencyToken"=>true}))
|
244
|
-
CreateBrokerRequest.add_member(:deployment_mode, Shapes::ShapeRef.new(shape: DeploymentMode, location_name: "deploymentMode"))
|
244
|
+
CreateBrokerRequest.add_member(:deployment_mode, Shapes::ShapeRef.new(shape: DeploymentMode, required: true, location_name: "deploymentMode"))
|
245
245
|
CreateBrokerRequest.add_member(:encryption_options, Shapes::ShapeRef.new(shape: EncryptionOptions, location_name: "encryptionOptions"))
|
246
|
-
CreateBrokerRequest.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, location_name: "engineType"))
|
247
|
-
CreateBrokerRequest.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
|
248
|
-
CreateBrokerRequest.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "hostInstanceType"))
|
246
|
+
CreateBrokerRequest.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, required: true, location_name: "engineType"))
|
247
|
+
CreateBrokerRequest.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "engineVersion"))
|
248
|
+
CreateBrokerRequest.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "hostInstanceType"))
|
249
249
|
CreateBrokerRequest.add_member(:ldap_server_metadata, Shapes::ShapeRef.new(shape: LdapServerMetadataInput, location_name: "ldapServerMetadata"))
|
250
250
|
CreateBrokerRequest.add_member(:logs, Shapes::ShapeRef.new(shape: Logs, location_name: "logs"))
|
251
251
|
CreateBrokerRequest.add_member(:maintenance_window_start_time, Shapes::ShapeRef.new(shape: WeeklyStartTime, location_name: "maintenanceWindowStartTime"))
|
252
|
-
CreateBrokerRequest.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: __boolean, location_name: "publiclyAccessible"))
|
252
|
+
CreateBrokerRequest.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: __boolean, required: true, location_name: "publiclyAccessible"))
|
253
253
|
CreateBrokerRequest.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
|
254
254
|
CreateBrokerRequest.add_member(:storage_type, Shapes::ShapeRef.new(shape: BrokerStorageType, location_name: "storageType"))
|
255
255
|
CreateBrokerRequest.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "subnetIds"))
|
256
256
|
CreateBrokerRequest.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
257
|
-
CreateBrokerRequest.add_member(:users, Shapes::ShapeRef.new(shape: __listOfUser, location_name: "users"))
|
257
|
+
CreateBrokerRequest.add_member(:users, Shapes::ShapeRef.new(shape: __listOfUser, required: true, location_name: "users"))
|
258
258
|
CreateBrokerRequest.struct_class = Types::CreateBrokerRequest
|
259
259
|
|
260
260
|
CreateBrokerResponse.add_member(:broker_arn, Shapes::ShapeRef.new(shape: __string, location_name: "brokerArn"))
|
@@ -262,24 +262,24 @@ module Aws::MQ
|
|
262
262
|
CreateBrokerResponse.struct_class = Types::CreateBrokerResponse
|
263
263
|
|
264
264
|
CreateConfigurationInput.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
265
|
-
CreateConfigurationInput.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, location_name: "engineType"))
|
266
|
-
CreateConfigurationInput.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
|
267
|
-
CreateConfigurationInput.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
265
|
+
CreateConfigurationInput.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, required: true, location_name: "engineType"))
|
266
|
+
CreateConfigurationInput.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "engineVersion"))
|
267
|
+
CreateConfigurationInput.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "name"))
|
268
268
|
CreateConfigurationInput.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
269
269
|
CreateConfigurationInput.struct_class = Types::CreateConfigurationInput
|
270
270
|
|
271
|
-
CreateConfigurationOutput.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
|
272
|
-
CreateConfigurationOutput.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
273
|
-
CreateConfigurationOutput.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "created"))
|
274
|
-
CreateConfigurationOutput.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
271
|
+
CreateConfigurationOutput.add_member(:arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "arn"))
|
272
|
+
CreateConfigurationOutput.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, required: true, location_name: "authenticationStrategy"))
|
273
|
+
CreateConfigurationOutput.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, required: true, location_name: "created"))
|
274
|
+
CreateConfigurationOutput.add_member(:id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "id"))
|
275
275
|
CreateConfigurationOutput.add_member(:latest_revision, Shapes::ShapeRef.new(shape: ConfigurationRevision, location_name: "latestRevision"))
|
276
|
-
CreateConfigurationOutput.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
276
|
+
CreateConfigurationOutput.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "name"))
|
277
277
|
CreateConfigurationOutput.struct_class = Types::CreateConfigurationOutput
|
278
278
|
|
279
279
|
CreateConfigurationRequest.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
280
|
-
CreateConfigurationRequest.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, location_name: "engineType"))
|
281
|
-
CreateConfigurationRequest.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
|
282
|
-
CreateConfigurationRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
280
|
+
CreateConfigurationRequest.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, required: true, location_name: "engineType"))
|
281
|
+
CreateConfigurationRequest.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "engineVersion"))
|
282
|
+
CreateConfigurationRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "name"))
|
283
283
|
CreateConfigurationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
284
284
|
CreateConfigurationRequest.struct_class = Types::CreateConfigurationRequest
|
285
285
|
|
@@ -297,13 +297,13 @@ module Aws::MQ
|
|
297
297
|
|
298
298
|
CreateUserInput.add_member(:console_access, Shapes::ShapeRef.new(shape: __boolean, location_name: "consoleAccess"))
|
299
299
|
CreateUserInput.add_member(:groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "groups"))
|
300
|
-
CreateUserInput.add_member(:password, Shapes::ShapeRef.new(shape: __string, location_name: "password"))
|
300
|
+
CreateUserInput.add_member(:password, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "password"))
|
301
301
|
CreateUserInput.struct_class = Types::CreateUserInput
|
302
302
|
|
303
303
|
CreateUserRequest.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "broker-id"))
|
304
304
|
CreateUserRequest.add_member(:console_access, Shapes::ShapeRef.new(shape: __boolean, location_name: "consoleAccess"))
|
305
305
|
CreateUserRequest.add_member(:groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "groups"))
|
306
|
-
CreateUserRequest.add_member(:password, Shapes::ShapeRef.new(shape: __string, location_name: "password"))
|
306
|
+
CreateUserRequest.add_member(:password, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "password"))
|
307
307
|
CreateUserRequest.add_member(:username, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "username"))
|
308
308
|
CreateUserRequest.struct_class = Types::CreateUserRequest
|
309
309
|
|
@@ -351,7 +351,7 @@ module Aws::MQ
|
|
351
351
|
DescribeBrokerInstanceOptionsResponse.struct_class = Types::DescribeBrokerInstanceOptionsResponse
|
352
352
|
|
353
353
|
DescribeBrokerOutput.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
354
|
-
DescribeBrokerOutput.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: __boolean, location_name: "autoMinorVersionUpgrade"))
|
354
|
+
DescribeBrokerOutput.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: __boolean, required: true, location_name: "autoMinorVersionUpgrade"))
|
355
355
|
DescribeBrokerOutput.add_member(:broker_arn, Shapes::ShapeRef.new(shape: __string, location_name: "brokerArn"))
|
356
356
|
DescribeBrokerOutput.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, location_name: "brokerId"))
|
357
357
|
DescribeBrokerOutput.add_member(:broker_instances, Shapes::ShapeRef.new(shape: __listOfBrokerInstance, location_name: "brokerInstances"))
|
@@ -359,9 +359,9 @@ module Aws::MQ
|
|
359
359
|
DescribeBrokerOutput.add_member(:broker_state, Shapes::ShapeRef.new(shape: BrokerState, location_name: "brokerState"))
|
360
360
|
DescribeBrokerOutput.add_member(:configurations, Shapes::ShapeRef.new(shape: Configurations, location_name: "configurations"))
|
361
361
|
DescribeBrokerOutput.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "created"))
|
362
|
-
DescribeBrokerOutput.add_member(:deployment_mode, Shapes::ShapeRef.new(shape: DeploymentMode, location_name: "deploymentMode"))
|
362
|
+
DescribeBrokerOutput.add_member(:deployment_mode, Shapes::ShapeRef.new(shape: DeploymentMode, required: true, location_name: "deploymentMode"))
|
363
363
|
DescribeBrokerOutput.add_member(:encryption_options, Shapes::ShapeRef.new(shape: EncryptionOptions, location_name: "encryptionOptions"))
|
364
|
-
DescribeBrokerOutput.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, location_name: "engineType"))
|
364
|
+
DescribeBrokerOutput.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, required: true, location_name: "engineType"))
|
365
365
|
DescribeBrokerOutput.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
|
366
366
|
DescribeBrokerOutput.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "hostInstanceType"))
|
367
367
|
DescribeBrokerOutput.add_member(:ldap_server_metadata, Shapes::ShapeRef.new(shape: LdapServerMetadataOutput, location_name: "ldapServerMetadata"))
|
@@ -372,7 +372,7 @@ module Aws::MQ
|
|
372
372
|
DescribeBrokerOutput.add_member(:pending_host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "pendingHostInstanceType"))
|
373
373
|
DescribeBrokerOutput.add_member(:pending_ldap_server_metadata, Shapes::ShapeRef.new(shape: LdapServerMetadataOutput, location_name: "pendingLdapServerMetadata"))
|
374
374
|
DescribeBrokerOutput.add_member(:pending_security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "pendingSecurityGroups"))
|
375
|
-
DescribeBrokerOutput.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: __boolean, location_name: "publiclyAccessible"))
|
375
|
+
DescribeBrokerOutput.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: __boolean, required: true, location_name: "publiclyAccessible"))
|
376
376
|
DescribeBrokerOutput.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
|
377
377
|
DescribeBrokerOutput.add_member(:storage_type, Shapes::ShapeRef.new(shape: BrokerStorageType, location_name: "storageType"))
|
378
378
|
DescribeBrokerOutput.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "subnetIds"))
|
@@ -428,9 +428,9 @@ module Aws::MQ
|
|
428
428
|
DescribeConfigurationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
429
429
|
DescribeConfigurationResponse.struct_class = Types::DescribeConfigurationResponse
|
430
430
|
|
431
|
-
DescribeConfigurationRevisionOutput.add_member(:configuration_id, Shapes::ShapeRef.new(shape: __string, location_name: "configurationId"))
|
432
|
-
DescribeConfigurationRevisionOutput.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "created"))
|
433
|
-
DescribeConfigurationRevisionOutput.add_member(:data, Shapes::ShapeRef.new(shape: __string, location_name: "data"))
|
431
|
+
DescribeConfigurationRevisionOutput.add_member(:configuration_id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "configurationId"))
|
432
|
+
DescribeConfigurationRevisionOutput.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, required: true, location_name: "created"))
|
433
|
+
DescribeConfigurationRevisionOutput.add_member(:data, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "data"))
|
434
434
|
DescribeConfigurationRevisionOutput.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
|
435
435
|
DescribeConfigurationRevisionOutput.struct_class = Types::DescribeConfigurationRevisionOutput
|
436
436
|
|
@@ -444,11 +444,11 @@ module Aws::MQ
|
|
444
444
|
DescribeConfigurationRevisionResponse.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
|
445
445
|
DescribeConfigurationRevisionResponse.struct_class = Types::DescribeConfigurationRevisionResponse
|
446
446
|
|
447
|
-
DescribeUserOutput.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, location_name: "brokerId"))
|
447
|
+
DescribeUserOutput.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "brokerId"))
|
448
448
|
DescribeUserOutput.add_member(:console_access, Shapes::ShapeRef.new(shape: __boolean, location_name: "consoleAccess"))
|
449
449
|
DescribeUserOutput.add_member(:groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "groups"))
|
450
450
|
DescribeUserOutput.add_member(:pending, Shapes::ShapeRef.new(shape: UserPendingChanges, location_name: "pending"))
|
451
|
-
DescribeUserOutput.add_member(:username, Shapes::ShapeRef.new(shape: __string, location_name: "username"))
|
451
|
+
DescribeUserOutput.add_member(:username, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "username"))
|
452
452
|
DescribeUserOutput.struct_class = Types::DescribeUserOutput
|
453
453
|
|
454
454
|
DescribeUserRequest.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "broker-id"))
|
@@ -481,28 +481,28 @@ module Aws::MQ
|
|
481
481
|
InternalServerErrorException.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
|
482
482
|
InternalServerErrorException.struct_class = Types::InternalServerErrorException
|
483
483
|
|
484
|
-
LdapServerMetadataInput.add_member(:hosts, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "hosts"))
|
485
|
-
LdapServerMetadataInput.add_member(:role_base, Shapes::ShapeRef.new(shape: __string, location_name: "roleBase"))
|
484
|
+
LdapServerMetadataInput.add_member(:hosts, Shapes::ShapeRef.new(shape: __listOf__string, required: true, location_name: "hosts"))
|
485
|
+
LdapServerMetadataInput.add_member(:role_base, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "roleBase"))
|
486
486
|
LdapServerMetadataInput.add_member(:role_name, Shapes::ShapeRef.new(shape: __string, location_name: "roleName"))
|
487
|
-
LdapServerMetadataInput.add_member(:role_search_matching, Shapes::ShapeRef.new(shape: __string, location_name: "roleSearchMatching"))
|
487
|
+
LdapServerMetadataInput.add_member(:role_search_matching, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "roleSearchMatching"))
|
488
488
|
LdapServerMetadataInput.add_member(:role_search_subtree, Shapes::ShapeRef.new(shape: __boolean, location_name: "roleSearchSubtree"))
|
489
|
-
LdapServerMetadataInput.add_member(:service_account_password, Shapes::ShapeRef.new(shape: __string, location_name: "serviceAccountPassword"))
|
490
|
-
LdapServerMetadataInput.add_member(:service_account_username, Shapes::ShapeRef.new(shape: __string, location_name: "serviceAccountUsername"))
|
491
|
-
LdapServerMetadataInput.add_member(:user_base, Shapes::ShapeRef.new(shape: __string, location_name: "userBase"))
|
489
|
+
LdapServerMetadataInput.add_member(:service_account_password, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "serviceAccountPassword"))
|
490
|
+
LdapServerMetadataInput.add_member(:service_account_username, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "serviceAccountUsername"))
|
491
|
+
LdapServerMetadataInput.add_member(:user_base, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "userBase"))
|
492
492
|
LdapServerMetadataInput.add_member(:user_role_name, Shapes::ShapeRef.new(shape: __string, location_name: "userRoleName"))
|
493
|
-
LdapServerMetadataInput.add_member(:user_search_matching, Shapes::ShapeRef.new(shape: __string, location_name: "userSearchMatching"))
|
493
|
+
LdapServerMetadataInput.add_member(:user_search_matching, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "userSearchMatching"))
|
494
494
|
LdapServerMetadataInput.add_member(:user_search_subtree, Shapes::ShapeRef.new(shape: __boolean, location_name: "userSearchSubtree"))
|
495
495
|
LdapServerMetadataInput.struct_class = Types::LdapServerMetadataInput
|
496
496
|
|
497
|
-
LdapServerMetadataOutput.add_member(:hosts, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "hosts"))
|
498
|
-
LdapServerMetadataOutput.add_member(:role_base, Shapes::ShapeRef.new(shape: __string, location_name: "roleBase"))
|
497
|
+
LdapServerMetadataOutput.add_member(:hosts, Shapes::ShapeRef.new(shape: __listOf__string, required: true, location_name: "hosts"))
|
498
|
+
LdapServerMetadataOutput.add_member(:role_base, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "roleBase"))
|
499
499
|
LdapServerMetadataOutput.add_member(:role_name, Shapes::ShapeRef.new(shape: __string, location_name: "roleName"))
|
500
|
-
LdapServerMetadataOutput.add_member(:role_search_matching, Shapes::ShapeRef.new(shape: __string, location_name: "roleSearchMatching"))
|
500
|
+
LdapServerMetadataOutput.add_member(:role_search_matching, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "roleSearchMatching"))
|
501
501
|
LdapServerMetadataOutput.add_member(:role_search_subtree, Shapes::ShapeRef.new(shape: __boolean, location_name: "roleSearchSubtree"))
|
502
|
-
LdapServerMetadataOutput.add_member(:service_account_username, Shapes::ShapeRef.new(shape: __string, location_name: "serviceAccountUsername"))
|
503
|
-
LdapServerMetadataOutput.add_member(:user_base, Shapes::ShapeRef.new(shape: __string, location_name: "userBase"))
|
502
|
+
LdapServerMetadataOutput.add_member(:service_account_username, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "serviceAccountUsername"))
|
503
|
+
LdapServerMetadataOutput.add_member(:user_base, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "userBase"))
|
504
504
|
LdapServerMetadataOutput.add_member(:user_role_name, Shapes::ShapeRef.new(shape: __string, location_name: "userRoleName"))
|
505
|
-
LdapServerMetadataOutput.add_member(:user_search_matching, Shapes::ShapeRef.new(shape: __string, location_name: "userSearchMatching"))
|
505
|
+
LdapServerMetadataOutput.add_member(:user_search_matching, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "userSearchMatching"))
|
506
506
|
LdapServerMetadataOutput.add_member(:user_search_subtree, Shapes::ShapeRef.new(shape: __boolean, location_name: "userSearchSubtree"))
|
507
507
|
LdapServerMetadataOutput.struct_class = Types::LdapServerMetadataOutput
|
508
508
|
|
@@ -555,10 +555,10 @@ module Aws::MQ
|
|
555
555
|
ListTagsResponse.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
556
556
|
ListTagsResponse.struct_class = Types::ListTagsResponse
|
557
557
|
|
558
|
-
ListUsersOutput.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, location_name: "brokerId"))
|
559
|
-
ListUsersOutput.add_member(:max_results, Shapes::ShapeRef.new(shape: __integerMin5Max100, location_name: "maxResults"))
|
558
|
+
ListUsersOutput.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "brokerId"))
|
559
|
+
ListUsersOutput.add_member(:max_results, Shapes::ShapeRef.new(shape: __integerMin5Max100, required: true, location_name: "maxResults"))
|
560
560
|
ListUsersOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
|
561
|
-
ListUsersOutput.add_member(:users, Shapes::ShapeRef.new(shape: __listOfUserSummary, location_name: "users"))
|
561
|
+
ListUsersOutput.add_member(:users, Shapes::ShapeRef.new(shape: __listOfUserSummary, required: true, location_name: "users"))
|
562
562
|
ListUsersOutput.struct_class = Types::ListUsersOutput
|
563
563
|
|
564
564
|
ListUsersRequest.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "broker-id"))
|
@@ -578,8 +578,8 @@ module Aws::MQ
|
|
578
578
|
|
579
579
|
LogsSummary.add_member(:audit, Shapes::ShapeRef.new(shape: __boolean, location_name: "audit"))
|
580
580
|
LogsSummary.add_member(:audit_log_group, Shapes::ShapeRef.new(shape: __string, location_name: "auditLogGroup"))
|
581
|
-
LogsSummary.add_member(:general, Shapes::ShapeRef.new(shape: __boolean, location_name: "general"))
|
582
|
-
LogsSummary.add_member(:general_log_group, Shapes::ShapeRef.new(shape: __string, location_name: "generalLogGroup"))
|
581
|
+
LogsSummary.add_member(:general, Shapes::ShapeRef.new(shape: __boolean, required: true, location_name: "general"))
|
582
|
+
LogsSummary.add_member(:general_log_group, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "generalLogGroup"))
|
583
583
|
LogsSummary.add_member(:pending, Shapes::ShapeRef.new(shape: PendingLogs, location_name: "pending"))
|
584
584
|
LogsSummary.struct_class = Types::LogsSummary
|
585
585
|
|
@@ -598,7 +598,7 @@ module Aws::MQ
|
|
598
598
|
|
599
599
|
SanitizationWarning.add_member(:attribute_name, Shapes::ShapeRef.new(shape: __string, location_name: "attributeName"))
|
600
600
|
SanitizationWarning.add_member(:element_name, Shapes::ShapeRef.new(shape: __string, location_name: "elementName"))
|
601
|
-
SanitizationWarning.add_member(:reason, Shapes::ShapeRef.new(shape: SanitizationWarningReason, location_name: "reason"))
|
601
|
+
SanitizationWarning.add_member(:reason, Shapes::ShapeRef.new(shape: SanitizationWarningReason, required: true, location_name: "reason"))
|
602
602
|
SanitizationWarning.struct_class = Types::SanitizationWarning
|
603
603
|
|
604
604
|
Tags.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
@@ -615,17 +615,19 @@ module Aws::MQ
|
|
615
615
|
UpdateBrokerInput.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "hostInstanceType"))
|
616
616
|
UpdateBrokerInput.add_member(:ldap_server_metadata, Shapes::ShapeRef.new(shape: LdapServerMetadataInput, location_name: "ldapServerMetadata"))
|
617
617
|
UpdateBrokerInput.add_member(:logs, Shapes::ShapeRef.new(shape: Logs, location_name: "logs"))
|
618
|
+
UpdateBrokerInput.add_member(:maintenance_window_start_time, Shapes::ShapeRef.new(shape: WeeklyStartTime, location_name: "maintenanceWindowStartTime"))
|
618
619
|
UpdateBrokerInput.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
|
619
620
|
UpdateBrokerInput.struct_class = Types::UpdateBrokerInput
|
620
621
|
|
621
622
|
UpdateBrokerOutput.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
622
623
|
UpdateBrokerOutput.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: __boolean, location_name: "autoMinorVersionUpgrade"))
|
623
|
-
UpdateBrokerOutput.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, location_name: "brokerId"))
|
624
|
+
UpdateBrokerOutput.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "brokerId"))
|
624
625
|
UpdateBrokerOutput.add_member(:configuration, Shapes::ShapeRef.new(shape: ConfigurationId, location_name: "configuration"))
|
625
626
|
UpdateBrokerOutput.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
|
626
627
|
UpdateBrokerOutput.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "hostInstanceType"))
|
627
628
|
UpdateBrokerOutput.add_member(:ldap_server_metadata, Shapes::ShapeRef.new(shape: LdapServerMetadataOutput, location_name: "ldapServerMetadata"))
|
628
629
|
UpdateBrokerOutput.add_member(:logs, Shapes::ShapeRef.new(shape: Logs, location_name: "logs"))
|
630
|
+
UpdateBrokerOutput.add_member(:maintenance_window_start_time, Shapes::ShapeRef.new(shape: WeeklyStartTime, location_name: "maintenanceWindowStartTime"))
|
629
631
|
UpdateBrokerOutput.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
|
630
632
|
UpdateBrokerOutput.struct_class = Types::UpdateBrokerOutput
|
631
633
|
|
@@ -637,6 +639,7 @@ module Aws::MQ
|
|
637
639
|
UpdateBrokerRequest.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "hostInstanceType"))
|
638
640
|
UpdateBrokerRequest.add_member(:ldap_server_metadata, Shapes::ShapeRef.new(shape: LdapServerMetadataInput, location_name: "ldapServerMetadata"))
|
639
641
|
UpdateBrokerRequest.add_member(:logs, Shapes::ShapeRef.new(shape: Logs, location_name: "logs"))
|
642
|
+
UpdateBrokerRequest.add_member(:maintenance_window_start_time, Shapes::ShapeRef.new(shape: WeeklyStartTime, location_name: "maintenanceWindowStartTime"))
|
640
643
|
UpdateBrokerRequest.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
|
641
644
|
UpdateBrokerRequest.struct_class = Types::UpdateBrokerRequest
|
642
645
|
|
@@ -648,23 +651,24 @@ module Aws::MQ
|
|
648
651
|
UpdateBrokerResponse.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "hostInstanceType"))
|
649
652
|
UpdateBrokerResponse.add_member(:ldap_server_metadata, Shapes::ShapeRef.new(shape: LdapServerMetadataOutput, location_name: "ldapServerMetadata"))
|
650
653
|
UpdateBrokerResponse.add_member(:logs, Shapes::ShapeRef.new(shape: Logs, location_name: "logs"))
|
654
|
+
UpdateBrokerResponse.add_member(:maintenance_window_start_time, Shapes::ShapeRef.new(shape: WeeklyStartTime, location_name: "maintenanceWindowStartTime"))
|
651
655
|
UpdateBrokerResponse.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
|
652
656
|
UpdateBrokerResponse.struct_class = Types::UpdateBrokerResponse
|
653
657
|
|
654
|
-
UpdateConfigurationInput.add_member(:data, Shapes::ShapeRef.new(shape: __string, location_name: "data"))
|
658
|
+
UpdateConfigurationInput.add_member(:data, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "data"))
|
655
659
|
UpdateConfigurationInput.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
|
656
660
|
UpdateConfigurationInput.struct_class = Types::UpdateConfigurationInput
|
657
661
|
|
658
|
-
UpdateConfigurationOutput.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
|
659
|
-
UpdateConfigurationOutput.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "created"))
|
660
|
-
UpdateConfigurationOutput.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
662
|
+
UpdateConfigurationOutput.add_member(:arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "arn"))
|
663
|
+
UpdateConfigurationOutput.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, required: true, location_name: "created"))
|
664
|
+
UpdateConfigurationOutput.add_member(:id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "id"))
|
661
665
|
UpdateConfigurationOutput.add_member(:latest_revision, Shapes::ShapeRef.new(shape: ConfigurationRevision, location_name: "latestRevision"))
|
662
|
-
UpdateConfigurationOutput.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
666
|
+
UpdateConfigurationOutput.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "name"))
|
663
667
|
UpdateConfigurationOutput.add_member(:warnings, Shapes::ShapeRef.new(shape: __listOfSanitizationWarning, location_name: "warnings"))
|
664
668
|
UpdateConfigurationOutput.struct_class = Types::UpdateConfigurationOutput
|
665
669
|
|
666
670
|
UpdateConfigurationRequest.add_member(:configuration_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "configuration-id"))
|
667
|
-
UpdateConfigurationRequest.add_member(:data, Shapes::ShapeRef.new(shape: __string, location_name: "data"))
|
671
|
+
UpdateConfigurationRequest.add_member(:data, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "data"))
|
668
672
|
UpdateConfigurationRequest.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
|
669
673
|
UpdateConfigurationRequest.struct_class = Types::UpdateConfigurationRequest
|
670
674
|
|
@@ -692,21 +696,21 @@ module Aws::MQ
|
|
692
696
|
|
693
697
|
User.add_member(:console_access, Shapes::ShapeRef.new(shape: __boolean, location_name: "consoleAccess"))
|
694
698
|
User.add_member(:groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "groups"))
|
695
|
-
User.add_member(:password, Shapes::ShapeRef.new(shape: __string, location_name: "password"))
|
696
|
-
User.add_member(:username, Shapes::ShapeRef.new(shape: __string, location_name: "username"))
|
699
|
+
User.add_member(:password, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "password"))
|
700
|
+
User.add_member(:username, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "username"))
|
697
701
|
User.struct_class = Types::User
|
698
702
|
|
699
703
|
UserPendingChanges.add_member(:console_access, Shapes::ShapeRef.new(shape: __boolean, location_name: "consoleAccess"))
|
700
704
|
UserPendingChanges.add_member(:groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "groups"))
|
701
|
-
UserPendingChanges.add_member(:pending_change, Shapes::ShapeRef.new(shape: ChangeType, location_name: "pendingChange"))
|
705
|
+
UserPendingChanges.add_member(:pending_change, Shapes::ShapeRef.new(shape: ChangeType, required: true, location_name: "pendingChange"))
|
702
706
|
UserPendingChanges.struct_class = Types::UserPendingChanges
|
703
707
|
|
704
708
|
UserSummary.add_member(:pending_change, Shapes::ShapeRef.new(shape: ChangeType, location_name: "pendingChange"))
|
705
|
-
UserSummary.add_member(:username, Shapes::ShapeRef.new(shape: __string, location_name: "username"))
|
709
|
+
UserSummary.add_member(:username, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "username"))
|
706
710
|
UserSummary.struct_class = Types::UserSummary
|
707
711
|
|
708
|
-
WeeklyStartTime.add_member(:day_of_week, Shapes::ShapeRef.new(shape: DayOfWeek, location_name: "dayOfWeek"))
|
709
|
-
WeeklyStartTime.add_member(:time_of_day, Shapes::ShapeRef.new(shape: __string, location_name: "timeOfDay"))
|
712
|
+
WeeklyStartTime.add_member(:day_of_week, Shapes::ShapeRef.new(shape: DayOfWeek, required: true, location_name: "dayOfWeek"))
|
713
|
+
WeeklyStartTime.add_member(:time_of_day, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "timeOfDay"))
|
710
714
|
WeeklyStartTime.add_member(:time_zone, Shapes::ShapeRef.new(shape: __string, location_name: "timeZone"))
|
711
715
|
WeeklyStartTime.struct_class = Types::WeeklyStartTime
|
712
716
|
|