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
@@ -308,17 +308,13 @@ class DbClusterArgs:
308
308
  Constraints: Minimum 30-minute window.
309
309
  Valid for: Aurora DB clusters and Multi-AZ DB clusters
310
310
  :param pulumi.Input[_builtins.bool] publicly_accessible: Specifies whether the DB cluster is publicly accessible.
311
- When the DB cluster is publicly accessible and you connect from outside of the DB cluster's virtual private cloud (VPC), its Domain Name System (DNS) endpoint resolves to the public IP address. When you connect from within the same VPC as the DB cluster, the endpoint resolves to the private IP address. Access to the DB cluster is ultimately controlled by the security group it uses. That public access isn't permitted if the security group assigned to the DB cluster doesn't permit it.
312
- When the DB cluster isn't publicly accessible, it is an internal DB cluster with a DNS name that resolves to a private IP address.
313
311
  Valid for Cluster Type: Multi-AZ DB clusters only
314
- Default: The default behavior varies depending on whether ``DBSubnetGroupName`` is specified.
315
- If ``DBSubnetGroupName`` isn't specified, and ``PubliclyAccessible`` isn't specified, the following applies:
316
- + If the default VPC in the target Region doesn’t have an internet gateway attached to it, the DB cluster is private.
317
- + If the default VPC in the target Region has an internet gateway attached to it, the DB cluster is public.
318
-
319
- If ``DBSubnetGroupName`` is specified, and ``PubliclyAccessible`` isn't specified, the following applies:
320
- + If the subnets are part of a VPC that doesn’t have an internet gateway attached to it, the DB cluster is private.
321
- + If the subnets are part of a VPC that has an internet gateway attached to it, the DB cluster is public.
312
+ When the DB cluster is publicly accessible and you connect from outside of the DB cluster's virtual private cloud (VPC), its domain name system (DNS) endpoint resolves to the public IP address. When you connect from within the same VPC as the DB cluster, the endpoint resolves to the private IP address. Access to the DB cluster is controlled by its security group settings.
313
+ When the DB cluster isn't publicly accessible, it is an internal DB cluster with a DNS name that resolves to a private IP address.
314
+ The default behavior when ``PubliclyAccessible`` is not specified depends on whether a ``DBSubnetGroup`` is specified.
315
+ If ``DBSubnetGroup`` isn't specified, ``PubliclyAccessible`` defaults to ``true``.
316
+ If ``DBSubnetGroup`` is specified, ``PubliclyAccessible`` defaults to ``false`` unless the value of ``DBSubnetGroup`` is ``default``, in which case ``PubliclyAccessible`` defaults to ``true``.
317
+ If ``PubliclyAccessible`` is true and the VPC that the ``DBSubnetGroup`` is in doesn't have an internet gateway attached to it, Amazon RDS returns an error.
322
318
  :param pulumi.Input[_builtins.str] replication_source_identifier: The Amazon Resource Name (ARN) of the source DB instance or DB cluster if this DB cluster is created as a read replica.
323
319
  Valid for: Aurora DB clusters only
324
320
  :param pulumi.Input[_builtins.str] restore_to_time: The date and time to restore the DB cluster to.
@@ -1255,17 +1251,13 @@ class DbClusterArgs:
1255
1251
  def publicly_accessible(self) -> Optional[pulumi.Input[_builtins.bool]]:
