aws-sdk-mq 1.1.0 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 23172715361774ccd8836a5841f1fa0df3cca5d2
4
- data.tar.gz: d1dadb72630dde04009847d61ad1ed6b236d7c25
3
+ metadata.gz: d7465a40f3f636b679ea6748e531d8400d3803b1
4
+ data.tar.gz: dc467acfca2352598224060cb45c499283f0559c
5
5
  SHA512:
6
- metadata.gz: f0530af7ec31a481de8444bbcb9356c61567e58641278b8aaa9c03e65afbc85c791a1500cac5bcc7f1db35f31faa9ea3d1fdb6100dcef9418a84bb88b5cba978
7
- data.tar.gz: 72bd1e7b43d368160f63a947211103b4b0949bbe18da6b16aa47b7c5b22a2d4851fcb0cb3e4739fded398380e2ead4391d0940721ef9017c9a4d934227614dc1
6
+ metadata.gz: 760a267e3ae35a9bc771ff93a4007372d213c8747d47290d14d8db828a49219cc4beffd5b2e267fc1256eba638928563768b8d3fc1061ec2aabb40d097217d92
7
+ data.tar.gz: 2ffdcf0068fbc98150adb9242982e6bb6c748a70265a5ffb12f29d78b008da71d864c516f6c8b318f9aa13c88f3546c62331ba72fcc66ef6cd20ae4ffbe1a2ea
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-mq/customizations'
42
42
  # @service
43
43
  module Aws::MQ
44
44
 
45
- GEM_VERSION = '1.1.0'
45
+ GEM_VERSION = '1.2.0'
46
46
 
47
47
  end
@@ -170,10 +170,7 @@ module Aws::MQ
170
170
  # not need to pass this option.**
171
171
  #
172
172
  # @option params [String] :deployment_mode
173
- # The deployment mode of the broker. Possible values: SINGLE\_INSTANCE,
174
- # ACTIVE\_STANDBY\_MULTI\_AZ SINGLE\_INSTANCE creates a single-instance
175
- # broker in a single Availability Zone. ACTIVE\_STANDBY\_MULTI\_AZ
176
- # creates an active/standby broker for high availability.
173
+ # The deployment mode of the broker.
177
174
  #
178
175
  # @option params [String] :engine_type
179
176
  # The type of broker engine. Note: Currently, Amazon MQ supports only
@@ -183,6 +180,10 @@ module Aws::MQ
183
180
  #
184
181
  # @option params [String] :host_instance_type
185
182
  #
183
+ # @option params [Types::Logs] :logs
184
+ # The list of information about logs to be enabled for the specified
185
+ # broker.
186
+ #
186
187
  # @option params [Types::WeeklyStartTime] :maintenance_window_start_time
187
188
  # The scheduled time period relative to UTC during which Amazon MQ
188
189
  # begins to apply pending updates or patches to the broker.
@@ -214,6 +215,10 @@ module Aws::MQ
214
215
  # engine_type: "ACTIVEMQ", # accepts ACTIVEMQ
215
216
  # engine_version: "__string",
216
217
  # host_instance_type: "__string",
218
+ # logs: {
219
+ # audit: false,
220
+ # general: false,
221
+ # },
217
222
  # maintenance_window_start_time: {
218
223
  # day_of_week: "MONDAY", # accepts MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY
219
224
  # time_of_day: "__string",
@@ -248,8 +253,7 @@ module Aws::MQ
248
253
 
249
254
  # Creates a new configuration for the specified configuration name.
250
255
  # Amazon MQ uses the default configuration (the engine type and
251
- # version). Note: If the configuration name already exists, Amazon MQ
252
- # doesn't create a configuration.
256
+ # version).
253
257
  #
254
258
  # @option params [String] :engine_type
255
259
  # The type of broker engine. Note: Currently, Amazon MQ supports only
@@ -262,6 +266,7 @@ module Aws::MQ
262
266
  # @return [Types::CreateConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
263
267
  #
264
268
  # * {Types::CreateConfigurationResponse#arn #arn} => String
269
+ # * {Types::CreateConfigurationResponse#created #created} => Time
265
270
  # * {Types::CreateConfigurationResponse#id #id} => String
266
271
  # * {Types::CreateConfigurationResponse#latest_revision #latest_revision} => Types::ConfigurationRevision
267
272
  # * {Types::CreateConfigurationResponse#name #name} => String
@@ -277,7 +282,9 @@ module Aws::MQ
277
282
  # @example Response structure
278
283
  #
279
284
  # resp.arn #=> String
285
+ # resp.created #=> Time
280
286
  # resp.id #=> String
287
+ # resp.latest_revision.created #=> Time
281
288
  # resp.latest_revision.description #=> String
282
289
  # resp.latest_revision.revision #=> Integer
283
290
  # resp.name #=> String
@@ -388,10 +395,12 @@ module Aws::MQ
388
395
  # * {Types::DescribeBrokerResponse#broker_name #broker_name} => String
389
396
  # * {Types::DescribeBrokerResponse#broker_state #broker_state} => String
390
397
  # * {Types::DescribeBrokerResponse#configurations #configurations} => Types::Configurations
398
+ # * {Types::DescribeBrokerResponse#created #created} => Time
391
399
  # * {Types::DescribeBrokerResponse#deployment_mode #deployment_mode} => String
392
400
  # * {Types::DescribeBrokerResponse#engine_type #engine_type} => String
393
401
  # * {Types::DescribeBrokerResponse#engine_version #engine_version} => String
394
402
  # * {Types::DescribeBrokerResponse#host_instance_type #host_instance_type} => String
403
+ # * {Types::DescribeBrokerResponse#logs #logs} => Types::LogsSummary
395
404
  # * {Types::DescribeBrokerResponse#maintenance_window_start_time #maintenance_window_start_time} => Types::WeeklyStartTime
396
405
  # * {Types::DescribeBrokerResponse#publicly_accessible #publicly_accessible} => Boolean
397
406
  # * {Types::DescribeBrokerResponse#security_groups #security_groups} => Array<String>
@@ -413,6 +422,7 @@ module Aws::MQ
413
422
  # resp.broker_instances[0].console_url #=> String
414
423
  # resp.broker_instances[0].endpoints #=> Array
415
424
  # resp.broker_instances[0].endpoints[0] #=> String
425
+ # resp.broker_instances[0].ip_address #=> String
416
426
  # resp.broker_name #=> String
417
427
  # resp.broker_state #=> String, one of "CREATION_IN_PROGRESS", "CREATION_FAILED", "DELETION_IN_PROGRESS", "RUNNING", "REBOOT_IN_PROGRESS"
