aws-sdk-mq 1.85.0 → 1.86.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 998adf78c3482c34265546a080a9bcee04431704405490fcfa78f6da7b8e1bbd
4
- data.tar.gz: be9d3777eead9ba676b8895ae829e50dc2580d12b7187464fd980040fc15b8a7
3
+ metadata.gz: aaea02e39dcd6721e97583cdea5baacfb3e89c023dc9d38e27ce86e702d3b5c9
4
+ data.tar.gz: fe2d70c739f6ddf502f64d14dfe14f2a4f75907440fe6cfe735e3a94d2ef8707
5
5
  SHA512:
6
- metadata.gz: 628a6dbec8051d46ef3133a5704c0e896099f893404a9ea4ecde77a7ad859c1273d22c6956a5d2cb629c3bd975fef3a88587fe3c01d6570ff9d07c2defc4a1fc
7
- data.tar.gz: 014b1ad8b1b9e058c8f07f5c5c5ac58969741218c2f30dce4fb3eb9ee7ccf80ce89a514cfc7e5e841b3627cd21a587ee193e6b5dec07d28333f4443176f37872
6
+ metadata.gz: f3d79859d74d7de4395f166ad4e11050c5998c5a093c96cf9147b74a378c6c7141bb6d5b11891a038118fc8ee67e771f12e31db3f69cca2ca3a8a12183526d5b
7
+ data.tar.gz: e43b64e2de2f431bb1d28e3abc83fa1682daa370c2d76202cb52887d307efa7db38cfd4eb0cc89e4d83ae04bf028c303f09d982396a153b30cdd5cb1dcb10084
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.86.0 (2025-09-03)
5
+ ------------------
6
+
7
+ * Feature - Add CONFIG_MANAGED as a supported AuthenticationStrategy for Amazon MQ for RabbitMQ brokers. Make username and password optional on broker creation for CONFIG_MANAGED brokers.
8
+
4
9
  1.85.0 (2025-08-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.85.0
1
+ 1.86.0
@@ -575,7 +575,7 @@ module Aws::MQ
575
575
  #
576
576
  # @option params [Hash<String,String>] :tags
577
577
  #
578
- # @option params [required, Array<Types::User>] :users
578
+ # @option params [Array<Types::User>] :users
579
579
  #
580
580
  # @option params [String] :data_replication_mode
581
581
  # Specifies whether a broker is a part of a data replication pair.
@@ -590,7 +590,7 @@ module Aws::MQ
590
590
  # @example Request syntax with placeholder values
591
591
  #
592
592
  # resp = client.create_broker({
593
- # authentication_strategy: "SIMPLE", # accepts SIMPLE, LDAP
593
+ # authentication_strategy: "SIMPLE", # accepts SIMPLE, LDAP, CONFIG_MANAGED
594
594
  # auto_minor_version_upgrade: false,
595
595
  # broker_name: "__string", # required
596
596
  # configuration: {
@@ -635,7 +635,7 @@ module Aws::MQ
635
635
  # tags: {
636
636
  # "__string" => "__string",
637
637
  # },
638
- # users: [ # required
638
+ # users: [
639
639
  # {
640
640
  # console_access: false,
641
641
  # groups: ["__string"],
@@ -691,7 +691,7 @@ module Aws::MQ
691
691
  # @example Request syntax with placeholder values
692
692
  #
693
693
  # resp = client.create_configuration({
694
- # authentication_strategy: "SIMPLE", # accepts SIMPLE, LDAP
694
+ # authentication_strategy: "SIMPLE", # accepts SIMPLE, LDAP, CONFIG_MANAGED
695
695
  # engine_type: "ACTIVEMQ", # required, accepts ACTIVEMQ, RABBITMQ
696
696
  # engine_version: "__string",
697
697
  # name: "__string", # required
@@ -703,7 +703,7 @@ module Aws::MQ
703
703
  # @example Response structure
704
704
  #
705
705
  # resp.arn #=> String
706
- # resp.authentication_strategy #=> String, one of "SIMPLE", "LDAP"
706
+ # resp.authentication_strategy #=> String, one of "SIMPLE", "LDAP", "CONFIG_MANAGED"
707
707
  # resp.created #=> Time
708
708
  # resp.id #=> String
709
709
  # resp.latest_revision.created #=> Time
@@ -941,7 +941,7 @@ module Aws::MQ
941
941
  # resp.actions_required #=> Array
942
942
  # resp.actions_required[0].action_required_code #=> String
943
943
  # resp.actions_required[0].action_required_info #=> String
944
- # resp.authentication_strategy #=> String, one of "SIMPLE", "LDAP"
944
+ # resp.authentication_strategy #=> String, one of "SIMPLE", "LDAP", "CONFIG_MANAGED"
945
945
  # resp.auto_minor_version_upgrade #=> Boolean
946
946
  # resp.broker_arn #=> String
947
947
  # resp.broker_id #=> String
@@ -986,7 +986,7 @@ module Aws::MQ
986
986
  # resp.maintenance_window_start_time.day_of_week #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
987
987
  # resp.maintenance_window_start_time.time_of_day #=> String
988
988
  # resp.maintenance_window_start_time.time_zone #=> String
989
- # resp.pending_authentication_strategy #=> String, one of "SIMPLE", "LDAP"
989
+ # resp.pending_authentication_strategy #=> String, one of "SIMPLE", "LDAP", "CONFIG_MANAGED"
990
990
  # resp.pending_engine_version #=> String
991
991
  # resp.pending_host_instance_type #=> String
992
992
  # resp.pending_ldap_server_metadata.hosts #=> Array
@@ -1149,7 +1149,7 @@ module Aws::MQ
1149
1149
  # @example Response structure
1150
1150
  #
1151
1151
  # resp.arn #=> String
1152
- # resp.authentication_strategy #=> String, one of "SIMPLE", "LDAP"
1152
+ # resp.authentication_strategy #=> String, one of "SIMPLE", "LDAP", "CONFIG_MANAGED"
1153
1153
  # resp.created #=> Time
1154
1154
  # resp.description #=> String
1155
1155
  # resp.engine_type #=> String, one of "ACTIVEMQ", "RABBITMQ"
@@ -1359,7 +1359,7 @@ module Aws::MQ
1359
1359
  #
1360
1360
  # resp.configurations #=> Array
1361
1361
  # resp.configurations[0].arn #=> String
1362
- # resp.configurations[0].authentication_strategy #=> String, one of "SIMPLE", "LDAP"
1362
+ # resp.configurations[0].authentication_strategy #=> String, one of "SIMPLE", "LDAP", "CONFIG_MANAGED"
1363
1363
  # resp.configurations[0].created #=> Time
1364
1364
  # resp.configurations[0].description #=> String
1365
1365
  # resp.configurations[0].engine_type #=> String, one of "ACTIVEMQ", "RABBITMQ"
@@ -1560,7 +1560,7 @@ module Aws::MQ
1560
1560
  # @example Request syntax with placeholder values
1561
1561
  #
1562
1562
  # resp = client.update_broker({
1563
- # authentication_strategy: "SIMPLE", # accepts SIMPLE, LDAP
1563
+ # authentication_strategy: "SIMPLE", # accepts SIMPLE, LDAP, CONFIG_MANAGED
1564
1564
  # auto_minor_version_upgrade: false,
1565
1565
  # broker_id: "__string", # required
1566
1566
  # configuration: {
@@ -1597,7 +1597,7 @@ module Aws::MQ
1597
1597
  #
1598
1598
  # @example Response structure
1599
1599
  #
1600
- # resp.authentication_strategy #=> String, one of "SIMPLE", "LDAP"
1600
+ # resp.authentication_strategy #=> String, one of "SIMPLE", "LDAP", "CONFIG_MANAGED"
1601
1601
  # resp.auto_minor_version_upgrade #=> Boolean
1602
1602
  # resp.broker_id #=> String
1603
1603
  # resp.configuration.id #=> String
@@ -1742,7 +1742,7 @@ module Aws::MQ
1742
1742
  tracer: tracer
1743
1743
  )