1256
1252
  """
1257
1253
  Specifies whether the DB cluster is publicly accessible.
1258
- When the DB cluster is publicly accessible and you connect from outside of the DB cluster's virtual private cloud (VPC), its Domain Name System (DNS) endpoint resolves to the public IP address. When you connect from within the same VPC as the DB cluster, the endpoint resolves to the private IP address. Access to the DB cluster is ultimately controlled by the security group it uses. That public access isn't permitted if the security group assigned to the DB cluster doesn't permit it.
1259
- When the DB cluster isn't publicly accessible, it is an internal DB cluster with a DNS name that resolves to a private IP address.
1260
1254
  Valid for Cluster Type: Multi-AZ DB clusters only
1261
- Default: The default behavior varies depending on whether ``DBSubnetGroupName`` is specified.
1262
- If ``DBSubnetGroupName`` isn't specified, and ``PubliclyAccessible`` isn't specified, the following applies:
1263
- + If the default VPC in the target Region doesn’t have an internet gateway attached to it, the DB cluster is private.
1264
- + If the default VPC in the target Region has an internet gateway attached to it, the DB cluster is public.
1265
-
1266
- If ``DBSubnetGroupName`` is specified, and ``PubliclyAccessible`` isn't specified, the following applies:
1267
- + If the subnets are part of a VPC that doesn’t have an internet gateway attached to it, the DB cluster is private.
1268
- + If the subnets are part of a VPC that has an internet gateway attached to it, the DB cluster is public.
1255
+ When the DB cluster is publicly accessible and you connect from outside of the DB cluster's virtual private cloud (VPC), its domain name system (DNS) endpoint resolves to the public IP address. When you connect from within the same VPC as the DB cluster, the endpoint resolves to the private IP address. Access to the DB cluster is controlled by its security group settings.
1256
+ When the DB cluster isn't publicly accessible, it is an internal DB cluster with a DNS name that resolves to a private IP address.
1257
+ The default behavior when ``PubliclyAccessible`` is not specified depends on whether a ``DBSubnetGroup`` is specified.
1258
+ If ``DBSubnetGroup`` isn't specified, ``PubliclyAccessible`` defaults to ``true``.
1259
+ If ``DBSubnetGroup`` is specified, ``PubliclyAccessible`` defaults to ``false`` unless the value of ``DBSubnetGroup`` is ``default``, in which case ``PubliclyAccessible`` defaults to ``true``.
1260
+ If ``PubliclyAccessible`` is true and the VPC that the ``DBSubnetGroup`` is in doesn't have an internet gateway attached to it, Amazon RDS returns an error.
1269
1261
  """
1270
1262
  return pulumi.get(self, "publicly_accessible")
1271
1263
 
@@ -1819,17 +1811,13 @@ class DbCluster(pulumi.CustomResource):
1819
1811
  Constraints: Minimum 30-minute window.
1820
1812
  Valid for: Aurora DB clusters and Multi-AZ DB clusters
1821
1813
  :param pulumi.Input[_builtins.bool] publicly_accessible: Specifies whether the DB cluster is publicly accessible.
1822
- When the DB cluster is publicly accessible and you connect from outside of the DB cluster's virtual private cloud (VPC), its Domain Name System (DNS) endpoint resolves to the public IP address. When you connect from within the same VPC as the DB cluster, the endpoint resolves to the private IP address. Access to the DB cluster is ultimately controlled by the security group it uses. That public access isn't permitted if the security group assigned to the DB cluster doesn't permit it.
1823
- When the DB cluster isn't publicly accessible, it is an internal DB cluster with a DNS name that resolves to a private IP address.
1824
1814
  Valid for Cluster Type: Multi-AZ DB clusters only
