pulumi-aws-native 1.38.0a1761718100__py3-none-any.whl → 1.38.0a1761750358__py3-none-any.whl

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.

Potentially problematic release.


This version of pulumi-aws-native might be problematic. Click here for more details.

Files changed (54) hide show
  1. pulumi_aws_native/__init__.py +2 -0
  2. pulumi_aws_native/amazonmq/_enums.py +4 -12
  3. pulumi_aws_native/amazonmq/_inputs.py +21 -91
  4. pulumi_aws_native/amazonmq/broker.py +56 -67
  5. pulumi_aws_native/amazonmq/get_broker.py +6 -13
  6. pulumi_aws_native/amazonmq/outputs.py +14 -54
  7. pulumi_aws_native/batch/_inputs.py +25 -0
  8. pulumi_aws_native/batch/job_definition.py +21 -0
  9. pulumi_aws_native/batch/outputs.py +31 -0
  10. pulumi_aws_native/bedrockagentcore/_enums.py +1 -0
  11. pulumi_aws_native/datazone/_inputs.py +81 -0
  12. pulumi_aws_native/datazone/connection.py +54 -26
  13. pulumi_aws_native/datazone/outputs.py +84 -0
  14. pulumi_aws_native/ec2/__init__.py +2 -0
  15. pulumi_aws_native/ec2/_enums.py +19 -0
  16. pulumi_aws_native/ec2/_inputs.py +15 -12
  17. pulumi_aws_native/ec2/capacity_manager_data_export.py +259 -0
  18. pulumi_aws_native/ec2/get_capacity_manager_data_export.py +92 -0
  19. pulumi_aws_native/ec2/outputs.py +10 -8
  20. pulumi_aws_native/ecs/_enums.py +14 -0
  21. pulumi_aws_native/ecs/_inputs.py +134 -8
  22. pulumi_aws_native/ecs/outputs.py +135 -5
  23. pulumi_aws_native/elasticloadbalancingv2/_inputs.py +12 -12
  24. pulumi_aws_native/elasticloadbalancingv2/load_balancer.py +4 -4
  25. pulumi_aws_native/elasticloadbalancingv2/outputs.py +8 -8
  26. pulumi_aws_native/imagebuilder/_inputs.py +37 -0
  27. pulumi_aws_native/imagebuilder/image.py +29 -0
  28. pulumi_aws_native/imagebuilder/outputs.py +40 -0
  29. pulumi_aws_native/mediapackagev2/_inputs.py +7 -0
  30. pulumi_aws_native/mediapackagev2/outputs.py +4 -0
  31. pulumi_aws_native/networkfirewall/_enums.py +2 -0
  32. pulumi_aws_native/networkfirewall/_inputs.py +13 -0
  33. pulumi_aws_native/networkfirewall/firewall.py +7 -0
  34. pulumi_aws_native/networkfirewall/get_firewall.py +12 -1
  35. pulumi_aws_native/networkfirewall/outputs.py +10 -0
  36. pulumi_aws_native/pulumi-plugin.json +1 -1
  37. pulumi_aws_native/rtbfabric/__init__.py +2 -0
  38. pulumi_aws_native/rtbfabric/_enums.py +41 -0
  39. pulumi_aws_native/rtbfabric/_inputs.py +260 -0
  40. pulumi_aws_native/rtbfabric/get_link.py +181 -0
  41. pulumi_aws_native/rtbfabric/link.py +293 -0
  42. pulumi_aws_native/rtbfabric/outputs.py +260 -0
  43. pulumi_aws_native/sagemaker/_enums.py +2 -171
  44. pulumi_aws_native/sagemaker/_inputs.py +17 -5
  45. pulumi_aws_native/sagemaker/outputs.py +11 -3
  46. pulumi_aws_native/transfer/_enums.py +15 -0
  47. pulumi_aws_native/transfer/_inputs.py +77 -0
  48. pulumi_aws_native/transfer/connector.py +83 -19
  49. pulumi_aws_native/transfer/get_connector.py +40 -1
  50. pulumi_aws_native/transfer/outputs.py +80 -0
  51. {pulumi_aws_native-1.38.0a1761718100.dist-info → pulumi_aws_native-1.38.0a1761750358.dist-info}/METADATA +1 -1
  52. {pulumi_aws_native-1.38.0a1761718100.dist-info → pulumi_aws_native-1.38.0a1761750358.dist-info}/RECORD +54 -50
  53. {pulumi_aws_native-1.38.0a1761718100.dist-info → pulumi_aws_native-1.38.0a1761750358.dist-info}/WHEEL +0 -0
  54. {pulumi_aws_native-1.38.0a1761718100.dist-info → pulumi_aws_native-1.38.0a1761750358.dist-info}/top_level.txt +0 -0
@@ -46,36 +46,34 @@ class BrokerArgs:
46
46
  users: Optional[pulumi.Input[Sequence[pulumi.Input['BrokerUserArgs']]]] = None):
