pulumi-aws-native 1.38.0a1761284362__py3-none-any.whl → 1.39.0a1762409198__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 (187) hide show
  1. pulumi_aws_native/__init__.py +33 -1
  2. pulumi_aws_native/_enums.py +4 -0
  3. pulumi_aws_native/amazonmq/_enums.py +4 -12
  4. pulumi_aws_native/amazonmq/_inputs.py +21 -91
  5. pulumi_aws_native/amazonmq/broker.py +56 -67
  6. pulumi_aws_native/amazonmq/get_broker.py +6 -13
  7. pulumi_aws_native/amazonmq/outputs.py +14 -54
  8. pulumi_aws_native/applicationsignals/get_grouping_configuration.py +9 -0
  9. pulumi_aws_native/applicationsignals/grouping_configuration.py +3 -0
  10. pulumi_aws_native/appstream/get_image_builder.py +0 -4
  11. pulumi_aws_native/appstream/image_builder.py +0 -16
  12. pulumi_aws_native/aps/__init__.py +2 -0
  13. pulumi_aws_native/aps/_inputs.py +290 -0
  14. pulumi_aws_native/aps/anomaly_detector.py +318 -0
  15. pulumi_aws_native/aps/get_anomaly_detector.py +149 -0
  16. pulumi_aws_native/aps/outputs.py +229 -0
  17. pulumi_aws_native/arcregionswitch/get_plan.py +0 -3
  18. pulumi_aws_native/arcregionswitch/plan.py +0 -3
  19. pulumi_aws_native/batch/_inputs.py +34 -0
  20. pulumi_aws_native/batch/job_definition.py +29 -0
  21. pulumi_aws_native/batch/outputs.py +37 -0
  22. pulumi_aws_native/bedrock/automated_reasoning_policy.py +51 -0
  23. pulumi_aws_native/bedrock/get_automated_reasoning_policy.py +12 -1
  24. pulumi_aws_native/bedrockagentcore/__init__.py +2 -0
  25. pulumi_aws_native/bedrockagentcore/_enums.py +1 -0
  26. pulumi_aws_native/bedrockagentcore/get_workload_identity.py +134 -0
  27. pulumi_aws_native/bedrockagentcore/workload_identity.py +217 -0
  28. pulumi_aws_native/ce/_enums.py +3 -0
  29. pulumi_aws_native/cleanrooms/configured_table.py +4 -4
  30. pulumi_aws_native/cleanrooms/get_configured_table.py +1 -1
  31. pulumi_aws_native/cloudfront/_inputs.py +14 -1
  32. pulumi_aws_native/cloudfront/get_vpc_origin.py +12 -1
  33. pulumi_aws_native/cloudfront/outputs.py +11 -1
  34. pulumi_aws_native/cloudfront/vpc_origin.py +7 -0
  35. pulumi_aws_native/cognito/__init__.py +2 -0
  36. pulumi_aws_native/cognito/_enums.py +12 -0
  37. pulumi_aws_native/cognito/get_terms.py +117 -0
  38. pulumi_aws_native/cognito/terms.py +236 -0
  39. pulumi_aws_native/connect/_enums.py +68 -0
  40. pulumi_aws_native/connect/_inputs.py +581 -1
  41. pulumi_aws_native/connect/email_address.py +31 -0
  42. pulumi_aws_native/connect/get_email_address.py +16 -1
  43. pulumi_aws_native/connect/outputs.py +473 -3
  44. pulumi_aws_native/connectcampaignsv2/_enums.py +9 -0
  45. pulumi_aws_native/connectcampaignsv2/_inputs.py +127 -0
  46. pulumi_aws_native/connectcampaignsv2/outputs.py +118 -0
  47. pulumi_aws_native/datazone/_inputs.py +81 -0
  48. pulumi_aws_native/datazone/connection.py +83 -26
  49. pulumi_aws_native/datazone/outputs.py +84 -0
  50. pulumi_aws_native/ec2/__init__.py +2 -0
  51. pulumi_aws_native/ec2/_enums.py +19 -0
  52. pulumi_aws_native/ec2/_inputs.py +15 -12
  53. pulumi_aws_native/ec2/capacity_manager_data_export.py +259 -0
  54. pulumi_aws_native/ec2/capacity_reservation.py +6 -6
  55. pulumi_aws_native/ec2/get_capacity_manager_data_export.py +92 -0
  56. pulumi_aws_native/ec2/get_capacity_reservation.py +2 -2
  57. pulumi_aws_native/ec2/get_nat_gateway.py +3 -0
  58. pulumi_aws_native/ec2/get_volume.py +37 -15
  59. pulumi_aws_native/ec2/nat_gateway.py +11 -0
  60. pulumi_aws_native/ec2/outputs.py +10 -8
  61. pulumi_aws_native/ec2/volume.py +115 -74
  62. pulumi_aws_native/ecr/_inputs.py +2 -2
  63. pulumi_aws_native/ecr/get_repository.py +3 -2
  64. pulumi_aws_native/ecr/outputs.py +2 -2
  65. pulumi_aws_native/ecr/repository.py +12 -8
  66. pulumi_aws_native/ecs/_enums.py +24 -0
  67. pulumi_aws_native/ecs/_inputs.py +230 -23
  68. pulumi_aws_native/ecs/outputs.py +195 -15
  69. pulumi_aws_native/ecs/service.py +4 -0
  70. pulumi_aws_native/eks/_enums.py +11 -0
  71. pulumi_aws_native/eks/_inputs.py +199 -1
  72. pulumi_aws_native/eks/get_nodegroup.py +1 -0
  73. pulumi_aws_native/eks/nodegroup.py +1 -0
  74. pulumi_aws_native/eks/outputs.py +169 -1
  75. pulumi_aws_native/elasticloadbalancingv2/_inputs.py +213 -34
  76. pulumi_aws_native/elasticloadbalancingv2/get_listener_rule.py +15 -4
  77. pulumi_aws_native/elasticloadbalancingv2/listener_rule.py +22 -1
  78. pulumi_aws_native/elasticloadbalancingv2/load_balancer.py +4 -4
  79. pulumi_aws_native/elasticloadbalancingv2/outputs.py +187 -24
  80. pulumi_aws_native/events/__init__.py +2 -0
  81. pulumi_aws_native/events/_inputs.py +78 -0
  82. pulumi_aws_native/events/event_bus_policy.py +275 -0
  83. pulumi_aws_native/events/get_event_bus_policy.py +85 -0
  84. pulumi_aws_native/events/outputs.py +48 -0
  85. pulumi_aws_native/gameliftstreams/application.py +4 -4
  86. pulumi_aws_native/glue/__init__.py +2 -0
  87. pulumi_aws_native/glue/_inputs.py +134 -0
  88. pulumi_aws_native/glue/get_integration_resource_property.py +127 -0
  89. pulumi_aws_native/glue/integration_resource_property.py +229 -0
  90. pulumi_aws_native/glue/outputs.py +122 -0
  91. pulumi_aws_native/imagebuilder/_inputs.py +95 -0
  92. pulumi_aws_native/imagebuilder/get_image_pipeline.py +15 -1
  93. pulumi_aws_native/imagebuilder/image.py +58 -0
  94. pulumi_aws_native/imagebuilder/image_pipeline.py +10 -0
  95. pulumi_aws_native/imagebuilder/outputs.py +95 -0
  96. pulumi_aws_native/kendra/_inputs.py +21 -21
  97. pulumi_aws_native/kendra/outputs.py +14 -14
  98. pulumi_aws_native/lambda_/permission.py +4 -4
  99. pulumi_aws_native/mediapackagev2/_enums.py +15 -0
  100. pulumi_aws_native/mediapackagev2/_inputs.py +103 -0
  101. pulumi_aws_native/mediapackagev2/get_origin_endpoint.py +26 -1
  102. pulumi_aws_native/mediapackagev2/origin_endpoint.py +36 -0
  103. pulumi_aws_native/mediapackagev2/outputs.py +88 -0
  104. pulumi_aws_native/neptune/db_instance.py +29 -0
  105. pulumi_aws_native/neptune/get_db_instance.py +15 -1
  106. pulumi_aws_native/networkfirewall/_enums.py +2 -0
  107. pulumi_aws_native/networkfirewall/_inputs.py +20 -0
  108. pulumi_aws_native/networkfirewall/firewall.py +10 -0
  109. pulumi_aws_native/networkfirewall/get_firewall.py +15 -1
  110. pulumi_aws_native/networkfirewall/outputs.py +14 -0
  111. pulumi_aws_native/observabilityadmin/_enums.py +9 -0
  112. pulumi_aws_native/observabilityadmin/_inputs.py +252 -0
  113. pulumi_aws_native/observabilityadmin/get_organization_centralization_rule.py +9 -0
  114. pulumi_aws_native/observabilityadmin/get_organization_telemetry_rule.py +3 -0
  115. pulumi_aws_native/observabilityadmin/get_telemetry_rule.py +3 -0
  116. pulumi_aws_native/observabilityadmin/organization_centralization_rule.py +11 -0
  117. pulumi_aws_native/observabilityadmin/organization_telemetry_rule.py +8 -0
  118. pulumi_aws_native/observabilityadmin/outputs.py +150 -0
  119. pulumi_aws_native/observabilityadmin/telemetry_rule.py +8 -0
  120. pulumi_aws_native/organizations/_enums.py +13 -0
  121. pulumi_aws_native/organizations/account.py +10 -0
  122. pulumi_aws_native/organizations/get_account.py +15 -1
  123. pulumi_aws_native/osis/_inputs.py +24 -0
  124. pulumi_aws_native/osis/get_pipeline.py +26 -1
  125. pulumi_aws_native/osis/outputs.py +13 -0
  126. pulumi_aws_native/osis/pipeline.py +50 -0
  127. pulumi_aws_native/pulumi-plugin.json +1 -1
  128. pulumi_aws_native/qbusiness/_inputs.py +3 -3
  129. pulumi_aws_native/qbusiness/application.py +4 -4
  130. pulumi_aws_native/qbusiness/outputs.py +2 -2
  131. pulumi_aws_native/quicksight/_enums.py +1 -1
  132. pulumi_aws_native/quicksight/_inputs.py +12 -12
  133. pulumi_aws_native/quicksight/outputs.py +8 -8
  134. pulumi_aws_native/rds/db_cluster.py +24 -40
  135. pulumi_aws_native/route53/_inputs.py +21 -3
  136. pulumi_aws_native/route53/outputs.py +14 -2
  137. pulumi_aws_native/rtbfabric/__init__.py +17 -0
  138. pulumi_aws_native/rtbfabric/_enums.py +89 -0
  139. pulumi_aws_native/rtbfabric/_inputs.py +390 -0
  140. pulumi_aws_native/rtbfabric/get_link.py +199 -0
  141. pulumi_aws_native/rtbfabric/get_requester_gateway.py +217 -0
  142. pulumi_aws_native/rtbfabric/get_responder_gateway.py +255 -0
  143. pulumi_aws_native/rtbfabric/link.py +344 -0
  144. pulumi_aws_native/rtbfabric/outputs.py +363 -0
  145. pulumi_aws_native/rtbfabric/requester_gateway.py +303 -0
  146. pulumi_aws_native/rtbfabric/responder_gateway.py +431 -0
  147. pulumi_aws_native/s3/_enums.py +1 -1
  148. pulumi_aws_native/s3/_inputs.py +11 -5
  149. pulumi_aws_native/s3/access_grants_location.py +15 -13
  150. pulumi_aws_native/s3/outputs.py +10 -4
  151. pulumi_aws_native/s3vectors/__init__.py +17 -0
  152. pulumi_aws_native/s3vectors/_enums.py +39 -0
  153. pulumi_aws_native/s3vectors/_inputs.py +138 -0
  154. pulumi_aws_native/s3vectors/get_index.py +99 -0
  155. pulumi_aws_native/s3vectors/get_vector_bucket.py +99 -0
  156. pulumi_aws_native/s3vectors/get_vector_bucket_policy.py +78 -0
  157. pulumi_aws_native/s3vectors/index.py +367 -0
  158. pulumi_aws_native/s3vectors/outputs.py +129 -0
  159. pulumi_aws_native/s3vectors/vector_bucket.py +199 -0
  160. pulumi_aws_native/s3vectors/vector_bucket_policy.py +188 -0
  161. pulumi_aws_native/sagemaker/_enums.py +12 -171
  162. pulumi_aws_native/sagemaker/_inputs.py +81 -5
  163. pulumi_aws_native/sagemaker/cluster.py +21 -0
  164. pulumi_aws_native/sagemaker/get_cluster.py +15 -4
  165. pulumi_aws_native/sagemaker/outputs.py +67 -3
  166. pulumi_aws_native/ssm/_inputs.py +15 -3
  167. pulumi_aws_native/ssm/outputs.py +10 -2
  168. pulumi_aws_native/ssmquicksetup/get_lifecycle_automation.py +6 -0
  169. pulumi_aws_native/ssmquicksetup/lifecycle_automation.py +16 -0
  170. pulumi_aws_native/sso/_enums.py +1 -1
  171. pulumi_aws_native/sso/assignment.py +8 -8
  172. pulumi_aws_native/synthetics/_inputs.py +52 -12
  173. pulumi_aws_native/synthetics/outputs.py +35 -8
  174. pulumi_aws_native/transfer/_enums.py +15 -0
  175. pulumi_aws_native/transfer/_inputs.py +95 -3
  176. pulumi_aws_native/transfer/connector.py +86 -19
  177. pulumi_aws_native/transfer/get_connector.py +43 -1
  178. pulumi_aws_native/transfer/outputs.py +92 -2
  179. pulumi_aws_native/wafv2/_inputs.py +72 -0
  180. pulumi_aws_native/wafv2/get_web_acl.py +15 -1
  181. pulumi_aws_native/wafv2/outputs.py +45 -0
  182. pulumi_aws_native/wafv2/web_acl.py +29 -0
  183. pulumi_aws_native/wisdom/_enums.py +4 -0
  184. {pulumi_aws_native-1.38.0a1761284362.dist-info → pulumi_aws_native-1.39.0a1762409198.dist-info}/METADATA +1 -1
  185. {pulumi_aws_native-1.38.0a1761284362.dist-info → pulumi_aws_native-1.39.0a1762409198.dist-info}/RECORD +187 -155
  186. {pulumi_aws_native-1.38.0a1761284362.dist-info → pulumi_aws_native-1.39.0a1762409198.dist-info}/WHEEL +0 -0
  187. {pulumi_aws_native-1.38.0a1761284362.dist-info → pulumi_aws_native-1.39.0a1762409198.dist-info}/top_level.txt +0 -0