1825
- Default: The default behavior varies depending on whether ``DBSubnetGroupName`` is specified.
1826
- If ``DBSubnetGroupName`` isn't specified, and ``PubliclyAccessible`` isn't specified, the following applies:
1827
- + If the default VPC in the target Region doesn’t have an internet gateway attached to it, the DB cluster is private.
1828
- + If the default VPC in the target Region has an internet gateway attached to it, the DB cluster is public.
1829
-
1830
- If ``DBSubnetGroupName`` is specified, and ``PubliclyAccessible`` isn't specified, the following applies:
1831
- + If the subnets are part of a VPC that doesn’t have an internet gateway attached to it, the DB cluster is private.
1832
- + If the subnets are part of a VPC that has an internet gateway attached to it, the DB cluster is public.
1815
+ When the DB cluster is publicly accessible and you connect from outside of the DB cluster's virtual private cloud (VPC), its domain name system (DNS) endpoint resolves to the public IP address. When you connect from within the same VPC as the DB cluster, the endpoint resolves to the private IP address. Access to the DB cluster is controlled by its security group settings.
1816
+ When the DB cluster isn't publicly accessible, it is an internal DB cluster with a DNS name that resolves to a private IP address.
1817
+ The default behavior when ``PubliclyAccessible`` is not specified depends on whether a ``DBSubnetGroup`` is specified.
1818
+ If ``DBSubnetGroup`` isn't specified, ``PubliclyAccessible`` defaults to ``true``.
1819
+ If ``DBSubnetGroup`` is specified, ``PubliclyAccessible`` defaults to ``false`` unless the value of ``DBSubnetGroup`` is ``default``, in which case ``PubliclyAccessible`` defaults to ``true``.
1820
+ If ``PubliclyAccessible`` is true and the VPC that the ``DBSubnetGroup`` is in doesn't have an internet gateway attached to it, Amazon RDS returns an error.
1833
1821
  :param pulumi.Input[_builtins.str] replication_source_identifier: The Amazon Resource Name (ARN) of the source DB instance or DB cluster if this DB cluster is created as a read replica.
1834
1822
  Valid for: Aurora DB clusters only
1835
1823
  :param pulumi.Input[_builtins.str] restore_to_time: The date and time to restore the DB cluster to.
@@ -2748,17 +2736,13 @@ class DbCluster(pulumi.CustomResource):
2748
2736
  def publicly_accessible(self) -> pulumi.Output[Optional[_builtins.bool]]:
2749
2737
  """
2750
2738
  Specifies whether the DB cluster is publicly accessible.
2751
- When the DB cluster is publicly accessible and you connect from outside of the DB cluster's virtual private cloud (VPC), its Domain Name System (DNS) endpoint resolves to the public IP address. When you connect from within the same VPC as the DB cluster, the endpoint resolves to the private IP address. Access to the DB cluster is ultimately controlled by the security group it uses. That public access isn't permitted if the security group assigned to the DB cluster doesn't permit it.
2752
- When the DB cluster isn't publicly accessible, it is an internal DB cluster with a DNS name that resolves to a private IP address.
2753
2739
  Valid for Cluster Type: Multi-AZ DB clusters only
2754
- Default: The default behavior varies depending on whether ``DBSubnetGroupName`` is specified.
2755
- If ``DBSubnetGroupName`` isn't specified, and ``PubliclyAccessible`` isn't specified, the following applies:
2756
- + If the default VPC in the target Region doesn’t have an internet gateway attached to it, the DB cluster is private.
2757
- + If the default VPC in the target Region has an internet gateway attached to it, the DB cluster is public.
2758
-
2759
- If ``DBSubnetGroupName`` is specified, and ``PubliclyAccessible`` isn't specified, the following applies:
2760
- + If the subnets are part of a VPC that doesn’t have an internet gateway attached to it, the DB cluster is private.
2761
- + If the subnets are part of a VPC that has an internet gateway attached to it, the DB cluster is public.
2740
+ When the DB cluster is publicly accessible and you connect from outside of the DB cluster's virtual private cloud (VPC), its domain name system (DNS) endpoint resolves to the public IP address. When you connect from within the same VPC as the DB cluster, the endpoint resolves to the private IP address. Access to the DB cluster is controlled by its security group settings.
2741
+ When the DB cluster isn't publicly accessible, it is an internal DB cluster with a DNS name that resolves to a private IP address.
2742
+ The default behavior when ``PubliclyAccessible`` is not specified depends on whether a ``DBSubnetGroup`` is specified.
2743
+ If ``DBSubnetGroup`` isn't specified, ``PubliclyAccessible`` defaults to ``true``.
2744
+ If ``DBSubnetGroup`` is specified, ``PubliclyAccessible`` defaults to ``false`` unless the value of ``DBSubnetGroup`` is ``default``, in which case ``PubliclyAccessible`` defaults to ``true``.
2745
+ If ``PubliclyAccessible`` is true and the VPC that the ``DBSubnetGroup`` is in doesn't have an internet gateway attached to it, Amazon RDS returns an error.
2762
2746
  """