47
47
  """
48
48
  The set of arguments for constructing a Broker resource.
49
- :param pulumi.Input[Union['BrokerDeploymentMode', _builtins.str]] deployment_mode: The deployment mode of the broker. Available values:
50
-
51
- - `SINGLE_INSTANCE`
52
- - `ACTIVE_STANDBY_MULTI_AZ`
53
- - `CLUSTER_MULTI_AZ`
54
- :param pulumi.Input[Union['BrokerEngineType', _builtins.str]] engine_type: The type of broker engine. Currently, Amazon MQ supports `ACTIVEMQ` and `RABBITMQ` .
55
- :param pulumi.Input[_builtins.str] host_instance_type: The broker's instance type.
56
- :param pulumi.Input[_builtins.bool] publicly_accessible: Enables connections from applications outside of the VPC that hosts the broker's subnets.
49
+ :param pulumi.Input[Union['BrokerDeploymentMode', _builtins.str]] deployment_mode: Required. The broker's deployment mode.
50
+ :param pulumi.Input[Union['BrokerEngineType', _builtins.str]] engine_type: Required. The type of broker engine. Currently, Amazon MQ supports `ACTIVEMQ` and `RABBITMQ` .
51
+ :param pulumi.Input[_builtins.str] host_instance_type: Required. The broker's instance type.
52
+ :param pulumi.Input[_builtins.bool] publicly_accessible: Enables connections from applications outside of the VPC that hosts the broker's subnets. Set to `false` by default, if no value is provided.
57
53
  :param pulumi.Input[_builtins.str] authentication_strategy: Optional. The authentication strategy used to secure the broker. The default is `SIMPLE` .
58
- :param pulumi.Input[_builtins.bool] auto_minor_version_upgrade: Enables automatic upgrades to new minor versions for brokers, as new broker engine versions are released and supported by Amazon MQ. Automatic upgrades occur during the scheduled maintenance window of the broker or after a manual broker reboot.
59
- :param pulumi.Input[_builtins.str] broker_name: The name of the broker. 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.
54
+ :param pulumi.Input[_builtins.bool] auto_minor_version_upgrade: Enables automatic upgrades to new patch versions for brokers as new versions are released and supported by Amazon MQ. Automatic upgrades occur during the scheduled maintenance window or after a manual broker reboot. Set to `true` by default, if no value is specified.
55
+
56
+ > Must be set to `true` for ActiveMQ brokers version 5.18 and above and for RabbitMQ brokers version 3.13 and above.
57
+ :param pulumi.Input[_builtins.str] broker_name: 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.
60
58
 
61
- > Do not add personally identifiable information (PII) or other confidential or sensitive information in broker names. Broker names are accessible to other AWS services, including C CloudWatch Logs . Broker names are not intended to be used for private or sensitive data.
59
+ > Do not add personally identifiable information (PII) or other confidential or sensitive information in broker names. Broker names are accessible to other AWS services, including CloudWatch Logs . Broker names are not intended to be used for private or sensitive data.
62
60
  :param pulumi.Input['BrokerConfigurationIdArgs'] configuration: The intended configuration (ID and revision) to be set when creating or updating.
63
61
  This property is write-only so that applications of a ConfigurationAssociation do not cause drift.
64
62
  :param pulumi.Input[Union['BrokerDataReplicationMode', _builtins.str]] data_replication_mode: Defines whether this broker is a part of a data replication pair.
65
63
  :param pulumi.Input[_builtins.str] data_replication_primary_broker_arn: The ARN of the primary broker that is used to replicate data from in a data replication pair when creating a replica.
66
64
  This field is only used at creation-time. Changes to it subsequently are ignored by CloudFormation.
67
65
  Information on the current primary is available on the DataReplicationMetadata object returned by the API.
68
- :param pulumi.Input['BrokerEncryptionOptionsArgs'] encryption_options: Encryption options for the broker. Does not apply to RabbitMQ brokers.
66
+ :param pulumi.Input['BrokerEncryptionOptionsArgs'] encryption_options: Encryption options for the broker.
69
67
  :param pulumi.Input[_builtins.str] engine_version: The version specified to use. See also EngineVersionCurrent.
70
68
  :param pulumi.Input['BrokerLdapServerMetadataArgs'] ldap_server_metadata: Optional. The metadata of the LDAP server used to authenticate and authorize connections to the broker. Does not apply to RabbitMQ brokers.
71
69
  :param pulumi.Input['BrokerLogListArgs'] logs: Enables Amazon CloudWatch logging for brokers.
72
- :param pulumi.Input['BrokerMaintenanceWindowArgs'] maintenance_window_start_time: The scheduled time period relative to UTC during which Amazon MQ begins to apply pending updates or patches to the broker.
70
+ :param pulumi.Input['BrokerMaintenanceWindowArgs'] maintenance_window_start_time: The parameters that determine the WeeklyStartTime.
73
71
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] security_groups: The list of rules (1 minimum, 125 maximum) that authorize connections to brokers.
74
72
  :param pulumi.Input[Union['BrokerStorageType', _builtins.str]] storage_type: The broker's storage type.
75
- :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] subnet_ids: 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 deployment (ACTIVEMQ) requires two subnets. A CLUSTER_MULTI_AZ deployment (RABBITMQ) has no subnet requirements when deployed with public accessibility, deployment without public accessibility requires at least one subnet.
73
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] subnet_ids: 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.
76
74
 
77
- > 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 enpoints in VPCs that are not owned by your AWS account .
78
- :param pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]] tags: An array of key-value pairs. For more information, see [Using Cost Allocation Tags](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html) in the *Billing and Cost Management User Guide* .
75
+ > If you specify subnets in a [shared VPC](https://docs.aws.amazon.com/vpc/latest/userguide/vpc-sharing.html) 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 .
76
+ :param pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]] tags: Create tags when creating the broker.
79
77
  :param pulumi.Input[Sequence[pulumi.Input['BrokerUserArgs']]] users: Users to configure on the broker.
80
78
  For RabbitMQ, this should be one user, created when the broker is created, and changes thereafter are ignored.
81
79
  For ActiveMQ, changes to anything but Password are detected and will trigger an update,
@@ -122,11 +120,7 @@ class BrokerArgs:
122
120
  @pulumi.getter(name="deploymentMode")
123
121
  def deployment_mode(self) -> pulumi.Input[Union['BrokerDeploymentMode', _builtins.str]]:
124
122
  """
125
- The deployment mode of the broker. Available values:
126
-
127
- - `SINGLE_INSTANCE`
128
- - `ACTIVE_STANDBY_MULTI_AZ`
129
- - `CLUSTER_MULTI_AZ`
123
+ Required. The broker's deployment mode.
130
124
  """
131
125
  return pulumi.get(self, "deployment_mode")
132
126
 
@@ -138,7 +132,7 @@ class BrokerArgs:
138
132
  @pulumi.getter(name="engineType")
139
133
  def engine_type(self) -> pulumi.Input[Union['BrokerEngineType', _builtins.str]]:
140
134
  """
141
- The type of broker engine. Currently, Amazon MQ supports `ACTIVEMQ` and `RABBITMQ` .
135
+ Required. The type of broker engine. Currently, Amazon MQ supports `ACTIVEMQ` and `RABBITMQ` .
142
136
  """
143
137
  return pulumi.get(self, "engine_type")
144
138
 
@@ -150,7 +144,7 @@ class BrokerArgs:
150
144
  @pulumi.getter(name="hostInstanceType")
151
145
  def host_instance_type(self) -> pulumi.Input[_builtins.str]:
152
146
  """