1744
1744
  context[:gem_name] = 'aws-sdk-mq'
1745
- context[:gem_version] = '1.85.0'
1745
+ context[:gem_version] = '1.86.0'
1746
1746
  Seahorse::Client::Request.new(handlers, context)
1747
1747
  end
1748
1748
 
@@ -249,7 +249,7 @@ module Aws::MQ
249
249
  CreateBrokerInput.add_member(:storage_type, Shapes::ShapeRef.new(shape: BrokerStorageType, location_name: "storageType"))
250
250
  CreateBrokerInput.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "subnetIds"))
251
251
  CreateBrokerInput.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
252
- CreateBrokerInput.add_member(:users, Shapes::ShapeRef.new(shape: __listOfUser, required: true, location_name: "users"))
252
+ CreateBrokerInput.add_member(:users, Shapes::ShapeRef.new(shape: __listOfUser, location_name: "users"))
253
253
  CreateBrokerInput.struct_class = Types::CreateBrokerInput
254
254
 
255
255
  CreateBrokerOutput.add_member(:broker_arn, Shapes::ShapeRef.new(shape: __string, location_name: "brokerArn"))
@@ -274,7 +274,7 @@ module Aws::MQ
274
274
  CreateBrokerRequest.add_member(:storage_type, Shapes::ShapeRef.new(shape: BrokerStorageType, location_name: "storageType"))