2763
2747
  return pulumi.get(self, "publicly_accessible")
2764
2748
 
@@ -187,7 +187,9 @@ if not MYPY:
187
187
  """
188
188
  The number of consecutive health checks that an endpoint must pass or fail for Amazon Route 53 to change the current status of the endpoint from unhealthy to healthy or vice versa. For more information, see [How Amazon Route 53 Determines Whether an Endpoint Is Healthy](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html) in the *Amazon Route 53 Developer Guide* .
189
189
 
190
- If you don't specify a value for `FailureThreshold` , the default value is three health checks.
190
+ `FailureThreshold` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
191
+
192
+ Otherwise, if you don't specify a value for `FailureThreshold` , the default value is three health checks.
191
193
  """
192
194
  fully_qualified_domain_name: NotRequired[pulumi.Input[_builtins.str]]
193
195
  """
@@ -263,6 +265,8 @@ if not MYPY:
263
265
  """
264
266
  Specify whether you want Amazon Route 53 to measure the latency between health checkers in multiple AWS regions and your endpoint, and to display CloudWatch latency graphs on the *Health Checks* page in the Route 53 console.
265
267
 
268
+ `MeasureLatency` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
269
+
266
270
  > You can't change the value of `MeasureLatency` after you create a health check.
267
271
  """
268
272
  port: NotRequired[pulumi.Input[_builtins.int]]
@@ -283,6 +287,8 @@ if not MYPY:
283
287
  """
284
288
  The number of seconds between the time that Amazon Route 53 gets a response from your endpoint and the time that it sends the next health check request. Each Route 53 health checker makes requests at this interval.
285
289
 
290
+ `RequestInterval` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
291
+
286
292
  > You can't change the value of `RequestInterval` after you create a health check.
287
293
 
288
294
  If you don't specify a value for `RequestInterval` , the default value is `30` seconds.
@@ -360,7 +366,9 @@ class HealthCheckConfigPropertiesArgs:
360
366
  The SSL/TLS certificate on your endpoint includes a domain name in the `Common Name` field and possibly several more in the `Subject Alternative Names` field. One of the domain names in the certificate should match the value that you specify for `FullyQualifiedDomainName` . If the endpoint responds to the `client_hello` message with a certificate that does not include the domain name that you specified in `FullyQualifiedDomainName` , a health checker will retry the handshake. In the second attempt, the health checker will omit `FullyQualifiedDomainName` from the `client_hello` message.
361
367
  :param pulumi.Input[_builtins.int] failure_threshold: The number of consecutive health checks that an endpoint must pass or fail for Amazon Route 53 to change the current status of the endpoint from unhealthy to healthy or vice versa. For more information, see [How Amazon Route 53 Determines Whether an Endpoint Is Healthy](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html) in the *Amazon Route 53 Developer Guide* .
362
368
 
363
- If you don't specify a value for `FailureThreshold` , the default value is three health checks.
369
+ `FailureThreshold` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
370
+
371
+ Otherwise, if you don't specify a value for `FailureThreshold` , the default value is three health checks.
364
372
  :param pulumi.Input[_builtins.str] fully_qualified_domain_name: Amazon Route 53 behavior depends on whether you specify a value for `IPAddress` .
365
373
 
366
374
  *If you specify a value for* `IPAddress` :
@@ -418,6 +426,8 @@ class HealthCheckConfigPropertiesArgs:
418
426
  When the value of `Type` is `CALCULATED` or `CLOUDWATCH_METRIC` , omit `IPAddress` .
419
427
  :param pulumi.Input[_builtins.bool] measure_latency: Specify whether you want Amazon Route 53 to measure the latency between health checkers in multiple AWS regions and your endpoint, and to display CloudWatch latency graphs on the *Health Checks* page in the Route 53 console.
420
428
 
429
+ `MeasureLatency` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
430
+
421
431
  > You can't change the value of `MeasureLatency` after you create a health check.
422
432
  :param pulumi.Input[_builtins.int] port: The port on the endpoint that you want Amazon Route 53 to perform health checks on.