418
428
  # resp.configurations.current.id #=> String
@@ -422,10 +432,17 @@ module Aws::MQ
422
432
  # resp.configurations.history[0].revision #=> Integer
423
433
  # resp.configurations.pending.id #=> String
424
434
  # resp.configurations.pending.revision #=> Integer
435
+ # resp.created #=> Time
425
436
  # resp.deployment_mode #=> String, one of "SINGLE_INSTANCE", "ACTIVE_STANDBY_MULTI_AZ"
426
437
  # resp.engine_type #=> String, one of "ACTIVEMQ"
427
438
  # resp.engine_version #=> String
428
439
  # resp.host_instance_type #=> String
440
+ # resp.logs.audit #=> Boolean
441
+ # resp.logs.audit_log_group #=> String
442
+ # resp.logs.general #=> Boolean
443
+ # resp.logs.general_log_group #=> String
444
+ # resp.logs.pending.audit #=> Boolean
445
+ # resp.logs.pending.general #=> Boolean
429
446
  # resp.maintenance_window_start_time.day_of_week #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
430
447
  # resp.maintenance_window_start_time.time_of_day #=> String
431
448
  # resp.maintenance_window_start_time.time_zone #=> String
@@ -454,6 +471,7 @@ module Aws::MQ
454
471
  # @return [Types::DescribeConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
455
472
  #
456
473
  # * {Types::DescribeConfigurationResponse#arn #arn} => String
474
+ # * {Types::DescribeConfigurationResponse#created #created} => Time
457
475
  # * {Types::DescribeConfigurationResponse#description #description} => String
458
476
  # * {Types::DescribeConfigurationResponse#engine_type #engine_type} => String
459
477
  # * {Types::DescribeConfigurationResponse#engine_version #engine_version} => String
@@ -470,10 +488,12 @@ module Aws::MQ
470
488
  # @example Response structure
471
489
  #
472
490
  # resp.arn #=> String
491
+ # resp.created #=> Time
473
492
  # resp.description #=> String
474
493
  # resp.engine_type #=> String, one of "ACTIVEMQ"
475
494
  # resp.engine_version #=> String
476
495
  # resp.id #=> String
496
+ # resp.latest_revision.created #=> Time
477
497
  # resp.latest_revision.description #=> String
478
498
  # resp.latest_revision.revision #=> Integer
479
499
  # resp.name #=> String
@@ -497,6 +517,7 @@ module Aws::MQ
497
517
  # @return [Types::DescribeConfigurationRevisionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
498
518
  #
499
519
  # * {Types::DescribeConfigurationRevisionResponse#configuration_id #configuration_id} => String
520
+ # * {Types::DescribeConfigurationRevisionResponse#created #created} => Time
500
521
  # * {Types::DescribeConfigurationRevisionResponse#data #data} => String
501
522
  # * {Types::DescribeConfigurationRevisionResponse#description #description} => String
502
523
  #
@@ -510,6 +531,7 @@ module Aws::MQ
510
531
  # @example Response structure
511
532
  #
512
533
  # resp.configuration_id #=> String
534
+ # resp.created #=> Time
513
535
  # resp.data #=> String
514
536
  # resp.description #=> String
515
537
  #
@@ -589,6 +611,7 @@ module Aws::MQ
589
611
  # resp.broker_summaries[0].broker_id #=> String
590
612
  # resp.broker_summaries[0].broker_name #=> String
591
613
  # resp.broker_summaries[0].broker_state #=> String, one of "CREATION_IN_PROGRESS", "CREATION_FAILED", "DELETION_IN_PROGRESS", "RUNNING", "REBOOT_IN_PROGRESS"
614
+ # resp.broker_summaries[0].created #=> Time
592
615
  # resp.broker_summaries[0].deployment_mode #=> String, one of "SINGLE_INSTANCE", "ACTIVE_STANDBY_MULTI_AZ"
593
616
  # resp.broker_summaries[0].host_instance_type #=> String
594
617
  # resp.next_token #=> String
@@ -631,6 +654,7 @@ module Aws::MQ
631
654
  # resp.max_results #=> Integer
632
655
  # resp.next_token #=> String
633
656
  # resp.revisions #=> Array
657
+ # resp.revisions[0].created #=> Time
634
658
  # resp.revisions[0].description #=> String
635
659
  # resp.revisions[0].revision #=> Integer
636
660
  #
@@ -666,10 +690,12 @@ module Aws::MQ
666
690
  #
667
691
  # resp.configurations #=> Array
668
692
  # resp.configurations[0].arn #=> String
693
+ # resp.configurations[0].created #=> Time
669
694
  # resp.configurations[0].description #=> String
670
695
  # resp.configurations[0].engine_type #=> String, one of "ACTIVEMQ"
671
696
  # resp.configurations[0].engine_version #=> String
672
697
  # resp.configurations[0].id #=> String
698
+ # resp.configurations[0].latest_revision.created #=> Time
673
699
  # resp.configurations[0].latest_revision.description #=> String
674
700
  # resp.configurations[0].latest_revision.revision #=> Integer
675
701
  # resp.configurations[0].name #=> String
@@ -754,10 +780,15 @@ module Aws::MQ
754
780
  # @option params [Types::ConfigurationId] :configuration
755
781
  # A list of information about the configuration.
756
782
  #
783
+ # @option params [Types::Logs] :logs
784
+ # The list of information about logs to be enabled for the specified
785
+ # broker.
786
+ #
757
787
  # @return [Types::UpdateBrokerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
758
788
  #
759
789
  # * {Types::UpdateBrokerResponse#broker_id #broker_id} => String
760
790
  # * {Types::UpdateBrokerResponse#configuration #configuration} => Types::ConfigurationId
791
+ # * {Types::UpdateBrokerResponse#logs #logs} => Types::Logs
761
792
  #
762
793
  # @example Request syntax with placeholder values
763
794
  #
@@ -767,6 +798,10 @@ module Aws::MQ
767
798
  # id: "__string",
768
799
  # revision: 1,
769
800
  # },
801
+ # logs: {
802
+ # audit: false,
803
+ # general: false,
804
+ # },
770
805
  # })
771
806
  #
772
807
  # @example Response structure
@@ -774,6 +809,8 @@ module Aws::MQ
774
809
  # resp.broker_id #=> String
775
810
  # resp.configuration.id #=> String
776
811
  # resp.configuration.revision #=> Integer
812
+ # resp.logs.audit #=> Boolean
813
+ # resp.logs.general #=> Boolean
777
814
  #
778
815
  # @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/UpdateBroker AWS API Documentation
