aws-sdk 2.1400.0 → 2.1402.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.
@@ -2646,6 +2646,10 @@ Within your job settings, all of your DVB-Sub settings must be identical.
2646
2646
  * Enables Alternate Transfer Function SEI message for outputs using Hybrid Log Gamma (HLG) Electro-Optical Transfer Function (EOTF).
2647
2647
  */
2648
2648
  AlternateTransferFunctionSei?: H265AlternateTransferFunctionSei;
2649
+ /**
2650
+ * The Bandwidth reduction filter increases the video quality of your output relative to its bitrate. Use to lower the bitrate of your constant quality QVBR output, with little or no perceptual decrease in quality. Or, use to increase the video quality of outputs with other rate control modes relative to the bitrate that you specify. Bandwidth reduction increases further when your input is low quality or noisy. Outputs that use this feature incur pro-tier pricing. When you include Bandwidth reduction filter, you cannot include the Noise reducer preprocessor.
2651
+ */
2652
+ BandwidthReductionFilter?: BandwidthReductionFilter;
2649
2653
  /**
2650
2654
  * Specify the average bitrate in bits per second. Required for VBR and CBR. For MS Smooth outputs, bitrates must be unique when rounded down to the nearest multiple of 1000.
2651
2655
  */
@@ -3030,6 +3034,10 @@ Within your job settings, all of your DVB-Sub settings must be identical.
3030
3034
  * Period of insertion of EXT-X-PROGRAM-DATE-TIME entry, in seconds.
3031
3035
  */
3032
3036
  ProgramDateTimePeriod?: __integerMin0Max3600;
3037
+ /**
3038
+ * Specify whether MediaConvert generates HLS manifests while your job is running or when your job is complete. To generate HLS manifests while your job is running: Choose Enabled. Use if you want to play back your content as soon as it's available. MediaConvert writes the parent and child manifests after the first three media segments are written to your destination S3 bucket. It then writes new updated manifests after each additional segment is written. The parent manifest includes the latest BANDWIDTH and AVERAGE-BANDWIDTH attributes, and child manifests include the latest available media segment. When your job completes, the final child playlists include an EXT-X-ENDLIST tag. To generate HLS manifests only when your job completes: Choose Disabled.
3039
+ */
3040
+ ProgressiveWriteHlsManifest?: HlsProgressiveWriteHlsManifest;
3033
3041
  /**
3034
3042
  * When set to SINGLE_FILE, emits program as a single media resource (.ts) file, uses #EXT-X-BYTERANGE tags to index segment for playback.
3035
3043
  */
@@ -3103,6 +3111,7 @@ Within your job settings, all of your DVB-Sub settings must be identical.
3103
3111
  export type HlsOfflineEncrypted = "ENABLED"|"DISABLED"|string;
3104
3112
  export type HlsOutputSelection = "MANIFESTS_AND_SEGMENTS"|"SEGMENTS_ONLY"|string;
3105
3113
  export type HlsProgramDateTime = "INCLUDE"|"EXCLUDE"|string;