423
433
 
@@ -429,6 +439,8 @@ class HealthCheckConfigPropertiesArgs:
429
439
  If you update a health check to remove a region that has been performing health checks, Route 53 will briefly continue to perform checks from that region to ensure that some health checkers are always checking the endpoint (for example, if you replace three regions with four different regions).
430
440
  :param pulumi.Input[_builtins.int] request_interval: The number of seconds between the time that Amazon Route 53 gets a response from your endpoint and the time that it sends the next health check request. Each Route 53 health checker makes requests at this interval.
431
441
 
442
+ `RequestInterval` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
443
+
432
444
  > You can't change the value of `RequestInterval` after you create a health check.
433
445
 
434
446
  If you don't specify a value for `RequestInterval` , the default value is `30` seconds.
@@ -554,7 +566,9 @@ class HealthCheckConfigPropertiesArgs:
554
566
  """
555
567
  The number of consecutive health checks that an endpoint must pass or fail for Amazon Route 53 to change the current status of the endpoint from unhealthy to healthy or vice versa. For more information, see [How Amazon Route 53 Determines Whether an Endpoint Is Healthy](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html) in the *Amazon Route 53 Developer Guide* .
556
568
 
557
- If you don't specify a value for `FailureThreshold` , the default value is three health checks.
569
+ `FailureThreshold` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
570
+
571
+ Otherwise, if you don't specify a value for `FailureThreshold` , the default value is three health checks.
558
572
  """
559
573
  return pulumi.get(self, "failure_threshold")
560
574
 
@@ -678,6 +692,8 @@ class HealthCheckConfigPropertiesArgs:
678
692
  """
679
693
  Specify whether you want Amazon Route 53 to measure the latency between health checkers in multiple AWS regions and your endpoint, and to display CloudWatch latency graphs on the *Health Checks* page in the Route 53 console.
680
694
 
695
+ `MeasureLatency` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
696
+
681
697
  > You can't change the value of `MeasureLatency` after you create a health check.
682
698
  """
683
699
  return pulumi.get(self, "measure_latency")
@@ -722,6 +738,8 @@ class HealthCheckConfigPropertiesArgs:
722
738
  """
723
739
  The number of seconds between the time that Amazon Route 53 gets a response from your endpoint and the time that it sends the next health check request. Each Route 53 health checker makes requests at this interval.
724
740
 
741
+ `RequestInterval` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
742
+
725
743
  > You can't change the value of `RequestInterval` after you create a health check.
726
744
 
727
745
  If you don't specify a value for `RequestInterval` , the default value is `30` seconds.
@@ -204,7 +204,9 @@ class HealthCheckConfigProperties(dict):
204
204
  The SSL/TLS certificate on your endpoint includes a domain name in the `Common Name` field and possibly several more in the `Subject Alternative Names` field. One of the domain names in the certificate should match the value that you specify for `FullyQualifiedDomainName` . If the endpoint responds to the `client_hello` message with a certificate that does not include the domain name that you specified in `FullyQualifiedDomainName` , a health checker will retry the handshake. In the second attempt, the health checker will omit `FullyQualifiedDomainName` from the `client_hello` message.
205
205
  :param _builtins.int failure_threshold: The number of consecutive health checks that an endpoint must pass or fail for Amazon Route 53 to change the current status of the endpoint from unhealthy to healthy or vice versa. For more information, see [How Amazon Route 53 Determines Whether an Endpoint Is Healthy](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html) in the *Amazon Route 53 Developer Guide* .
206
206
 
207
- If you don't specify a value for `FailureThreshold` , the default value is three health checks.
207
+ `FailureThreshold` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
208
+
209
+ Otherwise, if you don't specify a value for `FailureThreshold` , the default value is three health checks.
208
210
  :param _builtins.str fully_qualified_domain_name: Amazon Route 53 behavior depends on whether you specify a value for `IPAddress` .
209
211
 
210
212
  *If you specify a value for* `IPAddress` :
@@ -262,6 +264,8 @@ class HealthCheckConfigProperties(dict):
262
264
  When the value of `Type` is `CALCULATED` or `CLOUDWATCH_METRIC` , omit `IPAddress` .
263
265
  :param _builtins.bool measure_latency: Specify whether you want Amazon Route 53 to measure the latency between health checkers in multiple AWS regions and your endpoint, and to display CloudWatch latency graphs on the *Health Checks* page in the Route 53 console.
264
266
 
267
+ `MeasureLatency` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
268
+
265
269
  > You can't change the value of `MeasureLatency` after you create a health check.
266
270
  :param _builtins.int port: The port on the endpoint that you want Amazon Route 53 to perform health checks on.
267
271
 
@@ -273,6 +277,8 @@ class HealthCheckConfigProperties(dict):
273
277
  If you update a health check to remove a region that has been performing health checks, Route 53 will briefly continue to perform checks from that region to ensure that some health checkers are always checking the endpoint (for example, if you replace three regions with four different regions).
274
278
  :param _builtins.int request_interval: The number of seconds between the time that Amazon Route 53 gets a response from your endpoint and the time that it sends the next health check request. Each Route 53 health checker makes requests at this interval.
275
279
 
280
+ `RequestInterval` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
281
+
276
282
  > You can't change the value of `RequestInterval` after you create a health check.
277
283
 
278
284
  If you don't specify a value for `RequestInterval` , the default value is `30` seconds.
@@ -382,7 +388,9 @@ class HealthCheckConfigProperties(dict):
382
388
  """