779
816
  #
@@ -795,6 +832,7 @@ module Aws::MQ
795
832
  # @return [Types::UpdateConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
796
833
  #
797
834
  # * {Types::UpdateConfigurationResponse#arn #arn} => String
835
+ # * {Types::UpdateConfigurationResponse#created #created} => Time
798
836
  # * {Types::UpdateConfigurationResponse#id #id} => String
799
837
  # * {Types::UpdateConfigurationResponse#latest_revision #latest_revision} => Types::ConfigurationRevision
800
838
  # * {Types::UpdateConfigurationResponse#name #name} => String
@@ -811,7 +849,9 @@ module Aws::MQ
811
849
  # @example Response structure
812
850
  #
813
851
  # resp.arn #=> String
852
+ # resp.created #=> Time
814
853
  # resp.id #=> String
854
+ # resp.latest_revision.created #=> Time
815
855
  # resp.latest_revision.description #=> String
816
856
  # resp.latest_revision.revision #=> Integer
817
857
  # resp.name #=> String
@@ -875,7 +915,7 @@ module Aws::MQ
875
915
  params: params,
876
916
  config: config)
877
917
  context[:gem_name] = 'aws-sdk-mq'
878
- context[:gem_version] = '1.1.0'
918
+ context[:gem_version] = '1.2.0'
879
919
  Seahorse::Client::Request.new(handlers, context)
880
920
  end
881
921
 
@@ -63,20 +63,14 @@ module Aws::MQ
63
63
  ListConfigurationsOutput = Shapes::StructureShape.new(name: 'ListConfigurationsOutput')
64
64
  ListConfigurationsRequest = Shapes::StructureShape.new(name: 'ListConfigurationsRequest')
65
65
  ListConfigurationsResponse = Shapes::StructureShape.new(name: 'ListConfigurationsResponse')
66
- ListOfBrokerInstance = Shapes::ListShape.new(name: 'ListOfBrokerInstance')
67
- ListOfBrokerSummary = Shapes::ListShape.new(name: 'ListOfBrokerSummary')
68
- ListOfConfiguration = Shapes::ListShape.new(name: 'ListOfConfiguration')
69
- ListOfConfigurationId = Shapes::ListShape.new(name: 'ListOfConfigurationId')
70
- ListOfConfigurationRevision = Shapes::ListShape.new(name: 'ListOfConfigurationRevision')
71
- ListOfSanitizationWarning = Shapes::ListShape.new(name: 'ListOfSanitizationWarning')
72
- ListOfUser = Shapes::ListShape.new(name: 'ListOfUser')
73
- ListOfUserSummary = Shapes::ListShape.new(name: 'ListOfUserSummary')
74
- ListOf__string = Shapes::ListShape.new(name: 'ListOf__string')
75
66
  ListUsersOutput = Shapes::StructureShape.new(name: 'ListUsersOutput')
76
67
  ListUsersRequest = Shapes::StructureShape.new(name: 'ListUsersRequest')
77
68
  ListUsersResponse = Shapes::StructureShape.new(name: 'ListUsersResponse')
69
+ Logs = Shapes::StructureShape.new(name: 'Logs')
70
+ LogsSummary = Shapes::StructureShape.new(name: 'LogsSummary')
78
71
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
79
72
  NotFoundException = Shapes::StructureShape.new(name: 'NotFoundException')
73
+ PendingLogs = Shapes::StructureShape.new(name: 'PendingLogs')
80
74
  RebootBrokerRequest = Shapes::StructureShape.new(name: 'RebootBrokerRequest')
81
75
  RebootBrokerResponse = Shapes::StructureShape.new(name: 'RebootBrokerResponse')
82
76
  SanitizationWarning = Shapes::StructureShape.new(name: 'SanitizationWarning')
@@ -100,22 +94,37 @@ module Aws::MQ
100
94
  __boolean = Shapes::BooleanShape.new(name: '__boolean')
101
95
  __double = Shapes::FloatShape.new(name: '__double')
102
96
  __integer = Shapes::IntegerShape.new(name: '__integer')
97
+ __integerMin5Max100 = Shapes::IntegerShape.new(name: '__integerMin5Max100')
98
+ __listOfBrokerInstance = Shapes::ListShape.new(name: '__listOfBrokerInstance')
99
+ __listOfBrokerSummary = Shapes::ListShape.new(name: '__listOfBrokerSummary')
100
+ __listOfConfiguration = Shapes::ListShape.new(name: '__listOfConfiguration')
101
+ __listOfConfigurationId = Shapes::ListShape.new(name: '__listOfConfigurationId')
102
+ __listOfConfigurationRevision = Shapes::ListShape.new(name: '__listOfConfigurationRevision')
103
+ __listOfSanitizationWarning = Shapes::ListShape.new(name: '__listOfSanitizationWarning')
104
+ __listOfUser = Shapes::ListShape.new(name: '__listOfUser')
105
+ __listOfUserSummary = Shapes::ListShape.new(name: '__listOfUserSummary')
106
+ __listOf__string = Shapes::ListShape.new(name: '__listOf__string')
107
+ __long = Shapes::IntegerShape.new(name: '__long')
103
108
  __string = Shapes::StringShape.new(name: '__string')
104
- __timestamp = Shapes::TimestampShape.new(name: '__timestamp')
109
+ __timestampIso8601 = Shapes::TimestampShape.new(name: '__timestampIso8601', timestampFormat: "iso8601")
110
+ __timestampUnix = Shapes::TimestampShape.new(name: '__timestampUnix', timestampFormat: "unixTimestamp")
105
111
 
106
112
  BrokerInstance.add_member(:console_url, Shapes::ShapeRef.new(shape: __string, location_name: "consoleURL"))
107
- BrokerInstance.add_member(:endpoints, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "endpoints"))
113
+ BrokerInstance.add_member(:endpoints, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "endpoints"))
114
+ BrokerInstance.add_member(:ip_address, Shapes::ShapeRef.new(shape: __string, location_name: "ipAddress"))
108
115
  BrokerInstance.struct_class = Types::BrokerInstance
109
116
 
110
117
  BrokerSummary.add_member(:broker_arn, Shapes::ShapeRef.new(shape: __string, location_name: "brokerArn"))
111
118
  BrokerSummary.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, location_name: "brokerId"))
112
119
  BrokerSummary.add_member(:broker_name, Shapes::ShapeRef.new(shape: __string, location_name: "brokerName"))
113
120
  BrokerSummary.add_member(:broker_state, Shapes::ShapeRef.new(shape: BrokerState, location_name: "brokerState"))