3114
+ export type HlsProgressiveWriteHlsManifest = "ENABLED"|"DISABLED"|string;
3106
3115
  export interface HlsRenditionGroupSettings {
3107
3116
  /**
3108
3117
  * Optional. Specify alternative group ID
@@ -3216,7 +3225,7 @@ Within your job settings, all of your DVB-Sub settings must be identical.
3216
3225
  */
3217
3226
  AudioSelectors?: __mapOfAudioSelector;
3218
3227
  /**
3219
- * Use captions selectors to specify the captions data from your input that you use in your outputs. You can use up to 20 captions selectors per input.
3228
+ * Use captions selectors to specify the captions data from your input that you use in your outputs. You can use up to 100 captions selectors per input.
3220
3229
  */
3221
3230
  CaptionSelectors?: __mapOfCaptionSelector;
3222
3231
  /**
@@ -3350,7 +3359,7 @@ Within your job settings, all of your DVB-Sub settings must be identical.
3350
3359
  */
3351
3360
  AudioSelectors?: __mapOfAudioSelector;
3352
3361
  /**
3353
- * Use captions selectors to specify the captions data from your input that you use in your outputs. You can use up to 20 captions selectors per input.
3362
+ * Use captions selectors to specify the captions data from your input that you use in your outputs. You can use up to 100 captions selectors per input.
3354
3363
  */
3355
3364
  CaptionSelectors?: __mapOfCaptionSelector;
3356
3365
  /**
package/clients/mq.d.ts CHANGED
@@ -12,11 +12,11 @@ declare class MQ extends Service {
12
12
  constructor(options?: MQ.Types.ClientConfiguration)
13
13
  config: Config & MQ.Types.ClientConfiguration;
14
14
  /**
15
- * Creates a broker. Note: This API is asynchronous. To create a broker, you must either use the AmazonMQFullAccess IAM policy or include the following EC2 permissions in your IAM policy. ec2:CreateNetworkInterface This permission is required to allow Amazon MQ to create an elastic network interface (ENI) on behalf of your account. ec2:CreateNetworkInterfacePermission This permission is required to attach the ENI to the broker instance. ec2:DeleteNetworkInterface ec2:DeleteNetworkInterfacePermission ec2:DetachNetworkInterface ec2:DescribeInternetGateways ec2:DescribeNetworkInterfaces ec2:DescribeNetworkInterfacePermissions ec2:DescribeRouteTables ec2:DescribeSecurityGroups ec2:DescribeSubnets ec2:DescribeVpcs For more information, see Create an IAM User and Get Your AWS Credentials and Never Modify or Delete the Amazon MQ Elastic Network Interface in the Amazon MQ Developer Guide.
15
+ * Creates a broker. Note: This API is asynchronous. To create a broker, you must either use the AmazonMQFullAccess IAM policy or include the following EC2 permissions in your IAM policy. ec2:CreateNetworkInterface This permission is required to allow Amazon MQ to create an elastic network interface (ENI) on behalf of your account. ec2:CreateNetworkInterfacePermission This permission is required to attach the ENI to the broker instance. ec2:DeleteNetworkInterface ec2:DeleteNetworkInterfacePermission ec2:DetachNetworkInterface ec2:DescribeInternetGateways ec2:DescribeNetworkInterfaces ec2:DescribeNetworkInterfacePermissions ec2:DescribeRouteTables ec2:DescribeSecurityGroups ec2:DescribeSubnets ec2:DescribeVpcs For more information, see Create an IAM User and Get Your Amazon Web Services Credentials and Never Modify or Delete the Amazon MQ Elastic Network Interface in the Amazon MQ Developer Guide.
16
16
  */
17
17
  createBroker(params: MQ.Types.CreateBrokerRequest, callback?: (err: AWSError, data: MQ.Types.CreateBrokerResponse) => void): Request<MQ.Types.CreateBrokerResponse, AWSError>;
18
18
  /**
19
- * Creates a broker. Note: This API is asynchronous. To create a broker, you must either use the AmazonMQFullAccess IAM policy or include the following EC2 permissions in your IAM policy. ec2:CreateNetworkInterface This permission is required to allow Amazon MQ to create an elastic network interface (ENI) on behalf of your account. ec2:CreateNetworkInterfacePermission This permission is required to attach the ENI to the broker instance. ec2:DeleteNetworkInterface ec2:DeleteNetworkInterfacePermission ec2:DetachNetworkInterface ec2:DescribeInternetGateways ec2:DescribeNetworkInterfaces ec2:DescribeNetworkInterfacePermissions ec2:DescribeRouteTables ec2:DescribeSecurityGroups ec2:DescribeSubnets ec2:DescribeVpcs For more information, see Create an IAM User and Get Your AWS Credentials and Never Modify or Delete the Amazon MQ Elastic Network Interface in the Amazon MQ Developer Guide.
19
+ * Creates a broker. Note: This API is asynchronous. To create a broker, you must either use the AmazonMQFullAccess IAM policy or include the following EC2 permissions in your IAM policy. ec2:CreateNetworkInterface This permission is required to allow Amazon MQ to create an elastic network interface (ENI) on behalf of your account. ec2:CreateNetworkInterfacePermission This permission is required to attach the ENI to the broker instance. ec2:DeleteNetworkInterface ec2:DeleteNetworkInterfacePermission ec2:DetachNetworkInterface ec2:DescribeInternetGateways ec2:DescribeNetworkInterfaces ec2:DescribeNetworkInterfacePermissions ec2:DescribeRouteTables ec2:DescribeSecurityGroups ec2:DescribeSubnets ec2:DescribeVpcs For more information, see Create an IAM User and Get Your Amazon Web Services Credentials and Never Modify or Delete the Amazon MQ Elastic Network Interface in the Amazon MQ Developer Guide.
20
20
  */
21
21
  createBroker(callback?: (err: AWSError, data: MQ.Types.CreateBrokerResponse) => void): Request<MQ.Types.CreateBrokerResponse, AWSError>;
22
22
  /**
@@ -36,11 +36,11 @@ declare class MQ extends Service {
36
36
  */
37
37
  createTags(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
38
38
  /**
39
- * Creates an ActiveMQ user.
39
+ * Creates an ActiveMQ user. Do not add personally identifiable information (PII) or other confidential or sensitive information in broker usernames. Broker usernames are accessible to other Amazon Web Services services, including CloudWatch Logs. Broker usernames are not intended to be used for private or sensitive data.
40
40
  */
41
41
  createUser(params: MQ.Types.CreateUserRequest, callback?: (err: AWSError, data: MQ.Types.CreateUserResponse) => void): Request<MQ.Types.CreateUserResponse, AWSError>;
42
42
  /**
43
- * Creates an ActiveMQ user.
43
+ * Creates an ActiveMQ user. Do not add personally identifiable information (PII) or other confidential or sensitive information in broker usernames. Broker usernames are accessible to other Amazon Web Services services, including CloudWatch Logs. Broker usernames are not intended to be used for private or sensitive data.
44
44
  */
45
45
  createUser(callback?: (err: AWSError, data: MQ.Types.CreateUserResponse) => void): Request<MQ.Types.CreateUserResponse, AWSError>;
46
46
  /**
@@ -155,6 +155,14 @@ declare class MQ extends Service {
155
155
  * Returns a list of all ActiveMQ users.
156
156
  */
157
157
  listUsers(callback?: (err: AWSError, data: MQ.Types.ListUsersResponse) => void): Request<MQ.Types.ListUsersResponse, AWSError>;
158
+ /**
159
+ * Promotes a data replication replica broker to the primary broker role.
160
+ */
161
+ promote(params: MQ.Types.PromoteRequest, callback?: (err: AWSError, data: MQ.Types.PromoteResponse) => void): Request<MQ.Types.PromoteResponse, AWSError>;
162
+ /**
163
+ * Promotes a data replication replica broker to the primary broker role.
164
+ */
165
+ promote(callback?: (err: AWSError, data: MQ.Types.PromoteResponse) => void): Request<MQ.Types.PromoteResponse, AWSError>;
158
166
  /**
159
167
  * Reboots a broker. Note: This API is asynchronous.
160
168
  */
@@ -191,11 +199,11 @@ declare class MQ extends Service {
191
199
  declare namespace MQ {
192
200
  export interface ActionRequired {
193
201
  /**
194
- * The code you can use to resolve your broker issue when the broker is in a CRITICAL_ACTION_REQUIRED state. You can find instructions by choosing the link for your code from the list of action required codes in Amazon MQ action required codes. Each code references a topic with detailed information, instructions, and recommendations for how to resolve the issue and prevent future occurrences.
202
+ * The code you can use to find instructions on the action required to resolve your broker issue.
195
203
  */
196
204
  ActionRequiredCode?: __string;
197
205
  /**
198
- * Information about the action required to resolve your broker issue when the broker is in a CRITICAL_ACTION_REQUIRED state.
206
+ * Information about the action required to resolve your broker issue.
199
207
  */
200
208
  ActionRequiredInfo?: __string;
201
209
  }
@@ -256,7 +264,7 @@ declare namespace MQ {
256
264
  */
257
265
  SupportedEngineVersions?: __listOf__string;
258
266
  }
259
- export type BrokerState = "CREATION_IN_PROGRESS"|"CREATION_FAILED"|"DELETION_IN_PROGRESS"|"RUNNING"|"REBOOT_IN_PROGRESS"|"CRITICAL_ACTION_REQUIRED"|string;
267
+ export type BrokerState = "CREATION_IN_PROGRESS"|"CREATION_FAILED"|"DELETION_IN_PROGRESS"|"RUNNING"|"REBOOT_IN_PROGRESS"|"CRITICAL_ACTION_REQUIRED"|"REPLICA"|string;
260
268
  export type BrokerStorageType = "EBS"|"EFS"|string;
261
269
  export interface BrokerSummary {
262
270
  /**
@@ -268,7 +276,7 @@ declare namespace MQ {
268
276
  */
269
277
  BrokerId?: __string;
270
278
  /**
271
- * The broker's name. This value is unique in your AWS account, 1-50 characters long, and containing only letters, numbers, dashes, and underscores, and must not contain white spaces, brackets, wildcard characters, or special characters.
279
+ * The broker's name. This value is unique in your Amazon Web Services account, 1-50 characters long, and containing only letters, numbers, dashes, and underscores, and must not contain white spaces, brackets, wildcard characters, or special characters.
272
280
  */
273
281
  BrokerName?: __string;
274
282
  /**
@@ -383,7 +391,7 @@ declare namespace MQ {
383
391
  */
384
392
  AutoMinorVersionUpgrade: __boolean;
385
393
  /**
386
- * Required. The broker's name. This value must be unique in your AWS account, 1-50 characters long, must contain only letters, numbers, dashes, and underscores, and must not contain white spaces, brackets, wildcard characters, or special characters.
394
+ * Required. The broker's name. This value must be unique in your Amazon Web Services account, 1-50 characters long, must contain only letters, numbers, dashes, and underscores, and must not contain white spaces, brackets, wildcard characters, or special characters. Do not add personally identifiable information (PII) or other confidential or sensitive information in broker names. Broker names are accessible to other Amazon Web Services services, including CloudWatch Logs. Broker names are not intended to be used for private or sensitive data.
387
395
  */
388
396
  BrokerName: __string;
389
397
  /**
@@ -391,7 +399,7 @@ declare namespace MQ {
391
399
  */
392
400
  Configuration?: ConfigurationId;
393
401
  /**
394
- * The unique ID that the requester receives for the created broker. Amazon MQ passes your ID with the API action. Note: We recommend using a Universally Unique Identifier (UUID) for the creatorRequestId. You may omit the creatorRequestId if your application doesn't require idempotency.
402
+ * The unique ID that the requester receives for the created broker. Amazon MQ passes your ID with the API action. We recommend using a Universally Unique Identifier (UUID) for the creatorRequestId. You may omit the creatorRequestId if your application doesn't require idempotency.
395
403
  */
396
404
  CreatorRequestId?: __string;
397
405
  /**
@@ -399,7 +407,7 @@ declare namespace MQ {
399
407
  */
400
408
  DeploymentMode: DeploymentMode;
401
409
  /**
402
- * Encryption options for the broker. Does not apply to RabbitMQ brokers.
410
+ * Encryption options for the broker.
403
411
  */
404
412
  EncryptionOptions?: EncryptionOptions;
405
413
  /**
@@ -439,7 +447,7 @@ declare namespace MQ {
439
447
  */
440
448
  StorageType?: BrokerStorageType;
441
449
  /**
442
- * The list of groups that define which subnets and IP ranges the broker can use from different Availability Zones. If you specify more than one subnet, the subnets must be in different Availability Zones. Amazon MQ will not be able to create VPC endpoints for your broker with multiple subnets in the same Availability Zone. A SINGLE_INSTANCE deployment requires one subnet (for example, the default subnet). An ACTIVE_STANDBY_MULTI_AZ Amazon MQ for ActiveMQ deployment requires two subnets. A CLUSTER_MULTI_AZ Amazon MQ for RabbitMQ deployment has no subnet requirements when deployed with public accessibility. Deployment without public accessibility requires at least one subnet. If you specify subnets in a shared VPC for a RabbitMQ broker, the associated VPC to which the specified subnets belong must be owned by your AWS account. Amazon MQ will not be able to create VPC endpoints in VPCs that are not owned by your AWS account.
450
+ * The list of groups that define which subnets and IP ranges the broker can use from different Availability Zones. If you specify more than one subnet, the subnets must be in different Availability Zones. Amazon MQ will not be able to create VPC endpoints for your broker with multiple subnets in the same Availability Zone. A SINGLE_INSTANCE deployment requires one subnet (for example, the default subnet). An ACTIVE_STANDBY_MULTI_AZ Amazon MQ for ActiveMQ deployment requires two subnets. A CLUSTER_MULTI_AZ Amazon MQ for RabbitMQ deployment has no subnet requirements when deployed with public accessibility. Deployment without public accessibility requires at least one subnet. If you specify subnets in a shared VPC for a RabbitMQ broker, the associated VPC to which the specified subnets belong must be owned by your Amazon Web Services account. Amazon MQ will not be able to create VPC endpoints in VPCs that are not owned by your Amazon Web Services account.
443
451
  */
444
452
  SubnetIds?: __listOf__string;
445
453
  /**
@@ -447,9 +455,17 @@ declare namespace MQ {
447
455
  */
448
456
  Tags?: __mapOf__string;
449
457
  /**
450
- * Required. The list of broker users (persons or applications) who can access queues and topics. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long. Amazon MQ for RabbitMQ When you create an Amazon MQ for RabbitMQ broker, one and only one administrative user is accepted and created when a broker is first provisioned. All subsequent broker users are created by making RabbitMQ API calls directly to brokers or via the RabbitMQ web console.
458
+ * The list of broker users (persons or applications) who can access queues and topics. For Amazon MQ for RabbitMQ brokers, one and only one administrative user is accepted and created when a broker is first provisioned. All subsequent broker users are created by making RabbitMQ API calls directly to brokers or via the RabbitMQ web console.
451
459
  */
452
460
  Users: __listOfUser;
461
+ /**
462
+ * Defines whether this broker is a part of a data replication pair.
463
+ */
464
+ DataReplicationMode?: DataReplicationMode;
465
+ /**
466
+ * The Amazon Resource Name (ARN) of the primary broker that is used to replicate data from in a data replication pair, and is applied to the replica broker. Must be set when dataReplicationMode is set to CRDR.
467
+ */
468
+ DataReplicationPrimaryBrokerArn?: __string;
453
469
  }
454
470
  export interface CreateBrokerResponse {
455
471
  /**
@@ -540,9 +556,34 @@ declare namespace MQ {
540
556
  * The username of the ActiveMQ user. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long.
541
557
  */
542
558
  Username: __string;
559
+ /**
560
+ * Defines if this user is intended for CRDR replication purposes.
561
+ */
562
+ ReplicationUser?: __boolean;
543
563
  }
544
564
  export interface CreateUserResponse {
545
565
  }
566
+ export interface DataReplicationCounterpart {
567
+ /**
568
+ * Required. The unique broker id generated by Amazon MQ.
569
+ */
570
+ BrokerId: __string;
571
+ /**
572
+ * Required. The region of the broker.
573
+ */
574
+ Region: __string;
575
+ }
576
+ export interface DataReplicationMetadataOutput {
577
+ /**
578
+ * Describes the replica/primary broker. Only returned if this broker is currently set as a primary or replica in the broker's dataReplicationRole property.
579
+ */
580
+ DataReplicationCounterpart?: DataReplicationCounterpart;
581
+ /**
582
+ * Defines the role of this broker in a data replication pair. When a replica broker is promoted to primary, this role is interchanged.
583
+ */
584
+ DataReplicationRole: __string;
585
+ }
586
+ export type DataReplicationMode = "NONE"|"CRDR"|string;
546
587
  export type DayOfWeek = "MONDAY"|"TUESDAY"|"WEDNESDAY"|"THURSDAY"|"FRIDAY"|"SATURDAY"|"SUNDAY"|string;
547
588
  export interface DeleteBrokerRequest {
548
589
  /**
@@ -651,7 +692,7 @@ declare namespace MQ {
651
692
  }
652
693
  export interface DescribeBrokerResponse {
653
694
  /**
654
- * A list of actions required for a broker.
695
+ * Actions required for a broker.
655
696
  */
656
697
  ActionsRequired?: __listOfActionRequired;
657
698
  /**
@@ -675,7 +716,7 @@ declare namespace MQ {
675
716
  */
676
717
  BrokerInstances?: __listOfBrokerInstance;
677
718
  /**
678
- * The broker's name. This value must be unique in your AWS account, 1-50 characters long, must contain only letters, numbers, dashes, and underscores, and must not contain white spaces, brackets, wildcard characters, or special characters.
719
+ * The broker's name. This value must be unique in your Amazon Web Services account account, 1-50 characters long, must contain only letters, numbers, dashes, and underscores, and must not contain white spaces, brackets, wildcard characters, or special characters.
679
720
  */
680
721
  BrokerName?: __string;
681
722
  /**
@@ -695,7 +736,7 @@ declare namespace MQ {
695
736
  */
696
737
  DeploymentMode?: DeploymentMode;
697
738
  /**
698
- * Encryption options for the broker. Does not apply to RabbitMQ brokers.
739
+ * Encryption options for the broker.
699
740
  */
700
741
  EncryptionOptions?: EncryptionOptions;
701
742
  /**
@@ -766,6 +807,22 @@ declare namespace MQ {
766
807
  * The list of all broker usernames for the specified broker.
767
808
  */
768
809
  Users?: __listOfUserSummary;
810
+ /**
811
+ * The replication details of the data replication-enabled broker. Only returned if dataReplicationMode is set to CRDR.
812
+ */
813
+ DataReplicationMetadata?: DataReplicationMetadataOutput;
814
+ /**
815
+ * Describes whether this broker is a part of a data replication pair.
816
+ */
817
+ DataReplicationMode?: DataReplicationMode;
818
+ /**
819
+ * The pending replication details of the data replication-enabled broker. Only returned if pendingDataReplicationMode is set to CRDR.
820
+ */
821
+ PendingDataReplicationMetadata?: DataReplicationMetadataOutput;
822
+ /**
823
+ * Describes whether this broker will be a part of a data replication pair after reboot.
824
+ */
825
+ PendingDataReplicationMode?: DataReplicationMode;
769
826
  }
770
827
  export interface DescribeConfigurationRequest {
771
828
  /**
@@ -835,7 +892,7 @@ declare namespace MQ {
835
892
  */
836
893
  Created?: __timestampIso8601;
837
894
  /**
838
- * Required. The base64-encoded XML configuration.
895
+ * Amazon MQ for ActiveMQ: the base64-encoded XML configuration. Amazon MQ for RabbitMQ: base64-encoded Cuttlefish.
839
896
  */
840
897
  Data?: __string;
841
898
  /**
@@ -874,14 +931,18 @@ declare namespace MQ {
874
931
  * Required. The username of the ActiveMQ user. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long.
875
932
  */
876
933
  Username?: __string;
934
+ /**
935
+ * Describes whether the user is intended for data replication
936
+ */
937
+ ReplicationUser?: __boolean;
877
938
  }
878
939
  export interface EncryptionOptions {
879
940
  /**
880
- * The customer master key (CMK) to use for the AWS Key Management Service (KMS). This key is used to encrypt your data at rest. If not provided, Amazon MQ will use a default CMK to encrypt your data.
941
+ * The customer master key (CMK) to use for the A KMS (KMS). This key is used to encrypt your data at rest. If not provided, Amazon MQ will use a default CMK to encrypt your data.
881
942
  */
882
943
  KmsKeyId?: __string;
883
944
  /**
884
- * Enables the use of an AWS owned CMK using AWS Key Management Service (KMS). Set to true by default, if no value is provided, for example, for RabbitMQ brokers.
945
+ * Enables the use of an Amazon Web Services owned CMK using KMS (KMS). Set to true by default, if no value is provided, for example, for RabbitMQ brokers.
885
946
  */
886
947
  UseAwsOwnedKey: __boolean;
887
948
  }
@@ -894,7 +955,7 @@ declare namespace MQ {
894
955
  }
895
956
  export interface LdapServerMetadataInput {
896
957
  /**
897
- * Specifies the location of the LDAP server such as AWS Directory Service for Microsoft Active Directory . Optional failover server.
958
+ * Specifies the location of the LDAP server such as Directory Service for Microsoft Active Directory. Optional failover server.
898
959
  */
899
960
  Hosts: __listOf__string;
900
961
  /**
@@ -945,7 +1006,7 @@ declare namespace MQ {
945
1006
  }
946
1007
  export interface LdapServerMetadataOutput {
947
1008
  /**
948
- * Specifies the location of the LDAP server such as AWS Directory Service for Microsoft Active Directory . Optional failover server.
1009
+ * Specifies the location of the LDAP server such as Directory Service for Microsoft Active Directory. Optional failover server.
949
1010
  */
950
1011
  Hosts: __listOf__string;
951
1012
  /**
@@ -1152,6 +1213,23 @@ declare namespace MQ {
1152
1213
  */
1153
1214
  General?: __boolean;
1154
1215
  }
1216
+ export type PromoteMode = "SWITCHOVER"|"FAILOVER"|string;
1217
+ export interface PromoteRequest {
1218
+ /**
1219
+ * The unique ID that Amazon MQ generates for the broker.
1220
+ */
1221
+ BrokerId: __string;
1222
+ /**
1223
+ * The Promote mode requested. Note: Valid values for the parameter are SWITCHOVER, FAILOVER.
1224
+ */
1225
+ Mode: PromoteMode;
1226
+ }
1227
+ export interface PromoteResponse {
1228
+ /**
1229
+ * The unique ID that Amazon MQ generates for the broker.
1230
+ */
1231
+ BrokerId?: __string;
1232
+ }
1155
1233
  export interface RebootBrokerRequest {
1156
1234
  /**
1157
1235
  * The unique ID that Amazon MQ generates for the broker.
@@ -1162,15 +1240,15 @@ declare namespace MQ {
1162
1240
  }
1163
1241
  export interface SanitizationWarning {
1164
1242
  /**
1165
- * The name of the XML attribute that has been sanitized.
1243
+ * The name of the configuration attribute that has been sanitized.
1166
1244
  */
1167
1245
  AttributeName?: __string;
1168
1246
  /**
1169
- * The name of the XML element that has been sanitized.
1247
+ * The name of the configuration element that has been sanitized.
1170
1248
  */
1171
1249
  ElementName?: __string;
1172
1250
  /**
1173
- * Required. The reason for which the XML elements or attributes were sanitized.
1251
+ * The reason for which the configuration elements or attributes were sanitized.
1174
1252
  */
1175
1253
  Reason: SanitizationWarningReason;
1176
1254
  }
@@ -1216,6 +1294,10 @@ declare namespace MQ {
1216
1294
  * The list of security groups (1 minimum, 5 maximum) that authorizes connections to brokers.
1217
1295
  */
1218
1296
  SecurityGroups?: __listOf__string;
1297
+ /**
1298
+ * Defines whether this broker is a part of a data replication pair.
1299
+ */
1300
+ DataReplicationMode?: DataReplicationMode;
1219
1301
  }
1220
1302
  export interface UpdateBrokerResponse {
1221
1303
  /**
@@ -1258,6 +1340,22 @@ declare namespace MQ {
1258
1340
  * The list of security groups (1 minimum, 5 maximum) that authorizes connections to brokers.
1259
1341
  */
1260
1342
  SecurityGroups?: __listOf__string;
1343
+ /**
1344
+ * The replication details of the data replication-enabled broker. Only returned if dataReplicationMode is set to CRDR.
1345
+ */
1346
+ DataReplicationMetadata?: DataReplicationMetadataOutput;
1347
+ /**
1348
+ * Describes whether this broker is a part of a data replication pair.
1349
+ */
1350
+ DataReplicationMode?: DataReplicationMode;
1351
+ /**
1352
+ * The pending replication details of the data replication-enabled broker. Only returned if pendingDataReplicationMode is set to CRDR.
1353
+ */
1354
+ PendingDataReplicationMetadata?: DataReplicationMetadataOutput;
1355
+ /**
1356
+ * Describes whether this broker will be a part of a data replication pair after reboot.
1357
+ */
1358
+ PendingDataReplicationMode?: DataReplicationMode;
1261
1359
  }
1262
1360
  export interface UpdateConfigurationRequest {
1263
1361
  /**
@@ -1265,7 +1363,7 @@ declare namespace MQ {
1265
1363
  */
1266
1364
  ConfigurationId: __string;
1267
1365
  /**
1268
- * Required. The base64-encoded XML configuration.
1366
+ * Amazon MQ for Active MQ: The base64-encoded XML configuration. Amazon MQ for RabbitMQ: the base64-encoded Cuttlefish configuration.
1269
1367
  */
1270
1368
  Data: __string;
1271
1369
  /**
@@ -1275,7 +1373,7 @@ declare namespace MQ {
1275
1373
  }
1276
1374
  export interface UpdateConfigurationResponse {
1277
1375
  /**
1278
- * Required. The Amazon Resource Name (ARN) of the configuration.
1376
+ * The Amazon Resource Name (ARN) of the configuration.
1279
1377
  */
1280
1378
  Arn?: __string;
1281
1379
  /**
@@ -1283,7 +1381,7 @@ declare namespace MQ {
1283
1381
  */
1284
1382
  Created?: __timestampIso8601;
1285
1383
  /**
1286
- * Required. The unique ID that Amazon MQ generates for the configuration.
1384
+ * The unique ID that Amazon MQ generates for the configuration.
1287
1385
  */
1288
1386
  Id?: __string;
1289
1387
  /**
@@ -1291,11 +1389,11 @@ declare namespace MQ {
1291
1389
  */
1292
1390
  LatestRevision?: ConfigurationRevision;
1293
1391
  /**
1294
- * Required. The name of the configuration. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 1-150 characters long.
1392
+ * The name of the configuration. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 1-150 characters long.
1295
1393
  */
1296
1394
  Name?: __string;
1297
1395
  /**
1298
- * The list of the first 20 warnings about the configuration XML elements or attributes that were sanitized.
1396
+ * The list of the first 20 warnings about the configuration elements or attributes that were sanitized.
1299
1397
  */
1300
1398
  Warnings?: __listOfSanitizationWarning;
1301
1399
  }
@@ -1320,6 +1418,10 @@ declare namespace MQ {
1320
1418
  * The username of the ActiveMQ user. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long.
1321
1419
  */
1322
1420
  Username: __string;
1421
+ /**
1422
+ * Defines whether the user is intended for data replication.
1423
+ */
1424
+ ReplicationUser?: __boolean;
1323
1425
  }
1324
1426
  export interface UpdateUserResponse {
1325
1427
  }
@@ -1337,9 +1439,13 @@ declare namespace MQ {
1337
1439
  */
1338
1440
  Password: __string;
1339
1441
  /**
1340
- * important>Amazon MQ for ActiveMQ For ActiveMQ brokers, this value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long./important> Amazon MQ for RabbitMQ For RabbitMQ brokers, this value can contain only alphanumeric characters, dashes, periods, underscores (- . _). This value must not contain a tilde (~) character. Amazon MQ prohibts using guest as a valid usename. This value must be 2-100 characters long.
1442
+ * The username of the broker user. The following restrictions apply to broker usernames: For Amazon MQ for ActiveMQ brokers, this value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long. para>For Amazon MQ for RabbitMQ brokers, this value can contain only alphanumeric characters, dashes, periods, underscores (- . _). This value must not contain a tilde (~) character. Amazon MQ prohibts using guest as a valid usename. This value must be 2-100 characters long. Do not add personally identifiable information (PII) or other confidential or sensitive information in broker usernames. Broker usernames are accessible to other Amazon Web Services services, including CloudWatch Logs. Broker usernames are not intended to be used for private or sensitive data.
1341
1443
  */
1342
1444
  Username: __string;
1445
+ /**
1446
+ * Defines if this user is intended for CRDR replication purposes.
1447
+ */
1448
+ ReplicationUser?: __boolean;
1343
1449
  }
1344
1450
  export interface UserPendingChanges {
1345
1451
  /**