383
389
  The number of consecutive health checks that an endpoint must pass or fail for Amazon Route 53 to change the current status of the endpoint from unhealthy to healthy or vice versa. For more information, see [How Amazon Route 53 Determines Whether an Endpoint Is Healthy](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html) in the *Amazon Route 53 Developer Guide* .
384
390
 
385
- If you don't specify a value for `FailureThreshold` , the default value is three health checks.
391
+ `FailureThreshold` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
392
+
393
+ Otherwise, if you don't specify a value for `FailureThreshold` , the default value is three health checks.
386
394
  """
387
395
  return pulumi.get(self, "failure_threshold")
388
396
 
@@ -482,6 +490,8 @@ class HealthCheckConfigProperties(dict):
482
490
  """
483
491
  Specify whether you want Amazon Route 53 to measure the latency between health checkers in multiple AWS regions and your endpoint, and to display CloudWatch latency graphs on the *Health Checks* page in the Route 53 console.
484
492
 
493
+ `MeasureLatency` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
494
+
485
495
  > You can't change the value of `MeasureLatency` after you create a health check.
486
496
  """
487
497
  return pulumi.get(self, "measure_latency")
@@ -514,6 +524,8 @@ class HealthCheckConfigProperties(dict):
514
524
  """
515
525
  The number of seconds between the time that Amazon Route 53 gets a response from your endpoint and the time that it sends the next health check request. Each Route 53 health checker makes requests at this interval.
516
526
 
527
+ `RequestInterval` is not supported when you specify a value for `Type` of `RECOVERY_CONTROL` .
528
+
517
529
  > You can't change the value of `RequestInterval` after you create a health check.
518
530
 
519
531
  If you don't specify a value for `RequestInterval` , the default value is `30` seconds.