121
+ BrokerSummary.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "created"))
114
122
  BrokerSummary.add_member(:deployment_mode, Shapes::ShapeRef.new(shape: DeploymentMode, location_name: "deploymentMode"))
115
123
  BrokerSummary.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "hostInstanceType"))
116
124
  BrokerSummary.struct_class = Types::BrokerSummary
117
125
 
118
126
  Configuration.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
127
+ Configuration.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "created"))
119
128
  Configuration.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
120
129
  Configuration.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, location_name: "engineType"))
121
130
  Configuration.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
@@ -128,12 +137,13 @@ module Aws::MQ
128
137
  ConfigurationId.add_member(:revision, Shapes::ShapeRef.new(shape: __integer, location_name: "revision"))
129
138
  ConfigurationId.struct_class = Types::ConfigurationId
130
139
 
140
+ ConfigurationRevision.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "created"))
131
141
  ConfigurationRevision.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
132
142
  ConfigurationRevision.add_member(:revision, Shapes::ShapeRef.new(shape: __integer, location_name: "revision"))
133
143
  ConfigurationRevision.struct_class = Types::ConfigurationRevision
134
144
 
135
145
  Configurations.add_member(:current, Shapes::ShapeRef.new(shape: ConfigurationId, location_name: "current"))
136
- Configurations.add_member(:history, Shapes::ShapeRef.new(shape: ListOfConfigurationId, location_name: "history"))
146
+ Configurations.add_member(:history, Shapes::ShapeRef.new(shape: __listOfConfigurationId, location_name: "history"))
137
147
  Configurations.add_member(:pending, Shapes::ShapeRef.new(shape: ConfigurationId, location_name: "pending"))
138
148
  Configurations.struct_class = Types::Configurations
139
149
 
@@ -145,11 +155,12 @@ module Aws::MQ
145
155
  CreateBrokerInput.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, location_name: "engineType"))
146
156
  CreateBrokerInput.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
147
157
  CreateBrokerInput.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "hostInstanceType"))
158
+ CreateBrokerInput.add_member(:logs, Shapes::ShapeRef.new(shape: Logs, location_name: "logs"))
148
159
  CreateBrokerInput.add_member(:maintenance_window_start_time, Shapes::ShapeRef.new(shape: WeeklyStartTime, location_name: "maintenanceWindowStartTime"))
149
160
  CreateBrokerInput.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: __boolean, location_name: "publiclyAccessible"))
150
- CreateBrokerInput.add_member(:security_groups, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "securityGroups"))
151
- CreateBrokerInput.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "subnetIds"))
152
- CreateBrokerInput.add_member(:users, Shapes::ShapeRef.new(shape: ListOfUser, location_name: "users"))
161
+ CreateBrokerInput.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
162
+ CreateBrokerInput.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "subnetIds"))
163
+ CreateBrokerInput.add_member(:users, Shapes::ShapeRef.new(shape: __listOfUser, location_name: "users"))
153
164
  CreateBrokerInput.struct_class = Types::CreateBrokerInput
154
165
 
155
166
  CreateBrokerOutput.add_member(:broker_arn, Shapes::ShapeRef.new(shape: __string, location_name: "brokerArn"))
@@ -164,11 +175,12 @@ module Aws::MQ
164
175
  CreateBrokerRequest.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, location_name: "engineType"))
165
176
  CreateBrokerRequest.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
166
177
  CreateBrokerRequest.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "hostInstanceType"))
178
+ CreateBrokerRequest.add_member(:logs, Shapes::ShapeRef.new(shape: Logs, location_name: "logs"))
167
179
  CreateBrokerRequest.add_member(:maintenance_window_start_time, Shapes::ShapeRef.new(shape: WeeklyStartTime, location_name: "maintenanceWindowStartTime"))
168
180
  CreateBrokerRequest.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: __boolean, location_name: "publiclyAccessible"))
169
- CreateBrokerRequest.add_member(:security_groups, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "securityGroups"))
170
- CreateBrokerRequest.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "subnetIds"))
171
- CreateBrokerRequest.add_member(:users, Shapes::ShapeRef.new(shape: ListOfUser, location_name: "users"))
181
+ CreateBrokerRequest.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
182
+ CreateBrokerRequest.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "subnetIds"))
183
+ CreateBrokerRequest.add_member(:users, Shapes::ShapeRef.new(shape: __listOfUser, location_name: "users"))
172
184
  CreateBrokerRequest.struct_class = Types::CreateBrokerRequest
173
185
 
174
186
  CreateBrokerResponse.add_member(:broker_arn, Shapes::ShapeRef.new(shape: __string, location_name: "brokerArn"))
@@ -181,6 +193,7 @@ module Aws::MQ
181
193
  CreateConfigurationInput.struct_class = Types::CreateConfigurationInput
182
194
 
183
195
  CreateConfigurationOutput.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
196
+ CreateConfigurationOutput.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "created"))
184
197
  CreateConfigurationOutput.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
185
198
  CreateConfigurationOutput.add_member(:latest_revision, Shapes::ShapeRef.new(shape: ConfigurationRevision, location_name: "latestRevision"))
186
199
  CreateConfigurationOutput.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
@@ -192,19 +205,20 @@ module Aws::MQ
192
205
  CreateConfigurationRequest.struct_class = Types::CreateConfigurationRequest
193
206
 
194
207
  CreateConfigurationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
208
+ CreateConfigurationResponse.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "created"))
195
209
  CreateConfigurationResponse.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
196
210
  CreateConfigurationResponse.add_member(:latest_revision, Shapes::ShapeRef.new(shape: ConfigurationRevision, location_name: "latestRevision"))
197
211
  CreateConfigurationResponse.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
198
212
  CreateConfigurationResponse.struct_class = Types::CreateConfigurationResponse
199
213
 
200
214
  CreateUserInput.add_member(:console_access, Shapes::ShapeRef.new(shape: __boolean, location_name: "consoleAccess"))
201
- CreateUserInput.add_member(:groups, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "groups"))
215
+ CreateUserInput.add_member(:groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "groups"))
202
216
  CreateUserInput.add_member(:password, Shapes::ShapeRef.new(shape: __string, location_name: "password"))
203
217
  CreateUserInput.struct_class = Types::CreateUserInput
204
218
 
205
219
  CreateUserRequest.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "broker-id"))
206
220
  CreateUserRequest.add_member(:console_access, Shapes::ShapeRef.new(shape: __boolean, location_name: "consoleAccess"))
207
- CreateUserRequest.add_member(:groups, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "groups"))
221
+ CreateUserRequest.add_member(:groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "groups"))
208
222
  CreateUserRequest.add_member(:password, Shapes::ShapeRef.new(shape: __string, location_name: "password"))