@@ -57,6 +57,10 @@ __all__ = [
57
57
  'ListenerRuleQueryStringKeyValueArgsDict',
58
58
  'ListenerRuleRedirectConfigArgs',
59
59
  'ListenerRuleRedirectConfigArgsDict',
60
+ 'ListenerRuleRewriteConfigObjectArgs',
61
+ 'ListenerRuleRewriteConfigObjectArgsDict',
62
+ 'ListenerRuleRewriteConfigArgs',
63
+ 'ListenerRuleRewriteConfigArgsDict',
60
64
  'ListenerRuleRuleConditionArgs',
61
65
  'ListenerRuleRuleConditionArgsDict',
62
66
  'ListenerRuleSourceIpConfigArgs',
@@ -65,6 +69,8 @@ __all__ = [
65
69
  'ListenerRuleTargetGroupStickinessConfigArgsDict',
66
70
  'ListenerRuleTargetGroupTupleArgs',
67
71
  'ListenerRuleTargetGroupTupleArgsDict',
72
+ 'ListenerRuleTransformArgs',
73
+ 'ListenerRuleTransformArgsDict',
68
74
  'ListenerTargetGroupStickinessConfigArgs',
69
75
  'ListenerTargetGroupStickinessConfigArgsDict',
70
76
  'ListenerTargetGroupTupleArgs',
@@ -110,7 +116,8 @@ if not MYPY:
110
116
  """
111
117
  forward_config: NotRequired[pulumi.Input['ListenerForwardConfigArgsDict']]
112
118
  """
113
- Information for creating an action that distributes requests among one or more target groups. For Network Load Balancers, you can specify a single target group. Specify only when ``Type`` is ``forward``. If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
119
+ Information for creating an action that distributes requests among multiple target groups. Specify only when ``Type`` is ``forward``.
120
+ If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
114
121
  """
115
122
  order: NotRequired[pulumi.Input[_builtins.int]]
116
123
  """
@@ -122,7 +129,7 @@ if not MYPY:
122
129
  """
123
130
  target_group_arn: NotRequired[pulumi.Input[_builtins.str]]
124
131
  """
125
- The Amazon Resource Name (ARN) of the target group. Specify only when ``Type`` is ``forward`` and you want to route to a single target group. To route to one or more target groups, use ``ForwardConfig`` instead.
132
+ The Amazon Resource Name (ARN) of the target group. Specify only when ``Type`` is ``forward`` and you want to route to a single target group. To route to multiple target groups, you must use ``ForwardConfig`` instead.
126
133
  """
127
134
  elif False:
128
135
  ListenerActionArgsDict: TypeAlias = Mapping[str, Any]
@@ -144,10 +151,11 @@ class ListenerActionArgs:
144
151
  :param pulumi.Input['ListenerAuthenticateCognitoConfigArgs'] authenticate_cognito_config: [HTTPS listeners] Information for using Amazon Cognito to authenticate users. Specify only when ``Type`` is ``authenticate-cognito``.
145
152
  :param pulumi.Input['ListenerAuthenticateOidcConfigArgs'] authenticate_oidc_config: [HTTPS listeners] Information about an identity provider that is compliant with OpenID Connect (OIDC). Specify only when ``Type`` is ``authenticate-oidc``.
146
153
  :param pulumi.Input['ListenerFixedResponseConfigArgs'] fixed_response_config: [Application Load Balancer] Information for creating an action that returns a custom HTTP response. Specify only when ``Type`` is ``fixed-response``.
147
- :param pulumi.Input['ListenerForwardConfigArgs'] forward_config: Information for creating an action that distributes requests among one or more target groups. For Network Load Balancers, you can specify a single target group. Specify only when ``Type`` is ``forward``. If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
154
+ :param pulumi.Input['ListenerForwardConfigArgs'] forward_config: Information for creating an action that distributes requests among multiple target groups. Specify only when ``Type`` is ``forward``.
155
+ If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
148
156
  :param pulumi.Input[_builtins.int] order: The order for the action. This value is required for rules with multiple actions. The action with the lowest value for order is performed first.
149
157
  :param pulumi.Input['ListenerRedirectConfigArgs'] redirect_config: [Application Load Balancer] Information for creating a redirect action. Specify only when ``Type`` is ``redirect``.
150
- :param pulumi.Input[_builtins.str] target_group_arn: The Amazon Resource Name (ARN) of the target group. Specify only when ``Type`` is ``forward`` and you want to route to a single target group. To route to one or more target groups, use ``ForwardConfig`` instead.
158
+ :param pulumi.Input[_builtins.str] target_group_arn: The Amazon Resource Name (ARN) of the target group. Specify only when ``Type`` is ``forward`` and you want to route to a single target group. To route to multiple target groups, you must use ``ForwardConfig`` instead.
151
159
  """
152
160
  pulumi.set(__self__, "type", type)
153
161
  if authenticate_cognito_config is not None:
@@ -217,7 +225,8 @@ class ListenerActionArgs:
217
225
  @pulumi.getter(name="forwardConfig")
218
226
  def forward_config(self) -> Optional[pulumi.Input['ListenerForwardConfigArgs']]:
219
227
  """
220
- Information for creating an action that distributes requests among one or more target groups. For Network Load Balancers, you can specify a single target group. Specify only when ``Type`` is ``forward``. If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
228
+ Information for creating an action that distributes requests among multiple target groups. Specify only when ``Type`` is ``forward``.
229
+ If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
221
230
  """
222
231
  return pulumi.get(self, "forward_config")
223
232
 
@@ -253,7 +262,7 @@ class ListenerActionArgs:
253
262
  @pulumi.getter(name="targetGroupArn")
254
263
  def target_group_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
255
264
  """
256
- The Amazon Resource Name (ARN) of the target group. Specify only when ``Type`` is ``forward`` and you want to route to a single target group. To route to one or more target groups, use ``ForwardConfig`` instead.
265
+ The Amazon Resource Name (ARN) of the target group. Specify only when ``Type`` is ``forward`` and you want to route to a single target group. To route to multiple target groups, you must use ``ForwardConfig`` instead.
257
266
  """
258
267
  return pulumi.get(self, "target_group_arn")
259
268
 
@@ -952,7 +961,8 @@ class ListenerFixedResponseConfigArgs:
952
961
  if not MYPY:
953
962
  class ListenerForwardConfigArgsDict(TypedDict):
954
963
  """
955
- Information for creating an action that distributes requests among one or more target groups. For Network Load Balancers, you can specify a single target group. Specify only when ``Type`` is ``forward``. If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
964
+ Information for creating an action that distributes requests among multiple target groups. Specify only when ``Type`` is ``forward``.
965
+ If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
956
966
  """
957
967
  target_group_stickiness_config: NotRequired[pulumi.Input['ListenerTargetGroupStickinessConfigArgsDict']]
958
968
  """
@@ -971,7 +981,8 @@ class ListenerForwardConfigArgs:
971
981
  target_group_stickiness_config: Optional[pulumi.Input['ListenerTargetGroupStickinessConfigArgs']] = None,
972
982
  target_groups: Optional[pulumi.Input[Sequence[pulumi.Input['ListenerTargetGroupTupleArgs']]]] = None):
973
983
  """
974
- Information for creating an action that distributes requests among one or more target groups. For Network Load Balancers, you can specify a single target group. Specify only when ``Type`` is ``forward``. If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
984
+ Information for creating an action that distributes requests among multiple target groups. Specify only when ``Type`` is ``forward``.
985
+ If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
975
986
  :param pulumi.Input['ListenerTargetGroupStickinessConfigArgs'] target_group_stickiness_config: Information about the target group stickiness for a rule.
976
987
  :param pulumi.Input[Sequence[pulumi.Input['ListenerTargetGroupTupleArgs']]] target_groups: Information about how traffic will be distributed between multiple target groups in a forward rule.
977
988
  """
@@ -1277,7 +1288,8 @@ if not MYPY:
1277
1288
  """
1278
1289
  forward_config: NotRequired[pulumi.Input['ListenerRuleForwardConfigArgsDict']]
1279
1290
  """
1280
- Information for creating an action that distributes requests among one or more target groups. For Network Load Balancers, you can specify a single target group. Specify only when ``Type`` is ``forward``. If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
1291
+ Information for creating an action that distributes requests among multiple target groups. Specify only when ``Type`` is ``forward``.
1292
+ If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
1281
1293
  """
1282
1294
  order: NotRequired[pulumi.Input[_builtins.int]]
1283
1295
  """
@@ -1289,7 +1301,7 @@ if not MYPY:
1289
1301
  """
1290
1302
  target_group_arn: NotRequired[pulumi.Input[_builtins.str]]
1291
1303
  """
1292
- The Amazon Resource Name (ARN) of the target group. Specify only when ``Type`` is ``forward`` and you want to route to a single target group. To route to one or more target groups, use ``ForwardConfig`` instead.
1304
+ The Amazon Resource Name (ARN) of the target group. Specify only when ``Type`` is ``forward`` and you want to route to a single target group. To route to multiple target groups, you must use ``ForwardConfig`` instead.
1293
1305
  """
1294
1306
  elif False:
1295
1307
  ListenerRuleActionArgsDict: TypeAlias = Mapping[str, Any]
@@ -1311,10 +1323,11 @@ class ListenerRuleActionArgs:
1311
1323
  :param pulumi.Input['ListenerRuleAuthenticateCognitoConfigArgs'] authenticate_cognito_config: [HTTPS listeners] Information for using Amazon Cognito to authenticate users. Specify only when ``Type`` is ``authenticate-cognito``.
1312
1324
  :param pulumi.Input['ListenerRuleAuthenticateOidcConfigArgs'] authenticate_oidc_config: [HTTPS listeners] Information about an identity provider that is compliant with OpenID Connect (OIDC). Specify only when ``Type`` is ``authenticate-oidc``.
1313
1325
  :param pulumi.Input['ListenerRuleFixedResponseConfigArgs'] fixed_response_config: [Application Load Balancer] Information for creating an action that returns a custom HTTP response. Specify only when ``Type`` is ``fixed-response``.
1314
- :param pulumi.Input['ListenerRuleForwardConfigArgs'] forward_config: Information for creating an action that distributes requests among one or more target groups. For Network Load Balancers, you can specify a single target group. Specify only when ``Type`` is ``forward``. If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
1326
+ :param pulumi.Input['ListenerRuleForwardConfigArgs'] forward_config: Information for creating an action that distributes requests among multiple target groups. Specify only when ``Type`` is ``forward``.
1327
+ If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
1315
1328
  :param pulumi.Input[_builtins.int] order: The order for the action. This value is required for rules with multiple actions. The action with the lowest value for order is performed first.
1316
1329
  :param pulumi.Input['ListenerRuleRedirectConfigArgs'] redirect_config: [Application Load Balancer] Information for creating a redirect action. Specify only when ``Type`` is ``redirect``.
1317
- :param pulumi.Input[_builtins.str] target_group_arn: The Amazon Resource Name (ARN) of the target group. Specify only when ``Type`` is ``forward`` and you want to route to a single target group. To route to one or more target groups, use ``ForwardConfig`` instead.
1330
+ :param pulumi.Input[_builtins.str] target_group_arn: The Amazon Resource Name (ARN) of the target group. Specify only when ``Type`` is ``forward`` and you want to route to a single target group. To route to multiple target groups, you must use ``ForwardConfig`` instead.
1318
1331
  """
1319
1332
  pulumi.set(__self__, "type", type)
1320
1333
  if authenticate_cognito_config is not None:
@@ -1384,7 +1397,8 @@ class ListenerRuleActionArgs:
1384
1397
  @pulumi.getter(name="forwardConfig")
1385
1398
  def forward_config(self) -> Optional[pulumi.Input['ListenerRuleForwardConfigArgs']]:
1386
1399
  """
1387
- Information for creating an action that distributes requests among one or more target groups. For Network Load Balancers, you can specify a single target group. Specify only when ``Type`` is ``forward``. If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
1400
+ Information for creating an action that distributes requests among multiple target groups. Specify only when ``Type`` is ``forward``.
1401
+ If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
1388
1402
  """
1389
1403
  return pulumi.get(self, "forward_config")
1390
1404
 
@@ -1420,7 +1434,7 @@ class ListenerRuleActionArgs:
1420
1434
  @pulumi.getter(name="targetGroupArn")
1421
1435
  def target_group_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
1422
1436
  """
1423
- The Amazon Resource Name (ARN) of the target group. Specify only when ``Type`` is ``forward`` and you want to route to a single target group. To route to one or more target groups, use ``ForwardConfig`` instead.
1437
+ The Amazon Resource Name (ARN) of the target group. Specify only when ``Type`` is ``forward`` and you want to route to a single target group. To route to multiple target groups, you must use ``ForwardConfig`` instead.
1424
1438
  """
1425
1439
  return pulumi.get(self, "target_group_arn")
1426
1440
 
@@ -1958,7 +1972,8 @@ class ListenerRuleFixedResponseConfigArgs:
1958
1972
  if not MYPY:
1959
1973
  class ListenerRuleForwardConfigArgsDict(TypedDict):
1960
1974
  """
1961
- Information for creating an action that distributes requests among one or more target groups. For Network Load Balancers, you can specify a single target group. Specify only when ``Type`` is ``forward``. If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
1975
+ Information for creating an action that distributes requests among multiple target groups. Specify only when ``Type`` is ``forward``.
1976
+ If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
1962
1977
  """
1963
1978
  target_group_stickiness_config: NotRequired[pulumi.Input['ListenerRuleTargetGroupStickinessConfigArgsDict']]
1964
1979
  """
@@ -1977,7 +1992,8 @@ class ListenerRuleForwardConfigArgs:
1977
1992
  target_group_stickiness_config: Optional[pulumi.Input['ListenerRuleTargetGroupStickinessConfigArgs']] = None,
1978
1993
  target_groups: Optional[pulumi.Input[Sequence[pulumi.Input['ListenerRuleTargetGroupTupleArgs']]]] = None):
1979
1994
  """
1980
- Information for creating an action that distributes requests among one or more target groups. For Network Load Balancers, you can specify a single target group. Specify only when ``Type`` is ``forward``. If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
1995
+ Information for creating an action that distributes requests among multiple target groups. Specify only when ``Type`` is ``forward``.
1996
+ If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
1981
1997
  :param pulumi.Input['ListenerRuleTargetGroupStickinessConfigArgs'] target_group_stickiness_config: Information about the target group stickiness for a rule.
1982
1998
  :param pulumi.Input[Sequence[pulumi.Input['ListenerRuleTargetGroupTupleArgs']]] target_groups: Information about how traffic will be distributed between multiple target groups in a forward rule.
1983
1999
  """
@@ -2016,9 +2032,10 @@ if not MYPY:
2016
2032
  """
2017
2033
  Information about a host header condition.
2018
2034
  """
2035
+ regex_values: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
2019
2036
  values: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
2020
2037
  """
2021
- The host names. The maximum size of each name is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). You must include at least one "." character. You can include only alphabetical characters after the final "." character.
2038
+ The host names. The maximum length of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). You must include at least one "." character. You can include only alphabetical characters after the final "." character.
2022
2039
  If you specify multiple strings, the condition is satisfied if one of the strings matches the host name.
2023
2040
  """
2024
2041
  elif False:
@@ -2027,20 +2044,32 @@ elif False:
2027
2044
  @pulumi.input_type
2028
2045
  class ListenerRuleHostHeaderConfigArgs:
2029
2046
  def __init__(__self__, *,
2047
+ regex_values: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
2030
2048
  values: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
2031
2049
  """
2032
2050
  Information about a host header condition.
2033
- :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values: The host names. The maximum size of each name is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). You must include at least one "." character. You can include only alphabetical characters after the final "." character.
2051
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values: The host names. The maximum length of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). You must include at least one "." character. You can include only alphabetical characters after the final "." character.
2034
2052
  If you specify multiple strings, the condition is satisfied if one of the strings matches the host name.
2035
2053
  """
2054
+ if regex_values is not None:
2055
+ pulumi.set(__self__, "regex_values", regex_values)
2036
2056
  if values is not None:
2037
2057
  pulumi.set(__self__, "values", values)
2038
2058
 
2059
+ @_builtins.property
2060
+ @pulumi.getter(name="regexValues")
2061
+ def regex_values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
2062
+ return pulumi.get(self, "regex_values")
2063
+
2064
+ @regex_values.setter
2065
+ def regex_values(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
2066
+ pulumi.set(self, "regex_values", value)
2067
+
2039
2068
  @_builtins.property
2040
2069
  @pulumi.getter
2041
2070
  def values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
2042
2071
  """
2043
- The host names. The maximum size of each name is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). You must include at least one "." character. You can include only alphabetical characters after the final "." character.
2072
+ The host names. The maximum length of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). You must include at least one "." character. You can include only alphabetical characters after the final "." character.
2044
2073
  If you specify multiple strings, the condition is satisfied if one of the strings matches the host name.
2045
2074
  """
2046
2075
  return pulumi.get(self, "values")
@@ -2060,9 +2089,10 @@ if not MYPY:
2060
2089
  """
2061
2090
  The name of the HTTP header field. The maximum size is 40 characters. The header name is case insensitive. The allowed characters are specified by RFC 7230. Wildcards are not supported.
2062
2091
  """
2092
+ regex_values: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
2063
2093
  values: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
2064
2094
  """
2065
- The strings to compare against the value of the HTTP header. The maximum size of each string is 128 characters. The comparison strings are case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).
2095
+ The strings to compare against the value of the HTTP header. The maximum length of each string is 128 characters. The comparison strings are case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).
2066
2096
  If the same header appears multiple times in the request, we search them in order until a match is found.
2067
2097
  If you specify multiple strings, the condition is satisfied if one of the strings matches the value of the HTTP header. To require that all of the strings are a match, create one condition per string.
2068
2098
  """
@@ -2073,17 +2103,20 @@ elif False:
2073
2103
  class ListenerRuleHttpHeaderConfigArgs:
2074
2104
  def __init__(__self__, *,
2075
2105
  http_header_name: Optional[pulumi.Input[_builtins.str]] = None,
2106
+ regex_values: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
2076
2107
  values: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
2077
2108
  """
2078
2109
  Information about an HTTP header condition.
2079
2110
  There is a set of standard HTTP header fields. You can also define custom HTTP header fields.
2080
2111
  :param pulumi.Input[_builtins.str] http_header_name: The name of the HTTP header field. The maximum size is 40 characters. The header name is case insensitive. The allowed characters are specified by RFC 7230. Wildcards are not supported.
2081
- :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values: The strings to compare against the value of the HTTP header. The maximum size of each string is 128 characters. The comparison strings are case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).
2112
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values: The strings to compare against the value of the HTTP header. The maximum length of each string is 128 characters. The comparison strings are case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).
2082
2113
  If the same header appears multiple times in the request, we search them in order until a match is found.
2083
2114
  If you specify multiple strings, the condition is satisfied if one of the strings matches the value of the HTTP header. To require that all of the strings are a match, create one condition per string.
2084
2115
  """
2085
2116
  if http_header_name is not None:
2086
2117
  pulumi.set(__self__, "http_header_name", http_header_name)
2118
+ if regex_values is not None:
2119
+ pulumi.set(__self__, "regex_values", regex_values)
2087
2120
  if values is not None:
2088
2121
  pulumi.set(__self__, "values", values)
2089
2122
 
@@ -2099,11 +2132,20 @@ class ListenerRuleHttpHeaderConfigArgs:
2099
2132
  def http_header_name(self, value: Optional[pulumi.Input[_builtins.str]]):
2100
2133
  pulumi.set(self, "http_header_name", value)
2101
2134
 
2135
+ @_builtins.property
2136
+ @pulumi.getter(name="regexValues")
2137
+ def regex_values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
2138
+ return pulumi.get(self, "regex_values")
2139
+
2140
+ @regex_values.setter
2141
+ def regex_values(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
2142
+ pulumi.set(self, "regex_values", value)
2143
+
2102
2144
  @_builtins.property
2103
2145
  @pulumi.getter
2104
2146
  def values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
2105
2147
  """
2106
- The strings to compare against the value of the HTTP header. The maximum size of each string is 128 characters. The comparison strings are case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).
2148
+ The strings to compare against the value of the HTTP header. The maximum length of each string is 128 characters. The comparison strings are case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).
2107
2149
  If the same header appears multiple times in the request, we search them in order until a match is found.
2108
2150
  If you specify multiple strings, the condition is satisfied if one of the strings matches the value of the HTTP header. To require that all of the strings are a match, create one condition per string.
2109
2151
  """
@@ -2122,7 +2164,7 @@ if not MYPY:
2122
2164
  """
2123
2165
  values: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
2124
2166
  """
2125
- The name of the request method. The maximum size is 40 characters. The allowed characters are A-Z, hyphen (-), and underscore (_). The comparison is case sensitive. Wildcards are not supported; therefore, the method name must be an exact match.
2167
+ The name of the request method. The maximum length is 40 characters. The allowed characters are A-Z, hyphen (-), and underscore (_). The comparison is case sensitive. Wildcards are not supported; therefore, the method name must be an exact match.
2126
2168
  If you specify multiple strings, the condition is satisfied if one of the strings matches the HTTP request method. We recommend that you route GET and HEAD requests in the same way, because the response to a HEAD request may be cached.
2127
2169
  """
2128
2170
  elif False:
@@ -2135,7 +2177,7 @@ class ListenerRuleHttpRequestMethodConfigArgs:
2135
2177
  """
2136
2178
  Information about an HTTP method condition.
2137
2179
  HTTP defines a set of request methods, also referred to as HTTP verbs. For more information, see the [HTTP Method Registry](https://docs.aws.amazon.com/https://www.iana.org/assignments/http-methods/http-methods.xhtml). You can also define custom HTTP methods.
2138
- :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values: The name of the request method. The maximum size is 40 characters. The allowed characters are A-Z, hyphen (-), and underscore (_). The comparison is case sensitive. Wildcards are not supported; therefore, the method name must be an exact match.
2180
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values: The name of the request method. The maximum length is 40 characters. The allowed characters are A-Z, hyphen (-), and underscore (_). The comparison is case sensitive. Wildcards are not supported; therefore, the method name must be an exact match.
2139
2181
  If you specify multiple strings, the condition is satisfied if one of the strings matches the HTTP request method. We recommend that you route GET and HEAD requests in the same way, because the response to a HEAD request may be cached.
2140
2182
  """
2141
2183
  if values is not None:
@@ -2145,7 +2187,7 @@ class ListenerRuleHttpRequestMethodConfigArgs:
2145
2187
  @pulumi.getter
2146
2188
  def values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
2147
2189
  """
2148
- The name of the request method. The maximum size is 40 characters. The allowed characters are A-Z, hyphen (-), and underscore (_). The comparison is case sensitive. Wildcards are not supported; therefore, the method name must be an exact match.
2190
+ The name of the request method. The maximum length is 40 characters. The allowed characters are A-Z, hyphen (-), and underscore (_). The comparison is case sensitive. Wildcards are not supported; therefore, the method name must be an exact match.
2149
2191
  If you specify multiple strings, the condition is satisfied if one of the strings matches the HTTP request method. We recommend that you route GET and HEAD requests in the same way, because the response to a HEAD request may be cached.
2150
2192
  """
2151
2193
  return pulumi.get(self, "values")
@@ -2160,6 +2202,7 @@ if not MYPY:
2160
2202
  """
2161
2203
  Information about a path pattern condition.
2162
2204
  """
2205
+ regex_values: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
2163
2206
  values: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
2164
2207
  """
2165
2208
  The path patterns to compare against the request URL. The maximum size of each string is 128 characters. The comparison is case sensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).
@@ -2171,15 +2214,27 @@ elif False:
2171
2214
  @pulumi.input_type
2172
2215
  class ListenerRulePathPatternConfigArgs:
2173
2216
  def __init__(__self__, *,
2217
+ regex_values: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
2174
2218
  values: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
2175
2219
  """
2176
2220
  Information about a path pattern condition.
2177
2221
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values: The path patterns to compare against the request URL. The maximum size of each string is 128 characters. The comparison is case sensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character).
2178
2222
  If you specify multiple strings, the condition is satisfied if one of them matches the request URL. The path pattern is compared only to the path of the URL, not to its query string.
2179
2223
  """
2224
+ if regex_values is not None:
2225
+ pulumi.set(__self__, "regex_values", regex_values)
2180
2226
  if values is not None:
2181
2227
  pulumi.set(__self__, "values", values)
2182
2228
 
2229
+ @_builtins.property
2230
+ @pulumi.getter(name="regexValues")
2231
+ def regex_values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
2232
+ return pulumi.get(self, "regex_values")
2233
+
2234
+ @regex_values.setter
2235
+ def regex_values(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
2236
+ pulumi.set(self, "regex_values", value)
2237
+
2183
2238
  @_builtins.property
2184
2239
  @pulumi.getter
2185
2240
  def values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
@@ -2202,7 +2257,7 @@ if not MYPY:
2202
2257
  """
2203
2258
  values: NotRequired[pulumi.Input[Sequence[pulumi.Input['ListenerRuleQueryStringKeyValueArgsDict']]]]
2204
2259
  """
2205
- The key/value pairs or values to find in the query string. The maximum size of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). To search for a literal '*' or '?' character in a query string, you must escape these characters in ``Values`` using a '\\' character.
2260
+ The key/value pairs or values to find in the query string. The maximum length of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). To search for a literal '*' or '?' character in a query string, you must escape these characters in ``Values`` using a '\\' character.
2206
2261
  If you specify multiple key/value pairs or values, the condition is satisfied if one of them is found in the query string.
2207
2262
  """
2208
2263
  elif False:
@@ -2215,7 +2270,7 @@ class ListenerRuleQueryStringConfigArgs:
2215
2270
  """
2216
2271
  Information about a query string condition.
2217
2272
  The query string component of a URI starts after the first '?' character and is terminated by either a '#' character or the end of the URI. A typical query string contains key/value pairs separated by '&' characters. The allowed characters are specified by RFC 3986. Any character can be percentage encoded.
2218
- :param pulumi.Input[Sequence[pulumi.Input['ListenerRuleQueryStringKeyValueArgs']]] values: The key/value pairs or values to find in the query string. The maximum size of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). To search for a literal '*' or '?' character in a query string, you must escape these characters in ``Values`` using a '\\' character.
2273
+ :param pulumi.Input[Sequence[pulumi.Input['ListenerRuleQueryStringKeyValueArgs']]] values: The key/value pairs or values to find in the query string. The maximum length of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). To search for a literal '*' or '?' character in a query string, you must escape these characters in ``Values`` using a '\\' character.
2219
2274
  If you specify multiple key/value pairs or values, the condition is satisfied if one of them is found in the query string.
2220
2275
  """
2221
2276
  if values is not None:
@@ -2225,7 +2280,7 @@ class ListenerRuleQueryStringConfigArgs:
2225
2280
  @pulumi.getter
2226
2281
  def values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ListenerRuleQueryStringKeyValueArgs']]]]:
2227
2282
  """
2228
- The key/value pairs or values to find in the query string. The maximum size of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). To search for a literal '*' or '?' character in a query string, you must escape these characters in ``Values`` using a '\\' character.
2283
+ The key/value pairs or values to find in the query string. The maximum length of each string is 128 characters. The comparison is case insensitive. The following wildcard characters are supported: * (matches 0 or more characters) and ? (matches exactly 1 character). To search for a literal '*' or '?' character in a query string, you must escape these characters in ``Values`` using a '\\' character.
2229
2284
  If you specify multiple key/value pairs or values, the condition is satisfied if one of them is found in the query string.
2230
2285
  """
2231
2286
  return pulumi.get(self, "values")
@@ -2444,6 +2499,62 @@ class ListenerRuleRedirectConfigArgs:
2444
2499
  pulumi.set(self, "query", value)
2445
2500
 
2446
2501
 
2502
+ if not MYPY:
2503
+ class ListenerRuleRewriteConfigObjectArgsDict(TypedDict):
2504
+ rewrites: pulumi.Input[Sequence[pulumi.Input['ListenerRuleRewriteConfigArgsDict']]]
2505
+ elif False:
2506
+ ListenerRuleRewriteConfigObjectArgsDict: TypeAlias = Mapping[str, Any]
2507
+
2508
+ @pulumi.input_type
2509
+ class ListenerRuleRewriteConfigObjectArgs:
2510
+ def __init__(__self__, *,
2511
+ rewrites: pulumi.Input[Sequence[pulumi.Input['ListenerRuleRewriteConfigArgs']]]):
2512
+ pulumi.set(__self__, "rewrites", rewrites)
2513
+
2514
+ @_builtins.property
2515
+ @pulumi.getter
2516
+ def rewrites(self) -> pulumi.Input[Sequence[pulumi.Input['ListenerRuleRewriteConfigArgs']]]:
2517
+ return pulumi.get(self, "rewrites")
2518
+
2519
+ @rewrites.setter
2520
+ def rewrites(self, value: pulumi.Input[Sequence[pulumi.Input['ListenerRuleRewriteConfigArgs']]]):
2521
+ pulumi.set(self, "rewrites", value)
2522
+
2523
+
2524
+ if not MYPY:
2525
+ class ListenerRuleRewriteConfigArgsDict(TypedDict):
2526
+ regex: pulumi.Input[_builtins.str]
2527
+ replace: pulumi.Input[_builtins.str]
2528
+ elif False:
2529
+ ListenerRuleRewriteConfigArgsDict: TypeAlias = Mapping[str, Any]
2530
+
2531
+ @pulumi.input_type
2532
+ class ListenerRuleRewriteConfigArgs:
2533
+ def __init__(__self__, *,
2534
+ regex: pulumi.Input[_builtins.str],
2535
+ replace: pulumi.Input[_builtins.str]):
2536
+ pulumi.set(__self__, "regex", regex)
2537
+ pulumi.set(__self__, "replace", replace)
2538
+
2539
+ @_builtins.property
2540
+ @pulumi.getter
2541
+ def regex(self) -> pulumi.Input[_builtins.str]:
2542
+ return pulumi.get(self, "regex")
2543
+
2544
+ @regex.setter
2545
+ def regex(self, value: pulumi.Input[_builtins.str]):
2546
+ pulumi.set(self, "regex", value)
2547
+
2548
+ @_builtins.property
2549
+ @pulumi.getter
2550
+ def replace(self) -> pulumi.Input[_builtins.str]:
2551
+ return pulumi.get(self, "replace")
2552
+
2553
+ @replace.setter
2554
+ def replace(self, value: pulumi.Input[_builtins.str]):
2555
+ pulumi.set(self, "replace", value)
2556
+
2557
+
2447
2558
  if not MYPY:
2448
2559
  class ListenerRuleRuleConditionArgsDict(TypedDict):
2449
2560
  """
@@ -2479,6 +2590,10 @@ if not MYPY:
2479
2590
  """
2480
2591
  Information for a query string condition. Specify only when ``Field`` is ``query-string``.
2481
2592
  """
2593
+ regex_values: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
2594
+ """
2595
+ The regular expressions to match against the condition field. The maximum length of each string is 128 characters. Specify only when `Field` is `http-header` , `host-header` , or `path-pattern` .
2596
+ """
2482
2597
  source_ip_config: NotRequired[pulumi.Input['ListenerRuleSourceIpConfigArgsDict']]
2483
2598
  """
2484
2599
  Information for a source IP condition. Specify only when ``Field`` is ``source-ip``.
@@ -2511,6 +2626,7 @@ class ListenerRuleRuleConditionArgs:
2511
2626
  http_request_method_config: Optional[pulumi.Input['ListenerRuleHttpRequestMethodConfigArgs']] = None,
2512
2627
  path_pattern_config: Optional[pulumi.Input['ListenerRulePathPatternConfigArgs']] = None,
2513
2628
  query_string_config: Optional[pulumi.Input['ListenerRuleQueryStringConfigArgs']] = None,
2629
+ regex_values: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
2514
2630
  source_ip_config: Optional[pulumi.Input['ListenerRuleSourceIpConfigArgs']] = None,
2515
2631
  values: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
2516
2632
  """
@@ -2527,6 +2643,7 @@ class ListenerRuleRuleConditionArgs:
2527
2643
  :param pulumi.Input['ListenerRuleHttpRequestMethodConfigArgs'] http_request_method_config: Information for an HTTP method condition. Specify only when ``Field`` is ``http-request-method``.
2528
2644
  :param pulumi.Input['ListenerRulePathPatternConfigArgs'] path_pattern_config: Information for a path pattern condition. Specify only when ``Field`` is ``path-pattern``.
2529
2645
  :param pulumi.Input['ListenerRuleQueryStringConfigArgs'] query_string_config: Information for a query string condition. Specify only when ``Field`` is ``query-string``.
2646
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] regex_values: The regular expressions to match against the condition field. The maximum length of each string is 128 characters. Specify only when `Field` is `http-header` , `host-header` , or `path-pattern` .
2530
2647
  :param pulumi.Input['ListenerRuleSourceIpConfigArgs'] source_ip_config: Information for a source IP condition. Specify only when ``Field`` is ``source-ip``.
2531
2648
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values: The condition value. Specify only when ``Field`` is ``host-header`` or ``path-pattern``. Alternatively, to specify multiple host names or multiple path patterns, use ``HostHeaderConfig`` or ``PathPatternConfig``.
2532
2649
  If ``Field`` is ``host-header`` and you're not using ``HostHeaderConfig``, you can specify a single host name (for example, my.example.com). A host name is case insensitive, can be up to 128 characters in length, and can contain any of the following characters.
@@ -2554,6 +2671,8 @@ class ListenerRuleRuleConditionArgs:
2554
2671
  pulumi.set(__self__, "path_pattern_config", path_pattern_config)
2555
2672
  if query_string_config is not None:
2556
2673
  pulumi.set(__self__, "query_string_config", query_string_config)
2674
+ if regex_values is not None:
2675
+ pulumi.set(__self__, "regex_values", regex_values)
2557
2676
  if source_ip_config is not None:
2558
2677
  pulumi.set(__self__, "source_ip_config", source_ip_config)
2559
2678
  if values is not None:
@@ -2637,6 +2756,18 @@ class ListenerRuleRuleConditionArgs:
2637
2756
  def query_string_config(self, value: Optional[pulumi.Input['ListenerRuleQueryStringConfigArgs']]):
2638
2757
  pulumi.set(self, "query_string_config", value)
2639
2758
 
2759
+ @_builtins.property
2760
+ @pulumi.getter(name="regexValues")
2761
+ def regex_values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
2762
+ """
2763
+ The regular expressions to match against the condition field. The maximum length of each string is 128 characters. Specify only when `Field` is `http-header` , `host-header` , or `path-pattern` .
2764
+ """
2765
+ return pulumi.get(self, "regex_values")
2766
+
2767
+ @regex_values.setter
2768
+ def regex_values(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
2769
+ pulumi.set(self, "regex_values", value)
2770
+
2640
2771
  @_builtins.property
2641
2772
  @pulumi.getter(name="sourceIpConfig")
2642
2773
  def source_ip_config(self) -> Optional[pulumi.Input['ListenerRuleSourceIpConfigArgs']]:
@@ -2722,7 +2853,7 @@ if not MYPY:
2722
2853
  """
2723
2854
  duration_seconds: NotRequired[pulumi.Input[_builtins.int]]
2724
2855
  """
2725
- The time period, in seconds, during which requests from a client should be routed to the same target group. The range is 1-604800 seconds (7 days). You must specify this value when enabling target group stickiness.
2856
+ [Application Load Balancers] The time period, in seconds, during which requests from a client should be routed to the same target group. The range is 1-604800 seconds (7 days). You must specify this value when enabling target group stickiness.
2726
2857
  """
2727
2858
  enabled: NotRequired[pulumi.Input[_builtins.bool]]
2728
2859
  """
@@ -2738,7 +2869,7 @@ class ListenerRuleTargetGroupStickinessConfigArgs:
2738
2869
  enabled: Optional[pulumi.Input[_builtins.bool]] = None):
2739
2870
  """
2740
2871
  Information about the target group stickiness for a rule.
2741
- :param pulumi.Input[_builtins.int] duration_seconds: The time period, in seconds, during which requests from a client should be routed to the same target group. The range is 1-604800 seconds (7 days). You must specify this value when enabling target group stickiness.
2872
+ :param pulumi.Input[_builtins.int] duration_seconds: [Application Load Balancers] The time period, in seconds, during which requests from a client should be routed to the same target group. The range is 1-604800 seconds (7 days). You must specify this value when enabling target group stickiness.
2742
2873
  :param pulumi.Input[_builtins.bool] enabled: Indicates whether target group stickiness is enabled.
2743
2874
  """
2744
2875
  if duration_seconds is not None:
@@ -2750,7 +2881,7 @@ class ListenerRuleTargetGroupStickinessConfigArgs:
2750
2881
  @pulumi.getter(name="durationSeconds")
2751
2882
  def duration_seconds(self) -> Optional[pulumi.Input[_builtins.int]]:
2752
2883
  """
2753
- The time period, in seconds, during which requests from a client should be routed to the same target group. The range is 1-604800 seconds (7 days). You must specify this value when enabling target group stickiness.
2884
+ [Application Load Balancers] The time period, in seconds, during which requests from a client should be routed to the same target group. The range is 1-604800 seconds (7 days). You must specify this value when enabling target group stickiness.
2754
2885
  """
2755
2886
  return pulumi.get(self, "duration_seconds")
2756
2887
 
@@ -2827,6 +2958,54 @@ class ListenerRuleTargetGroupTupleArgs:
2827
2958
  pulumi.set(self, "weight", value)
2828
2959
 
2829
2960
 
2961
+ if not MYPY:
2962
+ class ListenerRuleTransformArgsDict(TypedDict):
2963
+ type: pulumi.Input[_builtins.str]
2964
+ host_header_rewrite_config: NotRequired[pulumi.Input['ListenerRuleRewriteConfigObjectArgsDict']]
2965
+ url_rewrite_config: NotRequired[pulumi.Input['ListenerRuleRewriteConfigObjectArgsDict']]
2966
+ elif False:
2967
+ ListenerRuleTransformArgsDict: TypeAlias = Mapping[str, Any]
2968
+
2969
+ @pulumi.input_type
2970
+ class ListenerRuleTransformArgs:
2971
+ def __init__(__self__, *,
2972
+ type: pulumi.Input[_builtins.str],
2973
+ host_header_rewrite_config: Optional[pulumi.Input['ListenerRuleRewriteConfigObjectArgs']] = None,
2974
+ url_rewrite_config: Optional[pulumi.Input['ListenerRuleRewriteConfigObjectArgs']] = None):
2975
+ pulumi.set(__self__, "type", type)
2976
+ if host_header_rewrite_config is not None:
2977
+ pulumi.set(__self__, "host_header_rewrite_config", host_header_rewrite_config)
2978
+ if url_rewrite_config is not None:
2979
+ pulumi.set(__self__, "url_rewrite_config", url_rewrite_config)
2980
+
2981
+ @_builtins.property
2982
+ @pulumi.getter
2983
+ def type(self) -> pulumi.Input[_builtins.str]:
2984
+ return pulumi.get(self, "type")
2985
+
2986
+ @type.setter
2987
+ def type(self, value: pulumi.Input[_builtins.str]):
2988
+ pulumi.set(self, "type", value)
2989
+
2990
+ @_builtins.property
2991
+ @pulumi.getter(name="hostHeaderRewriteConfig")
2992
+ def host_header_rewrite_config(self) -> Optional[pulumi.Input['ListenerRuleRewriteConfigObjectArgs']]:
2993
+ return pulumi.get(self, "host_header_rewrite_config")
2994
+
2995
+ @host_header_rewrite_config.setter
2996
+ def host_header_rewrite_config(self, value: Optional[pulumi.Input['ListenerRuleRewriteConfigObjectArgs']]):
2997
+ pulumi.set(self, "host_header_rewrite_config", value)
2998
+
2999
+ @_builtins.property
3000
+ @pulumi.getter(name="urlRewriteConfig")
3001
+ def url_rewrite_config(self) -> Optional[pulumi.Input['ListenerRuleRewriteConfigObjectArgs']]:
3002
+ return pulumi.get(self, "url_rewrite_config")
3003
+
3004
+ @url_rewrite_config.setter
3005
+ def url_rewrite_config(self, value: Optional[pulumi.Input['ListenerRuleRewriteConfigObjectArgs']]):
3006
+ pulumi.set(self, "url_rewrite_config", value)
3007
+
3008
+
2830
3009
  if not MYPY:
2831
3010
  class ListenerTargetGroupStickinessConfigArgsDict(TypedDict):
2832
3011
  """
@@ -2834,7 +3013,7 @@ if not MYPY:
2834
3013
  """
2835
3014
  duration_seconds: NotRequired[pulumi.Input[_builtins.int]]
2836
3015
  """
2837
- The time period, in seconds, during which requests from a client should be routed to the same target group. The range is 1-604800 seconds (7 days). You must specify this value when enabling target group stickiness.
3016
+ [Application Load Balancers] The time period, in seconds, during which requests from a client should be routed to the same target group. The range is 1-604800 seconds (7 days). You must specify this value when enabling target group stickiness.
2838
3017
  """
2839
3018
  enabled: NotRequired[pulumi.Input[_builtins.bool]]
2840
3019
  """
@@ -2850,7 +3029,7 @@ class ListenerTargetGroupStickinessConfigArgs:
2850
3029
  enabled: Optional[pulumi.Input[_builtins.bool]] = None):
2851
3030
  """
2852
3031
  Information about the target group stickiness for a rule.
2853
- :param pulumi.Input[_builtins.int] duration_seconds: The time period, in seconds, during which requests from a client should be routed to the same target group. The range is 1-604800 seconds (7 days). You must specify this value when enabling target group stickiness.
3032
+ :param pulumi.Input[_builtins.int] duration_seconds: [Application Load Balancers] The time period, in seconds, during which requests from a client should be routed to the same target group. The range is 1-604800 seconds (7 days). You must specify this value when enabling target group stickiness.
2854
3033
  :param pulumi.Input[_builtins.bool] enabled: Indicates whether target group stickiness is enabled.
2855
3034
  """
2856
3035
  if duration_seconds is not None:
@@ -2862,7 +3041,7 @@ class ListenerTargetGroupStickinessConfigArgs:
2862
3041
  @pulumi.getter(name="durationSeconds")
2863
3042
  def duration_seconds(self) -> Optional[pulumi.Input[_builtins.int]]:
2864
3043
  """
2865
- The time period, in seconds, during which requests from a client should be routed to the same target group. The range is 1-604800 seconds (7 days). You must specify this value when enabling target group stickiness.
3044
+ [Application Load Balancers] The time period, in seconds, during which requests from a client should be routed to the same target group. The range is 1-604800 seconds (7 days). You must specify this value when enabling target group stickiness.
2866
3045
  """
2867
3046
  return pulumi.get(self, "duration_seconds")
2868
3047