@@ -0,0 +1,17 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import builtins as _builtins
6
+ from .. import _utilities
7
+ import typing
8
+ # Export this package's modules as members:
9
+ from ._enums import *
10
+ from .get_link import *
11
+ from .get_requester_gateway import *
12
+ from .get_responder_gateway import *
13
+ from .link import *
14
+ from .requester_gateway import *
15
+ from .responder_gateway import *
16
+ from ._inputs import *
17
+ from . import outputs
@@ -0,0 +1,89 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import builtins as _builtins
6
+ import pulumi
7
+ from enum import Enum
8
+
9
+ __all__ = [
10
+ 'LinkDirection',
11
+ 'LinkResponderErrorMaskingForHttpCodeAction',
12
+ 'LinkResponderErrorMaskingLoggingType',
13
+ 'LinkStatus',
14
+ 'RequesterGatewayStatus',
15
+ 'ResponderGatewayProtocol',
16
+ 'ResponderGatewayStatus',
17
+ ]
18
+
19
+
20
+ @pulumi.type_token("aws-native:rtbfabric:LinkDirection")
21
+ class LinkDirection(_builtins.str, Enum):
22
+ REQUEST = "REQUEST"
23
+ RESPONSE = "RESPONSE"
24
+
25
+
26
+ @pulumi.type_token("aws-native:rtbfabric:LinkResponderErrorMaskingForHttpCodeAction")
27
+ class LinkResponderErrorMaskingForHttpCodeAction(_builtins.str, Enum):
28
+ """
29
+ The action for the error..
30
+ """
31
+ NO_BID = "NO_BID"
32
+ PASSTHROUGH = "PASSTHROUGH"
33
+
34
+
35
+ @pulumi.type_token("aws-native:rtbfabric:LinkResponderErrorMaskingLoggingType")
36
+ class LinkResponderErrorMaskingLoggingType(_builtins.str, Enum):
37
+ NONE = "NONE"
38
+ METRIC = "METRIC"
39
+ RESPONSE = "RESPONSE"
40
+
41
+
42
+ @pulumi.type_token("aws-native:rtbfabric:LinkStatus")
43
+ class LinkStatus(_builtins.str, Enum):
44
+ PENDING_CREATION = "PENDING_CREATION"
45
+ PENDING_REQUEST = "PENDING_REQUEST"
46
+ REQUESTED = "REQUESTED"
47
+ ACCEPTED = "ACCEPTED"
48
+ ACTIVE = "ACTIVE"
49
+ DECLINED = "DECLINED"
50
+ FAILED = "FAILED"
51
+ PENDING_DELETION = "PENDING_DELETION"
52
+ DELETED = "DELETED"
53
+ PENDING_UPDATE = "PENDING_UPDATE"
54
+ PENDING_ISOLATION = "PENDING_ISOLATION"
55
+ ISOLATED = "ISOLATED"
56
+ PENDING_RESTORATION = "PENDING_RESTORATION"
57
+ UNKNOWN_TO_SDK_VERSION = "UNKNOWN_TO_SDK_VERSION"
58
+
59
+
60
+ @pulumi.type_token("aws-native:rtbfabric:RequesterGatewayStatus")
61
+ class RequesterGatewayStatus(_builtins.str, Enum):
62
+ PENDING_CREATION = "PENDING_CREATION"
63
+ ACTIVE = "ACTIVE"
64
+ PENDING_DELETION = "PENDING_DELETION"
65
+ DELETED = "DELETED"
66
+ ERROR = "ERROR"
67
+ PENDING_UPDATE = "PENDING_UPDATE"
68
+ ISOLATED = "ISOLATED"
69
+ PENDING_ISOLATION = "PENDING_ISOLATION"
70
+ PENDING_RESTORATION = "PENDING_RESTORATION"
71
+
72
+
73
+ @pulumi.type_token("aws-native:rtbfabric:ResponderGatewayProtocol")
74
+ class ResponderGatewayProtocol(_builtins.str, Enum):
75
+ HTTP = "HTTP"
76
+ HTTPS = "HTTPS"
77
+
78
+
79
+ @pulumi.type_token("aws-native:rtbfabric:ResponderGatewayStatus")
80
+ class ResponderGatewayStatus(_builtins.str, Enum):
81
+ PENDING_CREATION = "PENDING_CREATION"
82
+ ACTIVE = "ACTIVE"
83
+ PENDING_DELETION = "PENDING_DELETION"
84
+ DELETED = "DELETED"
85
+ ERROR = "ERROR"
86
+ PENDING_UPDATE = "PENDING_UPDATE"
87
+ ISOLATED = "ISOLATED"
88
+ PENDING_ISOLATION = "PENDING_ISOLATION"
89
+ PENDING_RESTORATION = "PENDING_RESTORATION"