209
223
  CreateUserRequest.add_member(:username, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "username"))
210
224
  CreateUserRequest.struct_class = Types::CreateUserRequest
@@ -229,19 +243,21 @@ module Aws::MQ
229
243
  DescribeBrokerOutput.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: __boolean, location_name: "autoMinorVersionUpgrade"))
230
244
  DescribeBrokerOutput.add_member(:broker_arn, Shapes::ShapeRef.new(shape: __string, location_name: "brokerArn"))
231
245
  DescribeBrokerOutput.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, location_name: "brokerId"))
232
- DescribeBrokerOutput.add_member(:broker_instances, Shapes::ShapeRef.new(shape: ListOfBrokerInstance, location_name: "brokerInstances"))
246
+ DescribeBrokerOutput.add_member(:broker_instances, Shapes::ShapeRef.new(shape: __listOfBrokerInstance, location_name: "brokerInstances"))
233
247
  DescribeBrokerOutput.add_member(:broker_name, Shapes::ShapeRef.new(shape: __string, location_name: "brokerName"))
234
248
  DescribeBrokerOutput.add_member(:broker_state, Shapes::ShapeRef.new(shape: BrokerState, location_name: "brokerState"))
235
249
  DescribeBrokerOutput.add_member(:configurations, Shapes::ShapeRef.new(shape: Configurations, location_name: "configurations"))
250
+ DescribeBrokerOutput.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "created"))
236
251
  DescribeBrokerOutput.add_member(:deployment_mode, Shapes::ShapeRef.new(shape: DeploymentMode, location_name: "deploymentMode"))
237
252
  DescribeBrokerOutput.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, location_name: "engineType"))
238
253
  DescribeBrokerOutput.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
239
254
  DescribeBrokerOutput.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "hostInstanceType"))
255
+ DescribeBrokerOutput.add_member(:logs, Shapes::ShapeRef.new(shape: LogsSummary, location_name: "logs"))
240
256
  DescribeBrokerOutput.add_member(:maintenance_window_start_time, Shapes::ShapeRef.new(shape: WeeklyStartTime, location_name: "maintenanceWindowStartTime"))
241
257
  DescribeBrokerOutput.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: __boolean, location_name: "publiclyAccessible"))
242
- DescribeBrokerOutput.add_member(:security_groups, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "securityGroups"))
243
- DescribeBrokerOutput.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "subnetIds"))
244
- DescribeBrokerOutput.add_member(:users, Shapes::ShapeRef.new(shape: ListOfUserSummary, location_name: "users"))
258
+ DescribeBrokerOutput.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
259
+ DescribeBrokerOutput.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "subnetIds"))
260
+ DescribeBrokerOutput.add_member(:users, Shapes::ShapeRef.new(shape: __listOfUserSummary, location_name: "users"))
245
261
  DescribeBrokerOutput.struct_class = Types::DescribeBrokerOutput
246
262
 
247
263
  DescribeBrokerRequest.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "broker-id"))
@@ -250,25 +266,28 @@ module Aws::MQ
250
266
  DescribeBrokerResponse.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: __boolean, location_name: "autoMinorVersionUpgrade"))
251
267
  DescribeBrokerResponse.add_member(:broker_arn, Shapes::ShapeRef.new(shape: __string, location_name: "brokerArn"))
252
268
  DescribeBrokerResponse.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, location_name: "brokerId"))
253
- DescribeBrokerResponse.add_member(:broker_instances, Shapes::ShapeRef.new(shape: ListOfBrokerInstance, location_name: "brokerInstances"))
269
+ DescribeBrokerResponse.add_member(:broker_instances, Shapes::ShapeRef.new(shape: __listOfBrokerInstance, location_name: "brokerInstances"))
254
270
  DescribeBrokerResponse.add_member(:broker_name, Shapes::ShapeRef.new(shape: __string, location_name: "brokerName"))
255
271
  DescribeBrokerResponse.add_member(:broker_state, Shapes::ShapeRef.new(shape: BrokerState, location_name: "brokerState"))
256
272
  DescribeBrokerResponse.add_member(:configurations, Shapes::ShapeRef.new(shape: Configurations, location_name: "configurations"))
273
+ DescribeBrokerResponse.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "created"))
257
274
  DescribeBrokerResponse.add_member(:deployment_mode, Shapes::ShapeRef.new(shape: DeploymentMode, location_name: "deploymentMode"))
258
275
  DescribeBrokerResponse.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, location_name: "engineType"))
259
276
  DescribeBrokerResponse.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
260
277
  DescribeBrokerResponse.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "hostInstanceType"))
278
+ DescribeBrokerResponse.add_member(:logs, Shapes::ShapeRef.new(shape: LogsSummary, location_name: "logs"))
261
279
  DescribeBrokerResponse.add_member(:maintenance_window_start_time, Shapes::ShapeRef.new(shape: WeeklyStartTime, location_name: "maintenanceWindowStartTime"))
262
280
  DescribeBrokerResponse.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: __boolean, location_name: "publiclyAccessible"))
263
- DescribeBrokerResponse.add_member(:security_groups, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "securityGroups"))
264
- DescribeBrokerResponse.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "subnetIds"))
265
- DescribeBrokerResponse.add_member(:users, Shapes::ShapeRef.new(shape: ListOfUserSummary, location_name: "users"))
281
+ DescribeBrokerResponse.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
282
+ DescribeBrokerResponse.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "subnetIds"))
283
+ DescribeBrokerResponse.add_member(:users, Shapes::ShapeRef.new(shape: __listOfUserSummary, location_name: "users"))
266
284
  DescribeBrokerResponse.struct_class = Types::DescribeBrokerResponse
267
285
 
268
286
  DescribeConfigurationRequest.add_member(:configuration_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "configuration-id"))
269
287
  DescribeConfigurationRequest.struct_class = Types::DescribeConfigurationRequest
270
288
 
271
289
  DescribeConfigurationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
290
+ DescribeConfigurationResponse.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "created"))
272
291
  DescribeConfigurationResponse.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
273
292
  DescribeConfigurationResponse.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, location_name: "engineType"))
274
293
  DescribeConfigurationResponse.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
@@ -278,6 +297,7 @@ module Aws::MQ
278
297
  DescribeConfigurationResponse.struct_class = Types::DescribeConfigurationResponse
279
298
 
280
299
  DescribeConfigurationRevisionOutput.add_member(:configuration_id, Shapes::ShapeRef.new(shape: __string, location_name: "configurationId"))