275
275
  CreateBrokerRequest.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "subnetIds"))
276
276
  CreateBrokerRequest.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
277
- CreateBrokerRequest.add_member(:users, Shapes::ShapeRef.new(shape: __listOfUser, required: true, location_name: "users"))
277
+ CreateBrokerRequest.add_member(:users, Shapes::ShapeRef.new(shape: __listOfUser, location_name: "users"))
278
278
  CreateBrokerRequest.add_member(:data_replication_mode, Shapes::ShapeRef.new(shape: DataReplicationMode, location_name: "dataReplicationMode"))
279
279
  CreateBrokerRequest.add_member(:data_replication_primary_broker_arn, Shapes::ShapeRef.new(shape: __string, location_name: "dataReplicationPrimaryBrokerArn"))
280
280
  CreateBrokerRequest.struct_class = Types::CreateBrokerRequest
@@ -556,11 +556,13 @@ module Aws::MQ
556
556
  #
557
557
  # @!attribute [rw] users
558
558
  # The list of broker users (persons or applications) who can access
559
- # queues and topics. For Amazon MQ for RabbitMQ brokers, one and only
560
- # one administrative user is accepted and created when a broker is
561
- # first provisioned. All subsequent broker users are created by making
562
- # RabbitMQ API calls directly to brokers or via the RabbitMQ web
563
- # console.
559
+ # queues and topics. For Amazon MQ for RabbitMQ brokers, an
560
+ # administrative user is required if using simple authentication and
561
+ # authorization. For brokers using OAuth2, this user is optional. When
562
+ # provided, one and only one administrative user is accepted and
563
+ # created when a broker is first provisioned. All subsequent broker
564
+ # users are created by making RabbitMQ API calls directly to brokers
565
+ # or via the RabbitMQ web console.
564
566
  # @return [Array<Types::User>]
565
567
  #
566
568
  # @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/CreateBrokerInput AWS API Documentation
data/lib/aws-sdk-mq.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::MQ
54
54
  autoload :EndpointProvider, 'aws-sdk-mq/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-mq/endpoints'
56
56
 
57
- GEM_VERSION = '1.85.0'
57
+ GEM_VERSION = '1.86.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -85,7 +85,7 @@ module Aws
85
85
  end