153
- The broker's instance type.
147
+ Required. The broker's instance type.
154
148
  """
155
149
  return pulumi.get(self, "host_instance_type")
156
150
 
@@ -162,7 +156,7 @@ class BrokerArgs:
162
156
  @pulumi.getter(name="publiclyAccessible")
163
157
  def publicly_accessible(self) -> pulumi.Input[_builtins.bool]:
164
158
  """
165
- Enables connections from applications outside of the VPC that hosts the broker's subnets.
159
+ Enables connections from applications outside of the VPC that hosts the broker's subnets. Set to `false` by default, if no value is provided.
166
160
  """
167
161
  return pulumi.get(self, "publicly_accessible")
168
162
 
@@ -186,7 +180,9 @@ class BrokerArgs:
186
180
  @pulumi.getter(name="autoMinorVersionUpgrade")
187
181
  def auto_minor_version_upgrade(self) -> Optional[pulumi.Input[_builtins.bool]]:
188
182
  """
189
- Enables automatic upgrades to new minor versions for brokers, as new broker engine versions are released and supported by Amazon MQ. Automatic upgrades occur during the scheduled maintenance window of the broker or after a manual broker reboot.
183
+ Enables automatic upgrades to new patch versions for brokers as new versions are released and supported by Amazon MQ. Automatic upgrades occur during the scheduled maintenance window or after a manual broker reboot. Set to `true` by default, if no value is specified.
184
+
185
+ > Must be set to `true` for ActiveMQ brokers version 5.18 and above and for RabbitMQ brokers version 3.13 and above.
190
186
  """
191
187
  return pulumi.get(self, "auto_minor_version_upgrade")
192
188
 
@@ -198,9 +194,9 @@ class BrokerArgs:
198
194
  @pulumi.getter(name="brokerName")
199
195
  def broker_name(self) -> Optional[pulumi.Input[_builtins.str]]:
200
196
  """
201
- The name of the broker. 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.
197
+ 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.
202
198
 
203
- > Do not add personally identifiable information (PII) or other confidential or sensitive information in broker names. Broker names are accessible to other AWS services, including C CloudWatch Logs . Broker names are not intended to be used for private or sensitive data.
199
+ > Do not add personally identifiable information (PII) or other confidential or sensitive information in broker names. Broker names are accessible to other AWS services, including CloudWatch Logs . Broker names are not intended to be used for private or sensitive data.
204
200
  """
205
201
  return pulumi.get(self, "broker_name")
206
202
 
@@ -251,7 +247,7 @@ class BrokerArgs:
251
247
  @pulumi.getter(name="encryptionOptions")
252
248
  def encryption_options(self) -> Optional[pulumi.Input['BrokerEncryptionOptionsArgs']]:
253
249
  """
254
- Encryption options for the broker. Does not apply to RabbitMQ brokers.
250
+ Encryption options for the broker.
255
251
  """
256
252
  return pulumi.get(self, "encryption_options")
257
253
 
@@ -299,7 +295,7 @@ class BrokerArgs:
299
295
  @pulumi.getter(name="maintenanceWindowStartTime")
300
296
  def maintenance_window_start_time(self) -> Optional[pulumi.Input['BrokerMaintenanceWindowArgs']]:
301
297
  """
302
- The scheduled time period relative to UTC during which Amazon MQ begins to apply pending updates or patches to the broker.
298
+ The parameters that determine the WeeklyStartTime.
303
299
  """
304
300
  return pulumi.get(self, "maintenance_window_start_time")
305
301
 
@@ -335,9 +331,9 @@ class BrokerArgs:
335
331
  @pulumi.getter(name="subnetIds")
336
332
  def subnet_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
337
333
  """
338
- 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 deployment (ACTIVEMQ) requires two subnets. A CLUSTER_MULTI_AZ deployment (RABBITMQ) has no subnet requirements when deployed with public accessibility, deployment without public accessibility requires at least one subnet.
334
+ 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.
339
335
 