300
+ DescribeConfigurationRevisionOutput.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "created"))
281
301
  DescribeConfigurationRevisionOutput.add_member(:data, Shapes::ShapeRef.new(shape: __string, location_name: "data"))
282
302
  DescribeConfigurationRevisionOutput.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
283
303
  DescribeConfigurationRevisionOutput.struct_class = Types::DescribeConfigurationRevisionOutput
@@ -287,13 +307,14 @@ module Aws::MQ
287
307
  DescribeConfigurationRevisionRequest.struct_class = Types::DescribeConfigurationRevisionRequest
288
308
 
289
309
  DescribeConfigurationRevisionResponse.add_member(:configuration_id, Shapes::ShapeRef.new(shape: __string, location_name: "configurationId"))
310
+ DescribeConfigurationRevisionResponse.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "created"))
290
311
  DescribeConfigurationRevisionResponse.add_member(:data, Shapes::ShapeRef.new(shape: __string, location_name: "data"))
291
312
  DescribeConfigurationRevisionResponse.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
292
313
  DescribeConfigurationRevisionResponse.struct_class = Types::DescribeConfigurationRevisionResponse
293
314
 
294
315
  DescribeUserOutput.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, location_name: "brokerId"))
295
316
  DescribeUserOutput.add_member(:console_access, Shapes::ShapeRef.new(shape: __boolean, location_name: "consoleAccess"))
296
- DescribeUserOutput.add_member(:groups, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "groups"))
317
+ DescribeUserOutput.add_member(:groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "groups"))
297
318
  DescribeUserOutput.add_member(:pending, Shapes::ShapeRef.new(shape: UserPendingChanges, location_name: "pending"))
298
319
  DescribeUserOutput.add_member(:username, Shapes::ShapeRef.new(shape: __string, location_name: "username"))
299
320
  DescribeUserOutput.struct_class = Types::DescribeUserOutput
@@ -304,7 +325,7 @@ module Aws::MQ
304
325
 
305
326
  DescribeUserResponse.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, location_name: "brokerId"))
306
327
  DescribeUserResponse.add_member(:console_access, Shapes::ShapeRef.new(shape: __boolean, location_name: "consoleAccess"))
307
- DescribeUserResponse.add_member(:groups, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "groups"))
328
+ DescribeUserResponse.add_member(:groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "groups"))
308
329
  DescribeUserResponse.add_member(:pending, Shapes::ShapeRef.new(shape: UserPendingChanges, location_name: "pending"))
309
330
  DescribeUserResponse.add_member(:username, Shapes::ShapeRef.new(shape: __string, location_name: "username"))
310
331
  DescribeUserResponse.struct_class = Types::DescribeUserResponse
@@ -313,7 +334,7 @@ module Aws::MQ
313
334
  Error.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
314
335
  Error.struct_class = Types::Error
315
336
 
316
- ListBrokersOutput.add_member(:broker_summaries, Shapes::ShapeRef.new(shape: ListOfBrokerSummary, location_name: "brokerSummaries"))
337
+ ListBrokersOutput.add_member(:broker_summaries, Shapes::ShapeRef.new(shape: __listOfBrokerSummary, location_name: "brokerSummaries"))
317
338
  ListBrokersOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
318
339
  ListBrokersOutput.struct_class = Types::ListBrokersOutput
319
340
 
@@ -321,14 +342,14 @@ module Aws::MQ
321
342
  ListBrokersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "nextToken"))
322
343
  ListBrokersRequest.struct_class = Types::ListBrokersRequest
323
344
 
324
- ListBrokersResponse.add_member(:broker_summaries, Shapes::ShapeRef.new(shape: ListOfBrokerSummary, location_name: "brokerSummaries"))
345
+ ListBrokersResponse.add_member(:broker_summaries, Shapes::ShapeRef.new(shape: __listOfBrokerSummary, location_name: "brokerSummaries"))
325
346
  ListBrokersResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
326
347
  ListBrokersResponse.struct_class = Types::ListBrokersResponse
327
348
 
328
349
  ListConfigurationRevisionsOutput.add_member(:configuration_id, Shapes::ShapeRef.new(shape: __string, location_name: "configurationId"))
329
350
  ListConfigurationRevisionsOutput.add_member(:max_results, Shapes::ShapeRef.new(shape: __integer, location_name: "maxResults"))
330
351
  ListConfigurationRevisionsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
331
- ListConfigurationRevisionsOutput.add_member(:revisions, Shapes::ShapeRef.new(shape: ListOfConfigurationRevision, location_name: "revisions"))
352
+ ListConfigurationRevisionsOutput.add_member(:revisions, Shapes::ShapeRef.new(shape: __listOfConfigurationRevision, location_name: "revisions"))
332
353
  ListConfigurationRevisionsOutput.struct_class = Types::ListConfigurationRevisionsOutput
333
354
 
334
355
  ListConfigurationRevisionsRequest.add_member(:configuration_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "configuration-id"))
@@ -339,10 +360,10 @@ module Aws::MQ
339
360
  ListConfigurationRevisionsResponse.add_member(:configuration_id, Shapes::ShapeRef.new(shape: __string, location_name: "configurationId"))
340
361
  ListConfigurationRevisionsResponse.add_member(:max_results, Shapes::ShapeRef.new(shape: __integer, location_name: "maxResults"))
341
362
  ListConfigurationRevisionsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
342
- ListConfigurationRevisionsResponse.add_member(:revisions, Shapes::ShapeRef.new(shape: ListOfConfigurationRevision, location_name: "revisions"))
363
+ ListConfigurationRevisionsResponse.add_member(:revisions, Shapes::ShapeRef.new(shape: __listOfConfigurationRevision, location_name: "revisions"))
343
364
  ListConfigurationRevisionsResponse.struct_class = Types::ListConfigurationRevisionsResponse
344
365
 
345
- ListConfigurationsOutput.add_member(:configurations, Shapes::ShapeRef.new(shape: ListOfConfiguration, location_name: "configurations"))
366
+ ListConfigurationsOutput.add_member(:configurations, Shapes::ShapeRef.new(shape: __listOfConfiguration, location_name: "configurations"))
346
367
  ListConfigurationsOutput.add_member(:max_results, Shapes::ShapeRef.new(shape: __integer, location_name: "maxResults"))
347
368
  ListConfigurationsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
348
369
  ListConfigurationsOutput.struct_class = Types::ListConfigurationsOutput
@@ -351,33 +372,15 @@ module Aws::MQ
351
372
  ListConfigurationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "nextToken"))
352
373
  ListConfigurationsRequest.struct_class = Types::ListConfigurationsRequest
353
374
 