86
86
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MQ/Client.html#create_broker-instance_method
87
87
  def create_broker: (
88
- ?authentication_strategy: ("SIMPLE" | "LDAP"),
88
+ ?authentication_strategy: ("SIMPLE" | "LDAP" | "CONFIG_MANAGED"),
89
89
  ?auto_minor_version_upgrade: bool,
90
90
  broker_name: ::String,
91
91
  ?configuration: {
@@ -128,7 +128,7 @@ module Aws
128
128
  ?storage_type: ("EBS" | "EFS"),
129
129
  ?subnet_ids: Array[::String],
130
130
  ?tags: Hash[::String, ::String],
131
- users: Array[
131
+ ?users: Array[
132
132
  {
133
133
  console_access: bool?,
134
134
  groups: Array[::String]?,
@@ -145,7 +145,7 @@ module Aws
145
145
  interface _CreateConfigurationResponseSuccess
146
146
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateConfigurationResponse]
147
147
  def arn: () -> ::String
148
- def authentication_strategy: () -> ("SIMPLE" | "LDAP")
148
+ def authentication_strategy: () -> ("SIMPLE" | "LDAP" | "CONFIG_MANAGED")
149
149
  def created: () -> ::Time
150
150
  def id: () -> ::String
151
151
  def latest_revision: () -> Types::ConfigurationRevision
@@ -153,7 +153,7 @@ module Aws
153
153
  end
154
154
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MQ/Client.html#create_configuration-instance_method
155
155
  def create_configuration: (
156
- ?authentication_strategy: ("SIMPLE" | "LDAP"),
156
+ ?authentication_strategy: ("SIMPLE" | "LDAP" | "CONFIG_MANAGED"),
157
157
  engine_type: ("ACTIVEMQ" | "RABBITMQ"),
158
158
  ?engine_version: ::String,
159
159
  name: ::String,
@@ -222,7 +222,7 @@ module Aws
222
222
  interface _DescribeBrokerResponseSuccess
223
223
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeBrokerResponse]
224
224
  def actions_required: () -> ::Array[Types::ActionRequired]
225
- def authentication_strategy: () -> ("SIMPLE" | "LDAP")
225
+ def authentication_strategy: () -> ("SIMPLE" | "LDAP" | "CONFIG_MANAGED")
226
226
  def auto_minor_version_upgrade: () -> bool
227
227
  def broker_arn: () -> ::String
228
228
  def broker_id: () -> ::String
@@ -239,7 +239,7 @@ module Aws
239
239
  def ldap_server_metadata: () -> Types::LdapServerMetadataOutput
240
240
  def logs: () -> Types::LogsSummary
241
241
  def maintenance_window_start_time: () -> Types::WeeklyStartTime
242
- def pending_authentication_strategy: () -> ("SIMPLE" | "LDAP")
242
+ def pending_authentication_strategy: () -> ("SIMPLE" | "LDAP" | "CONFIG_MANAGED")
243
243
  def pending_engine_version: () -> ::String
244
244
  def pending_host_instance_type: () -> ::String
245
245
  def pending_ldap_server_metadata: () -> Types::LdapServerMetadataOutput
@@ -294,7 +294,7 @@ module Aws
294
294
  interface _DescribeConfigurationResponseSuccess
295
295
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeConfigurationResponse]
296
296
  def arn: () -> ::String
297
- def authentication_strategy: () -> ("SIMPLE" | "LDAP")
297
+ def authentication_strategy: () -> ("SIMPLE" | "LDAP" | "CONFIG_MANAGED")
298
298
  def created: () -> ::Time
299
299
  def description: () -> ::String
300
300
  def engine_type: () -> ("ACTIVEMQ" | "RABBITMQ")
@@ -426,7 +426,7 @@ module Aws
426
426
 
427
427
  interface _UpdateBrokerResponseSuccess
428
428
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateBrokerResponse]
429
- def authentication_strategy: () -> ("SIMPLE" | "LDAP")
429
+ def authentication_strategy: () -> ("SIMPLE" | "LDAP" | "CONFIG_MANAGED")
430
430
  def auto_minor_version_upgrade: () -> bool
431
431
  def broker_id: () -> ::String
432
432
  def configuration: () -> Types::ConfigurationId
@@ -443,7 +443,7 @@ module Aws
443
443
  end
444
444
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MQ/Client.html#update_broker-instance_method
445
445
  def update_broker: (
446
- ?authentication_strategy: ("SIMPLE" | "LDAP"),
446
+ ?authentication_strategy: ("SIMPLE" | "LDAP" | "CONFIG_MANAGED"),
447
447
  ?auto_minor_version_upgrade: bool,
448
448
  broker_id: ::String,
449
449
  ?configuration: {
data/sig/types.rbs CHANGED
@@ -76,7 +76,7 @@ module Aws::MQ
76
76
 
77
77
  class Configuration
78
78
  attr_accessor arn: ::String
79
- attr_accessor authentication_strategy: ("SIMPLE" | "LDAP")
79
+ attr_accessor authentication_strategy: ("SIMPLE" | "LDAP" | "CONFIG_MANAGED")
80
80
  attr_accessor created: ::Time
81
81
  attr_accessor description: ::String
82
82
  attr_accessor engine_type: ("ACTIVEMQ" | "RABBITMQ")
@@ -115,7 +115,7 @@ module Aws::MQ
115
115
  end
116
116
 
117
117
  class CreateBrokerInput
118
- attr_accessor authentication_strategy: ("SIMPLE" | "LDAP")
118
+ attr_accessor authentication_strategy: ("SIMPLE" | "LDAP" | "CONFIG_MANAGED")
119
119
  attr_accessor auto_minor_version_upgrade: bool
120
120
  attr_accessor broker_name: ::String
121
121
  attr_accessor configuration: Types::ConfigurationId
@@ -146,7 +146,7 @@ module Aws::MQ
146
146
  end
147
147
 
148
148
  class CreateBrokerRequest
149
- attr_accessor authentication_strategy: ("SIMPLE" | "LDAP")
149
+ attr_accessor authentication_strategy: ("SIMPLE" | "LDAP" | "CONFIG_MANAGED")
150
150
  attr_accessor auto_minor_version_upgrade: bool
151
151
  attr_accessor broker_name: ::String
152
152
  attr_accessor configuration: Types::ConfigurationId
@@ -177,7 +177,7 @@ module Aws::MQ
177
177
  end
178
178
 
179
179
  class CreateConfigurationInput
180
- attr_accessor authentication_strategy: ("SIMPLE" | "LDAP")
180
+ attr_accessor authentication_strategy: ("SIMPLE" | "LDAP" | "CONFIG_MANAGED")
181
181
  attr_accessor engine_type: ("ACTIVEMQ" | "RABBITMQ")
182
182
  attr_accessor engine_version: ::String
183
183
  attr_accessor name: ::String
@@ -187,7 +187,7 @@ module Aws::MQ
187
187
 
188
188
  class CreateConfigurationOutput
189
189
  attr_accessor arn: ::String
190
- attr_accessor authentication_strategy: ("SIMPLE" | "LDAP")
190
+ attr_accessor authentication_strategy: ("SIMPLE" | "LDAP" | "CONFIG_MANAGED")
191
191
  attr_accessor created: ::Time
192
192
  attr_accessor id: ::String
193
193
  attr_accessor latest_revision: Types::ConfigurationRevision
@@ -196,7 +196,7 @@ module Aws::MQ
196
196
  end
197
197
 
198
198
  class CreateConfigurationRequest
199
- attr_accessor authentication_strategy: ("SIMPLE" | "LDAP")
199
+ attr_accessor authentication_strategy: ("SIMPLE" | "LDAP" | "CONFIG_MANAGED")
200
200
  attr_accessor engine_type: ("ACTIVEMQ" | "RABBITMQ")
201
201
  attr_accessor engine_version: ::String
202
202
  attr_accessor name: ::String
@@ -206,7 +206,7 @@ module Aws::MQ
206
206
 
207
207
  class CreateConfigurationResponse
208
208
  attr_accessor arn: ::String
209
- attr_accessor authentication_strategy: ("SIMPLE" | "LDAP")
209
+ attr_accessor authentication_strategy: ("SIMPLE" | "LDAP" | "CONFIG_MANAGED")
210
210
  attr_accessor created: ::Time
211
211
  attr_accessor id: ::String
212
212
  attr_accessor latest_revision: Types::ConfigurationRevision
@@ -330,7 +330,7 @@ module Aws::MQ
330
330
 
331
331
  class DescribeBrokerOutput
332
332
  attr_accessor actions_required: ::Array[Types::ActionRequired]
333
- attr_accessor authentication_strategy: ("SIMPLE" | "LDAP")
333
+ attr_accessor authentication_strategy: ("SIMPLE" | "LDAP" | "CONFIG_MANAGED")
334
334
  attr_accessor auto_minor_version_upgrade: bool
335
335
  attr_accessor broker_arn: ::String
336
336
  attr_accessor broker_id: ::String
@@ -349,7 +349,7 @@ module Aws::MQ
349
349
  attr_accessor ldap_server_metadata: Types::LdapServerMetadataOutput
350
350
  attr_accessor logs: Types::LogsSummary
351
351
  attr_accessor maintenance_window_start_time: Types::WeeklyStartTime
352
- attr_accessor pending_authentication_strategy: ("SIMPLE" | "LDAP")
352
+ attr_accessor pending_authentication_strategy: ("SIMPLE" | "LDAP" | "CONFIG_MANAGED")
353
353
  attr_accessor pending_data_replication_metadata: Types::DataReplicationMetadataOutput
354
354
  attr_accessor pending_data_replication_mode: ("NONE" | "CRDR")
355
355
  attr_accessor pending_engine_version: ::String
@@ -372,7 +372,7 @@ module Aws::MQ
372
372
 
373
373
  class DescribeBrokerResponse
374
374
  attr_accessor actions_required: ::Array[Types::ActionRequired]
375
- attr_accessor authentication_strategy: ("SIMPLE" | "LDAP")
375
+ attr_accessor authentication_strategy: ("SIMPLE" | "LDAP" | "CONFIG_MANAGED")
376
376
  attr_accessor auto_minor_version_upgrade: bool
377
377
  attr_accessor broker_arn: ::String
378
378
  attr_accessor broker_id: ::String
@@ -389,7 +389,7 @@ module Aws::MQ
389
389
  attr_accessor ldap_server_metadata: Types::LdapServerMetadataOutput
390
390
  attr_accessor logs: Types::LogsSummary
391
391
  attr_accessor maintenance_window_start_time: Types::WeeklyStartTime
392
- attr_accessor pending_authentication_strategy: ("SIMPLE" | "LDAP")
392
+ attr_accessor pending_authentication_strategy: ("SIMPLE" | "LDAP" | "CONFIG_MANAGED")
393
393
  attr_accessor pending_engine_version: ::String
394
394
  attr_accessor pending_host_instance_type: ::String
395
395
  attr_accessor pending_ldap_server_metadata: Types::LdapServerMetadataOutput
@@ -414,7 +414,7 @@ module Aws::MQ
414
414
 
415
415
  class DescribeConfigurationResponse
416
416
  attr_accessor arn: ::String
417
- attr_accessor authentication_strategy: ("SIMPLE" | "LDAP")
417
+ attr_accessor authentication_strategy: ("SIMPLE" | "LDAP" | "CONFIG_MANAGED")
418
418
  attr_accessor created: ::Time
419
419
  attr_accessor description: ::String
420
420
  attr_accessor engine_type: ("ACTIVEMQ" | "RABBITMQ")
@@ -701,7 +701,7 @@ module Aws::MQ
701
701
  end
702
702
 
703
703
  class UpdateBrokerInput
704
- attr_accessor authentication_strategy: ("SIMPLE" | "LDAP")
704
+ attr_accessor authentication_strategy: ("SIMPLE" | "LDAP" | "CONFIG_MANAGED")
705
705
  attr_accessor auto_minor_version_upgrade: bool
706
706
  attr_accessor configuration: Types::ConfigurationId
707
707
  attr_accessor data_replication_mode: ("NONE" | "CRDR")
@@ -715,7 +715,7 @@ module Aws::MQ
715
715
  end
716
716
 
717
717
  class UpdateBrokerOutput
718
- attr_accessor authentication_strategy: ("SIMPLE" | "LDAP")
718
+ attr_accessor authentication_strategy: ("SIMPLE" | "LDAP" | "CONFIG_MANAGED")
719
719
  attr_accessor auto_minor_version_upgrade: bool
720
720
  attr_accessor broker_id: ::String
721
721
  attr_accessor configuration: Types::ConfigurationId
@@ -733,7 +733,7 @@ module Aws::MQ
733
733
  end
734
734
 
735
735
  class UpdateBrokerRequest
736
- attr_accessor authentication_strategy: ("SIMPLE" | "LDAP")
736
+ attr_accessor authentication_strategy: ("SIMPLE" | "LDAP" | "CONFIG_MANAGED")
737
737
  attr_accessor auto_minor_version_upgrade: bool
738
738
  attr_accessor broker_id: ::String
739
739
  attr_accessor configuration: Types::ConfigurationId
@@ -748,7 +748,7 @@ module Aws::MQ
748
748
  end
749
749
 
750
750
  class UpdateBrokerResponse
751
- attr_accessor authentication_strategy: ("SIMPLE" | "LDAP")
751
+ attr_accessor authentication_strategy: ("SIMPLE" | "LDAP" | "CONFIG_MANAGED")
752
752
  attr_accessor auto_minor_version_upgrade: bool
753
753
  attr_accessor broker_id: ::String
754
754
  attr_accessor configuration: Types::ConfigurationId
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mq
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.85.0
4
+ version: 1.86.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services