340
- > 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 enpoints in VPCs that are not owned by your AWS account .
336
+ > If you specify subnets in a [shared VPC](https://docs.aws.amazon.com/vpc/latest/userguide/vpc-sharing.html) 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 .
341
337
  """
342
338
  return pulumi.get(self, "subnet_ids")
343
339
 
@@ -349,7 +345,7 @@ class BrokerArgs:
349
345
  @pulumi.getter
350
346
  def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]]:
351
347
  """
352
- An array of key-value pairs. For more information, see [Using Cost Allocation Tags](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html) in the *Billing and Cost Management User Guide* .
348
+ Create tags when creating the broker.
353
349
  """
354
350
  return pulumi.get(self, "tags")
355
351
 
@@ -552,35 +548,33 @@ class Broker(pulumi.CustomResource):
552
548
  :param str resource_name: The name of the resource.
553
549
  :param pulumi.ResourceOptions opts: Options for the resource.
554
550
  :param pulumi.Input[_builtins.str] authentication_strategy: Optional. The authentication strategy used to secure the broker. The default is `SIMPLE` .
555
- :param pulumi.Input[_builtins.bool] auto_minor_version_upgrade: Enables automatic upgrades to new minor versions for brokers, as new broker engine versions are released and supported by Amazon MQ. Automatic upgrades occur during the scheduled maintenance window of the broker or after a manual broker reboot.
556
- :param pulumi.Input[_builtins.str] broker_name: The name of the broker. 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.
551
+ :param pulumi.Input[_builtins.bool] auto_minor_version_upgrade: Enables automatic upgrades to new patch versions for brokers as new versions are released and supported by Amazon MQ. Automatic upgrades occur during the scheduled maintenance window or after a manual broker reboot. Set to `true` by default, if no value is specified.
552
+
553
+ > Must be set to `true` for ActiveMQ brokers version 5.18 and above and for RabbitMQ brokers version 3.13 and above.
554
+ :param pulumi.Input[_builtins.str] broker_name: 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.
557
555
 
558
- > Do not add personally identifiable information (PII) or other confidential or sensitive information in broker names. Broker names are accessible to other AWS services, including C CloudWatch Logs . Broker names are not intended to be used for private or sensitive data.
556
+ > Do not add personally identifiable information (PII) or other confidential or sensitive information in broker names. Broker names are accessible to other AWS services, including CloudWatch Logs . Broker names are not intended to be used for private or sensitive data.
559
557
  :param pulumi.Input[Union['BrokerConfigurationIdArgs', 'BrokerConfigurationIdArgsDict']] configuration: The intended configuration (ID and revision) to be set when creating or updating.
560
558
  This property is write-only so that applications of a ConfigurationAssociation do not cause drift.
561
559
  :param pulumi.Input[Union['BrokerDataReplicationMode', _builtins.str]] data_replication_mode: Defines whether this broker is a part of a data replication pair.
562
560
  :param pulumi.Input[_builtins.str] data_replication_primary_broker_arn: The ARN of the primary broker that is used to replicate data from in a data replication pair when creating a replica.
563
561
  This field is only used at creation-time. Changes to it subsequently are ignored by CloudFormation.
564
562
  Information on the current primary is available on the DataReplicationMetadata object returned by the API.
565
- :param pulumi.Input[Union['BrokerDeploymentMode', _builtins.str]] deployment_mode: The deployment mode of the broker. Available values:
566
-
567
- - `SINGLE_INSTANCE`
568
- - `ACTIVE_STANDBY_MULTI_AZ`
569
- - `CLUSTER_MULTI_AZ`
570
- :param pulumi.Input[Union['BrokerEncryptionOptionsArgs', 'BrokerEncryptionOptionsArgsDict']] encryption_options: Encryption options for the broker. Does not apply to RabbitMQ brokers.
571
- :param pulumi.Input[Union['BrokerEngineType', _builtins.str]] engine_type: The type of broker engine. Currently, Amazon MQ supports `ACTIVEMQ` and `RABBITMQ` .
563
+ :param pulumi.Input[Union['BrokerDeploymentMode', _builtins.str]] deployment_mode: Required. The broker's deployment mode.
564
+ :param pulumi.Input[Union['BrokerEncryptionOptionsArgs', 'BrokerEncryptionOptionsArgsDict']] encryption_options: Encryption options for the broker.
565
+ :param pulumi.Input[Union['BrokerEngineType', _builtins.str]] engine_type: Required. The type of broker engine. Currently, Amazon MQ supports `ACTIVEMQ` and `RABBITMQ` .
572
566
  :param pulumi.Input[_builtins.str] engine_version: The version specified to use. See also EngineVersionCurrent.
573
- :param pulumi.Input[_builtins.str] host_instance_type: The broker's instance type.
567
+ :param pulumi.Input[_builtins.str] host_instance_type: Required. The broker's instance type.
574
568
  :param pulumi.Input[Union['BrokerLdapServerMetadataArgs', 'BrokerLdapServerMetadataArgsDict']] ldap_server_metadata: Optional. The metadata of the LDAP server used to authenticate and authorize connections to the broker. Does not apply to RabbitMQ brokers.
575
569
  :param pulumi.Input[Union['BrokerLogListArgs', 'BrokerLogListArgsDict']] logs: Enables Amazon CloudWatch logging for brokers.
576
- :param pulumi.Input[Union['BrokerMaintenanceWindowArgs', 'BrokerMaintenanceWindowArgsDict']] maintenance_window_start_time: The scheduled time period relative to UTC during which Amazon MQ begins to apply pending updates or patches to the broker.
577
- :param pulumi.Input[_builtins.bool] publicly_accessible: Enables connections from applications outside of the VPC that hosts the broker's subnets.
570
+ :param pulumi.Input[Union['BrokerMaintenanceWindowArgs', 'BrokerMaintenanceWindowArgsDict']] maintenance_window_start_time: The parameters that determine the WeeklyStartTime.
571
+ :param pulumi.Input[_builtins.bool] publicly_accessible: Enables connections from applications outside of the VPC that hosts the broker's subnets. Set to `false` by default, if no value is provided.
578
572
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] security_groups: The list of rules (1 minimum, 125 maximum) that authorize connections to brokers.
579
573
  :param pulumi.Input[Union['BrokerStorageType', _builtins.str]] storage_type: The broker's storage type.
580
- :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] subnet_ids: 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 deployment (ACTIVEMQ) requires two subnets. A CLUSTER_MULTI_AZ deployment (RABBITMQ) has no subnet requirements when deployed with public accessibility, deployment without public accessibility requires at least one subnet.
574
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] subnet_ids: 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.
581
575
 
582
- > 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 enpoints in VPCs that are not owned by your AWS account .
583
- :param pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]] tags: An array of key-value pairs. For more information, see [Using Cost Allocation Tags](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html) in the *Billing and Cost Management User Guide* .
576
+ > If you specify subnets in a [shared VPC](https://docs.aws.amazon.com/vpc/latest/userguide/vpc-sharing.html) 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 .
577
+ :param pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]] tags: Create tags when creating the broker.
584
578
  :param pulumi.Input[Sequence[pulumi.Input[Union['BrokerUserArgs', 'BrokerUserArgsDict']]]] users: Users to configure on the broker.
585
579
  For RabbitMQ, this should be one user, created when the broker is created, and changes thereafter are ignored.
586
580
  For ActiveMQ, changes to anything but Password are detected and will trigger an update,
@@ -915,25 +909,24 @@ class Broker(pulumi.CustomResource):
915
909
  @pulumi.getter(name="autoMinorVersionUpgrade")
916
910
  def auto_minor_version_upgrade(self) -> pulumi.Output[Optional[_builtins.bool]]:
917
911
  """
918
- Enables automatic upgrades to new minor versions for brokers, as new broker engine versions are released and supported by Amazon MQ. Automatic upgrades occur during the scheduled maintenance window of the broker or after a manual broker reboot.
912
+ Enables automatic upgrades to new patch versions for brokers as new versions are released and supported by Amazon MQ. Automatic upgrades occur during the scheduled maintenance window or after a manual broker reboot. Set to `true` by default, if no value is specified.
913
+
914
+ > Must be set to `true` for ActiveMQ brokers version 5.18 and above and for RabbitMQ brokers version 3.13 and above.
919
915
  """
920
916
  return pulumi.get(self, "auto_minor_version_upgrade")
921
917
 
922
918
  @_builtins.property
923
919
  @pulumi.getter(name="awsId")
924
920
  def aws_id(self) -> pulumi.Output[_builtins.str]:
925
- """
926
- Required. The unique ID that Amazon MQ generates for the configuration.
927
- """
928
921
  return pulumi.get(self, "aws_id")
929
922
 
930
923
  @_builtins.property
931
924
  @pulumi.getter(name="brokerName")
932
925
  def broker_name(self) -> pulumi.Output[_builtins.str]:
933
926
  """
934
- The name of the broker. 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.
927
+ 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.
935
928
 
936
- > Do not add personally identifiable information (PII) or other confidential or sensitive information in broker names. Broker names are accessible to other AWS services, including C CloudWatch Logs . Broker names are not intended to be used for private or sensitive data.
929
+ > Do not add personally identifiable information (PII) or other confidential or sensitive information in broker names. Broker names are accessible to other AWS services, including CloudWatch Logs . Broker names are not intended to be used for private or sensitive data.
937
930
  """
938
931
  return pulumi.get(self, "broker_name")
939
932
 
@@ -989,11 +982,7 @@ class Broker(pulumi.CustomResource):
989
982
  @pulumi.getter(name="deploymentMode")
990
983
  def deployment_mode(self) -> pulumi.Output[_builtins.str]:
991
984
  """
992
- The deployment mode of the broker. Available values:
993
-
994
- - `SINGLE_INSTANCE`
995
- - `ACTIVE_STANDBY_MULTI_AZ`
996
- - `CLUSTER_MULTI_AZ`
985
+ Required. The broker's deployment mode.
997
986
  """
998
987
  return pulumi.get(self, "deployment_mode")
999
988
 
@@ -1001,7 +990,7 @@ class Broker(pulumi.CustomResource):
1001
990
  @pulumi.getter(name="encryptionOptions")
1002
991
  def encryption_options(self) -> pulumi.Output[Optional['outputs.BrokerEncryptionOptions']]:
1003
992
  """
1004
- Encryption options for the broker. Does not apply to RabbitMQ brokers.
993
+ Encryption options for the broker.
1005
994
  """
1006
995
  return pulumi.get(self, "encryption_options")
1007
996
 
@@ -1009,7 +998,7 @@ class Broker(pulumi.CustomResource):
1009
998
  @pulumi.getter(name="engineType")
1010
999
  def engine_type(self) -> pulumi.Output[_builtins.str]:
1011
1000
  """
1012
- The type of broker engine. Currently, Amazon MQ supports `ACTIVEMQ` and `RABBITMQ` .
1001
+ Required. The type of broker engine. Currently, Amazon MQ supports `ACTIVEMQ` and `RABBITMQ` .
1013
1002
  """
1014
1003
  return pulumi.get(self, "engine_type")
1015
1004
 
@@ -1033,7 +1022,7 @@ class Broker(pulumi.CustomResource):
1033
1022
  @pulumi.getter(name="hostInstanceType")
1034
1023
  def host_instance_type(self) -> pulumi.Output[_builtins.str]:
1035
1024
  """
1036
- The broker's instance type.
1025
+ Required. The broker's instance type.
1037
1026
  """
1038
1027
  return pulumi.get(self, "host_instance_type")
1039
1028
 
@@ -1067,7 +1056,7 @@ class Broker(pulumi.CustomResource):
1067
1056
  @pulumi.getter(name="maintenanceWindowStartTime")
1068
1057
  def maintenance_window_start_time(self) -> pulumi.Output[Optional['outputs.BrokerMaintenanceWindow']]:
1069
1058
  """
1070
- The scheduled time period relative to UTC during which Amazon MQ begins to apply pending updates or patches to the broker.
1059
+ The parameters that determine the WeeklyStartTime.
1071
1060
  """
1072
1061
  return pulumi.get(self, "maintenance_window_start_time")
1073
1062
 
@@ -1095,7 +1084,7 @@ class Broker(pulumi.CustomResource):
1095
1084
  @pulumi.getter(name="publiclyAccessible")
1096
1085
  def publicly_accessible(self) -> pulumi.Output[_builtins.bool]:
1097
1086
  """
1098
- Enables connections from applications outside of the VPC that hosts the broker's subnets.
1087
+ Enables connections from applications outside of the VPC that hosts the broker's subnets. Set to `false` by default, if no value is provided.
1099
1088
  """
1100
1089
  return pulumi.get(self, "publicly_accessible")
1101
1090
 
@@ -1129,9 +1118,9 @@ class Broker(pulumi.CustomResource):
1129
1118
  @pulumi.getter(name="subnetIds")
1130
1119
  def subnet_ids(self) -> pulumi.Output[Optional[Sequence[_builtins.str]]]:
1131
1120
  """
1132
- 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 deployment (ACTIVEMQ) requires two subnets. A CLUSTER_MULTI_AZ deployment (RABBITMQ) has no subnet requirements when deployed with public accessibility, deployment without public accessibility requires at least one subnet.
1121
+ 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.
1133
1122
 
1134
- > 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 enpoints in VPCs that are not owned by your AWS account .
1123
+ > If you specify subnets in a [shared VPC](https://docs.aws.amazon.com/vpc/latest/userguide/vpc-sharing.html) 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 .
1135
1124
  """
1136
1125
  return pulumi.get(self, "subnet_ids")
1137
1126
 
@@ -1139,7 +1128,7 @@ class Broker(pulumi.CustomResource):
1139
1128
  @pulumi.getter
1140
1129
  def tags(self) -> pulumi.Output[Optional[Sequence['_root_outputs.Tag']]]:
1141
1130
  """
1142
- An array of key-value pairs. For more information, see [Using Cost Allocation Tags](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html) in the *Billing and Cost Management User Guide* .
1131
+ Create tags when creating the broker.
1143
1132
  """
1144
1133
  return pulumi.get(self, "tags")
1145
1134
 
@@ -112,7 +112,9 @@ class GetBrokerResult:
112
112
  @pulumi.getter(name="autoMinorVersionUpgrade")
113
113
  def auto_minor_version_upgrade(self) -> Optional[_builtins.bool]:
114
114
  """
115
- Enables automatic upgrades to new minor versions for brokers, as new broker engine versions are released and supported by Amazon MQ. Automatic upgrades occur during the scheduled maintenance window of the broker or after a manual broker reboot.
115
+ Enables automatic upgrades to new patch versions for brokers as new versions are released and supported by Amazon MQ. Automatic upgrades occur during the scheduled maintenance window or after a manual broker reboot. Set to `true` by default, if no value is specified.
116
+
117
+ > Must be set to `true` for ActiveMQ brokers version 5.18 and above and for RabbitMQ brokers version 3.13 and above.
116
118
  """
117
119
  return pulumi.get(self, "auto_minor_version_upgrade")
118
120
 
@@ -157,16 +159,13 @@ class GetBrokerResult:
157
159
  @pulumi.getter(name="hostInstanceType")
158
160
  def host_instance_type(self) -> Optional[_builtins.str]:
159
161
  """
160
- The broker's instance type.
162
+ Required. The broker's instance type.
161
163
  """
162
164
  return pulumi.get(self, "host_instance_type")
163
165
 
164
166
  @_builtins.property
165
167
  @pulumi.getter
166
168
  def id(self) -> Optional[_builtins.str]:
167
- """
168
- Required. The unique ID that Amazon MQ generates for the configuration.
169
- """
170
169
  return pulumi.get(self, "id")
171
170
 
172
171
  @_builtins.property
@@ -199,7 +198,7 @@ class GetBrokerResult:
199
198
  @pulumi.getter(name="maintenanceWindowStartTime")
200
199
  def maintenance_window_start_time(self) -> Optional['outputs.BrokerMaintenanceWindow']:
201
200
  """
202
- The scheduled time period relative to UTC during which Amazon MQ begins to apply pending updates or patches to the broker.
201
+ The parameters that determine the WeeklyStartTime.
203
202
  """
204
203
  return pulumi.get(self, "maintenance_window_start_time")
205
204
 
@@ -245,7 +244,7 @@ class GetBrokerResult:
245
244
  @pulumi.getter
246
245
  def tags(self) -> Optional[Sequence['_root_outputs.Tag']]:
247
246
  """
248
- An array of key-value pairs. For more information, see [Using Cost Allocation Tags](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html) in the *Billing and Cost Management User Guide* .
247
+ Create tags when creating the broker.
249
248
  """
250
249
  return pulumi.get(self, "tags")
251
250
 
@@ -292,9 +291,6 @@ def get_broker(id: Optional[_builtins.str] = None,
292
291
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetBrokerResult:
293
292
  """
294
293
  Resource type definition for AWS::AmazonMQ::Broker
295
-
296
-
297
- :param _builtins.str id: Required. The unique ID that Amazon MQ generates for the configuration.
298
294
  """
299
295
  __args__ = dict()
300
296
  __args__['id'] = id
@@ -326,9 +322,6 @@ def get_broker_output(id: Optional[pulumi.Input[_builtins.str]] = None,
326
322
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetBrokerResult]:
327
323
  """
328
324
  Resource type definition for AWS::AmazonMQ::Broker
329
-
330
-
331
- :param _builtins.str id: Required. The unique ID that Amazon MQ generates for the configuration.
332
325
  """
333
326
  __args__ = dict()
334
327
  __args__['id'] = id
@@ -30,7 +30,7 @@ class BrokerConfigurationId(dict):
30
30
  id: _builtins.str,
31
31
  revision: _builtins.int):
32
32
  """
33
- :param _builtins.str id: The unique ID that Amazon MQ generates for the configuration.
33
+ :param _builtins.str id: Required. The unique ID that Amazon MQ generates for the configuration.
34
34
  :param _builtins.int revision: The revision number of the configuration.
35
35
  """
36
36
  pulumi.set(__self__, "id", id)
@@ -40,7 +40,7 @@ class BrokerConfigurationId(dict):
40
40
  @pulumi.getter
41
41
  def id(self) -> _builtins.str:
42
42
  """
43
- The unique ID that Amazon MQ generates for the configuration.
43
+ Required. The unique ID that Amazon MQ generates for the configuration.
44
44
  """
45
45
  return pulumi.get(self, "id")
46
46
 
@@ -157,19 +157,6 @@ class BrokerLdapServerMetadata(dict):
157
157
  service_account_password: Optional[_builtins.str] = None,
158
158
  user_role_name: Optional[_builtins.str] = None,
159
159
  user_search_subtree: Optional[_builtins.bool] = None):
160
- """
161
- :param Sequence[_builtins.str] hosts: Specifies the location of the LDAP server such as AWS Directory Service for Microsoft Active Directory . Optional failover server.
162
- :param _builtins.str role_base: The distinguished name of the node in the directory information tree (DIT) to search for roles or groups. For example, `ou=group` , `ou=corp` , `dc=corp` , `dc=example` , `dc=com` .
163
- :param _builtins.str role_search_matching: The LDAP search filter used to find roles within the roleBase. The distinguished name of the user matched by userSearchMatching is substituted into the `{0}` placeholder in the search filter. The client's username is substituted into the `{1}` placeholder. For example, if you set this option to `(member=uid={1})` for the user janedoe, the search filter becomes `(member=uid=janedoe)` after string substitution. It matches all role entries that have a member attribute equal to `uid=janedoe` under the subtree selected by the `RoleBases` .
164
- :param _builtins.str service_account_username: Service account username. A service account is an account in your LDAP server that has access to initiate a connection. For example, `cn=admin` , `ou=corp` , `dc=corp` , `dc=example` , `dc=com` .
165
- :param _builtins.str user_base: Select a particular subtree of the directory information tree (DIT) to search for user entries. The subtree is specified by a DN, which specifies the base node of the subtree. For example, by setting this option to `ou=Users` , `ou=corp` , `dc=corp` , `dc=example` , `dc=com` , the search for user entries is restricted to the subtree beneath `ou=Users` , `ou=corp` , `dc=corp` , `dc=example` , `dc=com` .
166
- :param _builtins.str user_search_matching: The LDAP search filter used to find users within the `userBase` . The client's username is substituted into the `{0}` placeholder in the search filter. For example, if this option is set to `(uid={0})` and the received username is `janedoe` , the search filter becomes `(uid=janedoe)` after string substitution. It will result in matching an entry like `uid=janedoe` , `ou=Users` , `ou=corp` , `dc=corp` , `dc=example` , `dc=com` .
167
- :param _builtins.str role_name: The group name attribute in a role entry whose value is the name of that role. For example, you can specify `cn` for a group entry's common name. If authentication succeeds, then the user is assigned the the value of the `cn` attribute for each role entry that they are a member of.
168
- :param _builtins.bool role_search_subtree: The directory search scope for the role. If set to true, scope is to search the entire subtree.
169
- :param _builtins.str service_account_password: Service account password. A service account is an account in your LDAP server that has access to initiate a connection. For example, `cn=admin` , `dc=corp` , `dc=example` , `dc=com` .
170
- :param _builtins.str user_role_name: The name of the LDAP attribute in the user's directory entry for the user's group membership. In some cases, user roles may be identified by the value of an attribute in the user's directory entry. The `UserRoleName` option allows you to provide the name of this attribute.
171
- :param _builtins.bool user_search_subtree: The directory search scope for the user. If set to true, scope is to search the entire subtree.
172
- """
173
160
  pulumi.set(__self__, "hosts", hosts)
174
161
  pulumi.set(__self__, "role_base", role_base)
175
162
  pulumi.set(__self__, "role_search_matching", role_search_matching)
@@ -190,89 +177,56 @@ class BrokerLdapServerMetadata(dict):
190
177
  @_builtins.property
191
178
  @pulumi.getter
192
179
  def hosts(self) -> Sequence[_builtins.str]:
193
- """
194
- Specifies the location of the LDAP server such as AWS Directory Service for Microsoft Active Directory . Optional failover server.
195
- """
196
180
  return pulumi.get(self, "hosts")
197
181
 
198
182
  @_builtins.property
199
183
  @pulumi.getter(name="roleBase")
200
184
  def role_base(self) -> _builtins.str:
201
- """
202
- The distinguished name of the node in the directory information tree (DIT) to search for roles or groups. For example, `ou=group` , `ou=corp` , `dc=corp` , `dc=example` , `dc=com` .
203
- """
204
185
  return pulumi.get(self, "role_base")
205
186
 
206
187
  @_builtins.property
207
188
  @pulumi.getter(name="roleSearchMatching")
208
189
  def role_search_matching(self) -> _builtins.str:
209
- """
210
- The LDAP search filter used to find roles within the roleBase. The distinguished name of the user matched by userSearchMatching is substituted into the `{0}` placeholder in the search filter. The client's username is substituted into the `{1}` placeholder. For example, if you set this option to `(member=uid={1})` for the user janedoe, the search filter becomes `(member=uid=janedoe)` after string substitution. It matches all role entries that have a member attribute equal to `uid=janedoe` under the subtree selected by the `RoleBases` .
211
- """
212
190
  return pulumi.get(self, "role_search_matching")
213
191
 
214
192
  @_builtins.property
215
193
  @pulumi.getter(name="serviceAccountUsername")
216
194
  def service_account_username(self) -> _builtins.str:
217
- """
218
- Service account username. A service account is an account in your LDAP server that has access to initiate a connection. For example, `cn=admin` , `ou=corp` , `dc=corp` , `dc=example` , `dc=com` .
219
- """
220
195
  return pulumi.get(self, "service_account_username")
221
196
 
222
197
  @_builtins.property
223
198
  @pulumi.getter(name="userBase")
224
199
  def user_base(self) -> _builtins.str:
225
- """
226
- Select a particular subtree of the directory information tree (DIT) to search for user entries. The subtree is specified by a DN, which specifies the base node of the subtree. For example, by setting this option to `ou=Users` , `ou=corp` , `dc=corp` , `dc=example` , `dc=com` , the search for user entries is restricted to the subtree beneath `ou=Users` , `ou=corp` , `dc=corp` , `dc=example` , `dc=com` .
227
- """
228
200
  return pulumi.get(self, "user_base")
229
201
 
230
202
  @_builtins.property
231
203
  @pulumi.getter(name="userSearchMatching")
232
204
  def user_search_matching(self) -> _builtins.str:
233
- """
234
- The LDAP search filter used to find users within the `userBase` . The client's username is substituted into the `{0}` placeholder in the search filter. For example, if this option is set to `(uid={0})` and the received username is `janedoe` , the search filter becomes `(uid=janedoe)` after string substitution. It will result in matching an entry like `uid=janedoe` , `ou=Users` , `ou=corp` , `dc=corp` , `dc=example` , `dc=com` .
235
- """
236
205
  return pulumi.get(self, "user_search_matching")
237
206
 
238
207
  @_builtins.property
239
208
  @pulumi.getter(name="roleName")
240
209
  def role_name(self) -> Optional[_builtins.str]:
241
- """
242
- The group name attribute in a role entry whose value is the name of that role. For example, you can specify `cn` for a group entry's common name. If authentication succeeds, then the user is assigned the the value of the `cn` attribute for each role entry that they are a member of.
243
- """
244
210
  return pulumi.get(self, "role_name")
245
211
 
246
212
  @_builtins.property
247
213
  @pulumi.getter(name="roleSearchSubtree")
248
214
  def role_search_subtree(self) -> Optional[_builtins.bool]:
249
- """
250
- The directory search scope for the role. If set to true, scope is to search the entire subtree.
251
- """
252
215
  return pulumi.get(self, "role_search_subtree")
253
216
 
254
217
  @_builtins.property
255
218
  @pulumi.getter(name="serviceAccountPassword")
256
219
  def service_account_password(self) -> Optional[_builtins.str]:
257
- """
258
- Service account password. A service account is an account in your LDAP server that has access to initiate a connection. For example, `cn=admin` , `dc=corp` , `dc=example` , `dc=com` .
259
- """
260
220
  return pulumi.get(self, "service_account_password")
261
221
 
262
222
  @_builtins.property
263
223
  @pulumi.getter(name="userRoleName")
264
224
  def user_role_name(self) -> Optional[_builtins.str]:
265
- """
266
- The name of the LDAP attribute in the user's directory entry for the user's group membership. In some cases, user roles may be identified by the value of an attribute in the user's directory entry. The `UserRoleName` option allows you to provide the name of this attribute.
267
- """
268
225
  return pulumi.get(self, "user_role_name")
269
226
 
270
227
  @_builtins.property
271
228
  @pulumi.getter(name="userSearchSubtree")
272
229
  def user_search_subtree(self) -> Optional[_builtins.bool]:
273
- """
274
- The directory search scope for the user. If set to true, scope is to search the entire subtree.
275
- """
276
230
  return pulumi.get(self, "user_search_subtree")
277
231
 
278
232
 
@@ -398,11 +352,14 @@ class BrokerUser(dict):
398
352
  groups: Optional[Sequence[_builtins.str]] = None,
399
353
  replication_user: Optional[_builtins.bool] = None):
400
354
  """
401
- :param _builtins.str password: The password of the user. This value must be at least 12 characters long, must contain at least 4 unique characters, and must not contain commas, colons, or equal signs (,:=).
402
- :param _builtins.str username: The username of the broker user. For Amazon MQ for ActiveMQ brokers, this value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). 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.
355
+ :param _builtins.str password: Required. The password of the user. This value must be at least 12 characters long, must contain at least 4 unique characters, and must not contain commas, colons, or equal signs (,:=).
356
+ :param _builtins.str username: The username of the broker user. The following restrictions apply to broker usernames:
357
+
358
+ - 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.
359
+ - 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.
403
360
 
404
361
  > Do not add personally identifiable information (PII) or other confidential or sensitive information in broker usernames. Broker usernames are accessible to other AWS services, including CloudWatch Logs . Broker usernames are not intended to be used for private or sensitive data.
405
- :param _builtins.bool console_access: Enables access to the ActiveMQ web console for the ActiveMQ user. Does not apply to RabbitMQ brokers.
362
+ :param _builtins.bool console_access: Enables access to the ActiveMQ Web Console for the ActiveMQ user. Does not apply to RabbitMQ brokers.
406
363
  :param Sequence[_builtins.str] groups: The list of groups (20 maximum) to which the ActiveMQ user belongs. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long. Does not apply to RabbitMQ brokers.
407
364
  :param _builtins.bool replication_user: Defines if this user is intended for CRDR replication purposes.
408
365
  """
@@ -419,7 +376,7 @@ class BrokerUser(dict):
419
376
  @pulumi.getter
420
377
  def password(self) -> _builtins.str:
421
378
  """
422
- The password of the user. This value must be at least 12 characters long, must contain at least 4 unique characters, and must not contain commas, colons, or equal signs (,:=).
379
+ Required. The password of the user. This value must be at least 12 characters long, must contain at least 4 unique characters, and must not contain commas, colons, or equal signs (,:=).
423
380
  """
424
381
  return pulumi.get(self, "password")
425
382
 
@@ -427,7 +384,10 @@ class BrokerUser(dict):
427
384
  @pulumi.getter
428
385
  def username(self) -> _builtins.str:
429
386
  """
430
- The username of the broker user. For Amazon MQ for ActiveMQ brokers, this value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). 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.
387
+ The username of the broker user. The following restrictions apply to broker usernames:
388
+
389
+ - 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.
390
+ - 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.
431
391
 