354
- ListConfigurationsResponse.add_member(:configurations, Shapes::ShapeRef.new(shape: ListOfConfiguration, location_name: "configurations"))
375
+ ListConfigurationsResponse.add_member(:configurations, Shapes::ShapeRef.new(shape: __listOfConfiguration, location_name: "configurations"))
355
376
  ListConfigurationsResponse.add_member(:max_results, Shapes::ShapeRef.new(shape: __integer, location_name: "maxResults"))
356
377
  ListConfigurationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
357
378
  ListConfigurationsResponse.struct_class = Types::ListConfigurationsResponse
358
379
 
359
- ListOfBrokerInstance.member = Shapes::ShapeRef.new(shape: BrokerInstance)
360
-
361
- ListOfBrokerSummary.member = Shapes::ShapeRef.new(shape: BrokerSummary)
362
-
363
- ListOfConfiguration.member = Shapes::ShapeRef.new(shape: Configuration)
364
-
365
- ListOfConfigurationId.member = Shapes::ShapeRef.new(shape: ConfigurationId)
366
-
367
- ListOfConfigurationRevision.member = Shapes::ShapeRef.new(shape: ConfigurationRevision)
368
-
369
- ListOfSanitizationWarning.member = Shapes::ShapeRef.new(shape: SanitizationWarning)
370
-
371
- ListOfUser.member = Shapes::ShapeRef.new(shape: User)
372
-
373
- ListOfUserSummary.member = Shapes::ShapeRef.new(shape: UserSummary)
374
-
375
- ListOf__string.member = Shapes::ShapeRef.new(shape: __string)
376
-
377
380
  ListUsersOutput.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, location_name: "brokerId"))
378
- ListUsersOutput.add_member(:max_results, Shapes::ShapeRef.new(shape: __integer, location_name: "maxResults"))
381
+ ListUsersOutput.add_member(:max_results, Shapes::ShapeRef.new(shape: __integerMin5Max100, location_name: "maxResults"))
379
382
  ListUsersOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
380
- ListUsersOutput.add_member(:users, Shapes::ShapeRef.new(shape: ListOfUserSummary, location_name: "users"))
383
+ ListUsersOutput.add_member(:users, Shapes::ShapeRef.new(shape: __listOfUserSummary, location_name: "users"))
381
384
  ListUsersOutput.struct_class = Types::ListUsersOutput
382
385
 
383
386
  ListUsersRequest.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "broker-id"))
@@ -386,11 +389,26 @@ module Aws::MQ
386
389
  ListUsersRequest.struct_class = Types::ListUsersRequest
387
390
 
388
391
  ListUsersResponse.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, location_name: "brokerId"))
389
- ListUsersResponse.add_member(:max_results, Shapes::ShapeRef.new(shape: __integer, location_name: "maxResults"))
392
+ ListUsersResponse.add_member(:max_results, Shapes::ShapeRef.new(shape: __integerMin5Max100, location_name: "maxResults"))
390
393
  ListUsersResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
391
- ListUsersResponse.add_member(:users, Shapes::ShapeRef.new(shape: ListOfUserSummary, location_name: "users"))
394
+ ListUsersResponse.add_member(:users, Shapes::ShapeRef.new(shape: __listOfUserSummary, location_name: "users"))
392
395
  ListUsersResponse.struct_class = Types::ListUsersResponse
393
396
 
397
+ Logs.add_member(:audit, Shapes::ShapeRef.new(shape: __boolean, location_name: "audit"))
398
+ Logs.add_member(:general, Shapes::ShapeRef.new(shape: __boolean, location_name: "general"))
399
+ Logs.struct_class = Types::Logs
400
+
401
+ LogsSummary.add_member(:audit, Shapes::ShapeRef.new(shape: __boolean, location_name: "audit"))
402
+ LogsSummary.add_member(:audit_log_group, Shapes::ShapeRef.new(shape: __string, location_name: "auditLogGroup"))
403
+ LogsSummary.add_member(:general, Shapes::ShapeRef.new(shape: __boolean, location_name: "general"))
404
+ LogsSummary.add_member(:general_log_group, Shapes::ShapeRef.new(shape: __string, location_name: "generalLogGroup"))
405
+ LogsSummary.add_member(:pending, Shapes::ShapeRef.new(shape: PendingLogs, location_name: "pending"))
406
+ LogsSummary.struct_class = Types::LogsSummary
407
+
408
+ PendingLogs.add_member(:audit, Shapes::ShapeRef.new(shape: __boolean, location_name: "audit"))
409
+ PendingLogs.add_member(:general, Shapes::ShapeRef.new(shape: __boolean, location_name: "general"))
410
+ PendingLogs.struct_class = Types::PendingLogs
411
+
394
412
  RebootBrokerRequest.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "broker-id"))
395
413
  RebootBrokerRequest.struct_class = Types::RebootBrokerRequest
396
414
 
@@ -402,18 +420,22 @@ module Aws::MQ
402
420
  SanitizationWarning.struct_class = Types::SanitizationWarning
403
421
 
404
422
  UpdateBrokerInput.add_member(:configuration, Shapes::ShapeRef.new(shape: ConfigurationId, location_name: "configuration"))
423
+ UpdateBrokerInput.add_member(:logs, Shapes::ShapeRef.new(shape: Logs, location_name: "logs"))
405
424
  UpdateBrokerInput.struct_class = Types::UpdateBrokerInput
406
425
 
407
426
  UpdateBrokerOutput.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, location_name: "brokerId"))
408
427
  UpdateBrokerOutput.add_member(:configuration, Shapes::ShapeRef.new(shape: ConfigurationId, location_name: "configuration"))
428
+ UpdateBrokerOutput.add_member(:logs, Shapes::ShapeRef.new(shape: Logs, location_name: "logs"))
409
429
  UpdateBrokerOutput.struct_class = Types::UpdateBrokerOutput
410
430
 
411
431
  UpdateBrokerRequest.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "broker-id"))
412
432
  UpdateBrokerRequest.add_member(:configuration, Shapes::ShapeRef.new(shape: ConfigurationId, location_name: "configuration"))
433
+ UpdateBrokerRequest.add_member(:logs, Shapes::ShapeRef.new(shape: Logs, location_name: "logs"))
413
434
  UpdateBrokerRequest.struct_class = Types::UpdateBrokerRequest
414
435
 
415
436
  UpdateBrokerResponse.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, location_name: "brokerId"))
416
437
  UpdateBrokerResponse.add_member(:configuration, Shapes::ShapeRef.new(shape: ConfigurationId, location_name: "configuration"))
438
+ UpdateBrokerResponse.add_member(:logs, Shapes::ShapeRef.new(shape: Logs, location_name: "logs"))
417
439
  UpdateBrokerResponse.struct_class = Types::UpdateBrokerResponse
418
440
 
419
441
  UpdateConfigurationInput.add_member(:data, Shapes::ShapeRef.new(shape: __string, location_name: "data"))
@@ -421,10 +443,11 @@ module Aws::MQ
421
443
  UpdateConfigurationInput.struct_class = Types::UpdateConfigurationInput
422
444
 
423
445
  UpdateConfigurationOutput.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
446
+ UpdateConfigurationOutput.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "created"))
424
447
  UpdateConfigurationOutput.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
425
448
  UpdateConfigurationOutput.add_member(:latest_revision, Shapes::ShapeRef.new(shape: ConfigurationRevision, location_name: "latestRevision"))
426
449
  UpdateConfigurationOutput.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
427
- UpdateConfigurationOutput.add_member(:warnings, Shapes::ShapeRef.new(shape: ListOfSanitizationWarning, location_name: "warnings"))
450
+ UpdateConfigurationOutput.add_member(:warnings, Shapes::ShapeRef.new(shape: __listOfSanitizationWarning, location_name: "warnings"))
428
451
  UpdateConfigurationOutput.struct_class = Types::UpdateConfigurationOutput
429
452
 
430
453
  UpdateConfigurationRequest.add_member(:configuration_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "configuration-id"))
@@ -433,20 +456,21 @@ module Aws::MQ
433
456
  UpdateConfigurationRequest.struct_class = Types::UpdateConfigurationRequest
434
457
 
435
458
  UpdateConfigurationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
459
+ UpdateConfigurationResponse.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "created"))
436
460
  UpdateConfigurationResponse.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
437
461
  UpdateConfigurationResponse.add_member(:latest_revision, Shapes::ShapeRef.new(shape: ConfigurationRevision, location_name: "latestRevision"))
438
462
  UpdateConfigurationResponse.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
439
- UpdateConfigurationResponse.add_member(:warnings, Shapes::ShapeRef.new(shape: ListOfSanitizationWarning, location_name: "warnings"))
463
+ UpdateConfigurationResponse.add_member(:warnings, Shapes::ShapeRef.new(shape: __listOfSanitizationWarning, location_name: "warnings"))
440
464
  UpdateConfigurationResponse.struct_class = Types::UpdateConfigurationResponse
441
465
 
442
466
  UpdateUserInput.add_member(:console_access, Shapes::ShapeRef.new(shape: __boolean, location_name: "consoleAccess"))
443
- UpdateUserInput.add_member(:groups, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "groups"))
467
+ UpdateUserInput.add_member(:groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "groups"))
444
468
  UpdateUserInput.add_member(:password, Shapes::ShapeRef.new(shape: __string, location_name: "password"))
445
469
  UpdateUserInput.struct_class = Types::UpdateUserInput
446
470
 
447
471
  UpdateUserRequest.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "broker-id"))
448
472
  UpdateUserRequest.add_member(:console_access, Shapes::ShapeRef.new(shape: __boolean, location_name: "consoleAccess"))
449
- UpdateUserRequest.add_member(:groups, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "groups"))
473
+ UpdateUserRequest.add_member(:groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "groups"))
450
474
  UpdateUserRequest.add_member(:password, Shapes::ShapeRef.new(shape: __string, location_name: "password"))
451
475
  UpdateUserRequest.add_member(:username, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "username"))
452
476
  UpdateUserRequest.struct_class = Types::UpdateUserRequest
@@ -454,13 +478,13 @@ module Aws::MQ
454
478
  UpdateUserResponse.struct_class = Types::UpdateUserResponse
455
479
 
456
480
  User.add_member(:console_access, Shapes::ShapeRef.new(shape: __boolean, location_name: "consoleAccess"))
457
- User.add_member(:groups, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "groups"))
481
+ User.add_member(:groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "groups"))
458
482
  User.add_member(:password, Shapes::ShapeRef.new(shape: __string, location_name: "password"))
459
483
  User.add_member(:username, Shapes::ShapeRef.new(shape: __string, location_name: "username"))
460
484
  User.struct_class = Types::User
461
485
 
462
486
  UserPendingChanges.add_member(:console_access, Shapes::ShapeRef.new(shape: __boolean, location_name: "consoleAccess"))
463
- UserPendingChanges.add_member(:groups, Shapes::ShapeRef.new(shape: ListOf__string, location_name: "groups"))
487
+ UserPendingChanges.add_member(:groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "groups"))
464
488
  UserPendingChanges.add_member(:pending_change, Shapes::ShapeRef.new(shape: ChangeType, location_name: "pendingChange"))
465
489
  UserPendingChanges.struct_class = Types::UserPendingChanges
466
490
 
@@ -473,6 +497,24 @@ module Aws::MQ
473
497
  WeeklyStartTime.add_member(:time_zone, Shapes::ShapeRef.new(shape: __string, location_name: "timeZone"))
474
498
  WeeklyStartTime.struct_class = Types::WeeklyStartTime
475
499
 
500
+ __listOfBrokerInstance.member = Shapes::ShapeRef.new(shape: BrokerInstance)
501
+
502
+ __listOfBrokerSummary.member = Shapes::ShapeRef.new(shape: BrokerSummary)
503
+
504
+ __listOfConfiguration.member = Shapes::ShapeRef.new(shape: Configuration)
505
+
506
+ __listOfConfigurationId.member = Shapes::ShapeRef.new(shape: ConfigurationId)
507
+
508
+ __listOfConfigurationRevision.member = Shapes::ShapeRef.new(shape: ConfigurationRevision)
509
+
510
+ __listOfSanitizationWarning.member = Shapes::ShapeRef.new(shape: SanitizationWarning)
511
+
512
+ __listOfUser.member = Shapes::ShapeRef.new(shape: User)
513
+
514
+ __listOfUserSummary.member = Shapes::ShapeRef.new(shape: UserSummary)
515
+
516
+ __listOf__string.member = Shapes::ShapeRef.new(shape: __string)
517
+
476
518
 
477
519
  # @api private
478
520
  API = Seahorse::Model::Api.new.tap do |api|
@@ -495,8 +537,8 @@ module Aws::MQ
495
537
  o.input = Shapes::ShapeRef.new(shape: CreateBrokerRequest)
496
538
  o.output = Shapes::ShapeRef.new(shape: CreateBrokerResponse)
497
539
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
498
- o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
499
540
  o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
541
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
500
542
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
501
543
  o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
502
544
  end)