432
392
  > Do not add personally identifiable information (PII) or other confidential or sensitive information in broker usernames. Broker usernames are accessible to other AWS services, including CloudWatch Logs . Broker usernames are not intended to be used for private or sensitive data.
433
393
  """
@@ -437,7 +397,7 @@ class BrokerUser(dict):
437
397
  @pulumi.getter(name="consoleAccess")
438
398
  def console_access(self) -> Optional[_builtins.bool]:
439
399
  """
440
- Enables access to the ActiveMQ web console for the ActiveMQ user. Does not apply to RabbitMQ brokers.
400
+ Enables access to the ActiveMQ Web Console for the ActiveMQ user. Does not apply to RabbitMQ brokers.
441
401
  """
442
402
  return pulumi.get(self, "console_access")
443
403
 
@@ -106,6 +106,8 @@ __all__ = [
106
106
  'JobDefinitionRepositoryCredentialsArgsDict',
107
107
  'JobDefinitionResourceRequirementArgs',
108
108
  'JobDefinitionResourceRequirementArgsDict',
109
+ 'JobDefinitionResourceRetentionPolicyArgs',
110
+ 'JobDefinitionResourceRetentionPolicyArgsDict',
109
111
  'JobDefinitionRetryStrategyArgs',
110
112
  'JobDefinitionRetryStrategyArgsDict',
111
113
  'JobDefinitionRuntimePlatformArgs',
@@ -5682,6 +5684,29 @@ class JobDefinitionResourceRequirementArgs:
5682
5684
  pulumi.set(self, "value", value)
5683
5685
 
5684
5686
 
5687
+ if not MYPY:
5688
+ class JobDefinitionResourceRetentionPolicyArgsDict(TypedDict):
5689
+ skip_deregister_on_update: NotRequired[pulumi.Input[_builtins.bool]]
5690
+ elif False:
5691
+ JobDefinitionResourceRetentionPolicyArgsDict: TypeAlias = Mapping[str, Any]
5692
+
5693
+ @pulumi.input_type
5694
+ class JobDefinitionResourceRetentionPolicyArgs:
5695
+ def __init__(__self__, *,
5696
+ skip_deregister_on_update: Optional[pulumi.Input[_builtins.bool]] = None):
5697
+ if skip_deregister_on_update is not None:
5698
+ pulumi.set(__self__, "skip_deregister_on_update", skip_deregister_on_update)
5699
+
5700
+ @_builtins.property
5701
+ @pulumi.getter(name="skipDeregisterOnUpdate")
5702
+ def skip_deregister_on_update(self) -> Optional[pulumi.Input[_builtins.bool]]:
5703
+ return pulumi.get(self, "skip_deregister_on_update")
5704
+
5705
+ @skip_deregister_on_update.setter
5706
+ def skip_deregister_on_update(self, value: Optional[pulumi.Input[_builtins.bool]]):
5707
+ pulumi.set(self, "skip_deregister_on_update", value)
5708
+
5709
+
5685
5710
  if not MYPY:
5686
5711
  class JobDefinitionRetryStrategyArgsDict(TypedDict):
5687
5712
  attempts: NotRequired[pulumi.Input[_builtins.int]]