pulumi-aws 7.16.0a1767399337__py3-none-any.whl → 7.17.0__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.
Files changed (215) hide show
  1. pulumi_aws/__init__.py +222 -0
  2. pulumi_aws/_inputs.py +40 -0
  3. pulumi_aws/acm/certificate.py +6 -6
  4. pulumi_aws/acmpca/certificate.py +6 -6
  5. pulumi_aws/alb/_inputs.py +6 -0
  6. pulumi_aws/alb/listener.py +7 -7
  7. pulumi_aws/alb/outputs.py +4 -0
  8. pulumi_aws/alb/target_group.py +7 -7
  9. pulumi_aws/alb/target_group_attachment.py +83 -0
  10. pulumi_aws/apigateway/domain_name.py +133 -7
  11. pulumi_aws/apigateway/get_domain_name.py +15 -1
  12. pulumi_aws/apigateway/integration.py +48 -8
  13. pulumi_aws/apigatewayv2/__init__.py +1 -0
  14. pulumi_aws/apigatewayv2/_inputs.py +279 -0
  15. pulumi_aws/apigatewayv2/domain_name.py +47 -0
  16. pulumi_aws/apigatewayv2/outputs.py +270 -0
  17. pulumi_aws/apigatewayv2/routing_rule.py +497 -0
  18. pulumi_aws/arcregionswitch/__init__.py +13 -0
  19. pulumi_aws/arcregionswitch/_inputs.py +4878 -0
  20. pulumi_aws/arcregionswitch/get_plan.py +284 -0
  21. pulumi_aws/arcregionswitch/get_route53_health_checks.py +148 -0
  22. pulumi_aws/arcregionswitch/outputs.py +3992 -0
  23. pulumi_aws/arcregionswitch/plan.py +1101 -0
  24. pulumi_aws/athena/_inputs.py +412 -5
  25. pulumi_aws/athena/outputs.py +342 -2
  26. pulumi_aws/autoscaling/group.py +7 -7
  27. pulumi_aws/backup/global_settings.py +15 -7
  28. pulumi_aws/batch/_inputs.py +106 -6
  29. pulumi_aws/batch/outputs.py +92 -6
  30. pulumi_aws/bedrock/_inputs.py +77 -3
  31. pulumi_aws/bedrock/agent_data_source.py +72 -0
  32. pulumi_aws/bedrock/agentcore_memory_strategy.py +8 -0
  33. pulumi_aws/bedrock/outputs.py +67 -2
  34. pulumi_aws/cleanrooms/_inputs.py +60 -0
  35. pulumi_aws/cleanrooms/collaboration.py +83 -143
  36. pulumi_aws/cleanrooms/outputs.py +36 -0
  37. pulumi_aws/cloudfront/__init__.py +7 -0
  38. pulumi_aws/cloudfront/_inputs.py +3663 -506
  39. pulumi_aws/cloudfront/anycast_ip_list.py +450 -0
  40. pulumi_aws/cloudfront/connection_function.py +658 -0
  41. pulumi_aws/cloudfront/connection_group.py +649 -0
  42. pulumi_aws/cloudfront/distribution.py +142 -0
  43. pulumi_aws/cloudfront/distribution_tenant.py +857 -0
  44. pulumi_aws/cloudfront/get_connection_group.py +249 -0
  45. pulumi_aws/cloudfront/get_distribution_tenant.py +279 -0
  46. pulumi_aws/cloudfront/multitenant_distribution.py +1309 -0
  47. pulumi_aws/cloudfront/outputs.py +2876 -200
  48. pulumi_aws/cloudwatch/log_subscription_filter.py +136 -42
  49. pulumi_aws/codebuild/webhook.py +8 -8
  50. pulumi_aws/codepipeline/webhook.py +8 -8
  51. pulumi_aws/config/outputs.py +24 -0
  52. pulumi_aws/directconnect/gateway.py +78 -3
  53. pulumi_aws/directconnect/get_gateway.py +24 -4
  54. pulumi_aws/dlm/_inputs.py +3 -3
  55. pulumi_aws/dlm/outputs.py +2 -2
  56. pulumi_aws/docdb/cluster_instance.py +179 -317
  57. pulumi_aws/dynamodb/__init__.py +1 -0
  58. pulumi_aws/dynamodb/_inputs.py +462 -22
  59. pulumi_aws/dynamodb/global_secondary_index.py +666 -0
  60. pulumi_aws/dynamodb/outputs.py +418 -16
  61. pulumi_aws/dynamodb/table.py +194 -8
  62. pulumi_aws/ec2/__init__.py +1 -0
  63. pulumi_aws/ec2/_inputs.py +201 -4
  64. pulumi_aws/ec2/get_vpc_endpoint.py +24 -4
  65. pulumi_aws/ec2/get_vpc_ipam_pool.py +15 -1
  66. pulumi_aws/ec2/launch_template.py +34 -0
  67. pulumi_aws/ec2/outputs.py +254 -4
  68. pulumi_aws/ec2/placement_group.py +7 -7
  69. pulumi_aws/ec2/security_group.py +2 -2
  70. pulumi_aws/ec2/subnet.py +290 -30
  71. pulumi_aws/ec2/vpc_ipam_pool.py +119 -0
  72. pulumi_aws/ec2/vpc_ipam_resource_discovery.py +47 -0
  73. pulumi_aws/ec2/vpc_security_group_rules_exclusive.py +307 -0
  74. pulumi_aws/ec2transitgateway/vpc_attachment.py +0 -26
  75. pulumi_aws/ecr/__init__.py +1 -0
  76. pulumi_aws/ecr/_inputs.py +58 -22
  77. pulumi_aws/ecr/account_setting.py +38 -9
  78. pulumi_aws/ecr/get_repository_creation_template.py +1 -1
  79. pulumi_aws/ecr/lifecycle_policy.py +152 -64
  80. pulumi_aws/ecr/outputs.py +37 -15
  81. pulumi_aws/ecr/pull_time_update_exclusion.py +363 -0
  82. pulumi_aws/ecr/repository_creation_template.py +7 -7
  83. pulumi_aws/ecs/_inputs.py +20 -0
  84. pulumi_aws/ecs/outputs.py +14 -0
  85. pulumi_aws/ecs/task_definition.py +28 -28
  86. pulumi_aws/eks/addon.py +74 -0
  87. pulumi_aws/elasticache/replication_group.py +7 -7
  88. pulumi_aws/fsx/_inputs.py +54 -32
  89. pulumi_aws/fsx/ontap_file_system.py +14 -0
  90. pulumi_aws/fsx/outputs.py +35 -19
  91. pulumi_aws/fsx/windows_file_system.py +42 -0
  92. pulumi_aws/glue/resource_policy.py +4 -4
  93. pulumi_aws/guardduty/_inputs.py +41 -1
  94. pulumi_aws/guardduty/outputs.py +27 -1
  95. pulumi_aws/iam/get_saml_provider.py +15 -1
  96. pulumi_aws/iam/outbound_web_identity_federation.py +0 -4
  97. pulumi_aws/iam/policy.py +47 -0
  98. pulumi_aws/iam/saml_provider.py +28 -0
  99. pulumi_aws/iam/virtual_mfa_device.py +66 -38
  100. pulumi_aws/imagebuilder/_inputs.py +87 -0
  101. pulumi_aws/imagebuilder/image.py +47 -0
  102. pulumi_aws/imagebuilder/image_pipeline.py +47 -0
  103. pulumi_aws/imagebuilder/outputs.py +87 -0
  104. pulumi_aws/invoicing/invoice_unit.py +16 -7
  105. pulumi_aws/iot/ca_certificate.py +12 -12
  106. pulumi_aws/iot/get_endpoint.py +24 -24
  107. pulumi_aws/iot/get_registration_code.py +6 -6
  108. pulumi_aws/kms/grant.py +18 -18
  109. pulumi_aws/lambda_/_enums.py +4 -0
  110. pulumi_aws/lambda_/_inputs.py +24 -4
  111. pulumi_aws/lambda_/event_source_mapping.py +2 -0
  112. pulumi_aws/lambda_/function.py +35 -7
  113. pulumi_aws/lambda_/function_url.py +4 -0
  114. pulumi_aws/lambda_/get_function.py +15 -1
  115. pulumi_aws/lambda_/outputs.py +17 -3
  116. pulumi_aws/lambda_/permission.py +47 -0
  117. pulumi_aws/lb/_inputs.py +6 -0
  118. pulumi_aws/lb/listener.py +7 -7
  119. pulumi_aws/lb/outputs.py +4 -0
  120. pulumi_aws/lb/target_group.py +7 -7
  121. pulumi_aws/lb/target_group_attachment.py +83 -0
  122. pulumi_aws/memorydb/user.py +4 -4
  123. pulumi_aws/networkfirewall/_inputs.py +3 -3
  124. pulumi_aws/networkfirewall/outputs.py +2 -2
  125. pulumi_aws/networkfirewall/vpc_endpoint_association.py +2 -2
  126. pulumi_aws/networkmanager/_inputs.py +20 -0
  127. pulumi_aws/networkmanager/outputs.py +12 -0
  128. pulumi_aws/networkmanager/vpc_attachment.py +7 -7
  129. pulumi_aws/notifications/__init__.py +4 -0
  130. pulumi_aws/notifications/_inputs.py +74 -0
  131. pulumi_aws/notifications/managed_notification_account_contact_association.py +242 -0
  132. pulumi_aws/notifications/managed_notification_additional_channel_association.py +248 -0
  133. pulumi_aws/notifications/organizational_unit_association.py +302 -0
  134. pulumi_aws/notifications/organizations_access.py +234 -0
  135. pulumi_aws/notifications/outputs.py +44 -0
  136. pulumi_aws/odb/_inputs.py +190 -0
  137. pulumi_aws/odb/network.py +188 -0
  138. pulumi_aws/odb/outputs.py +251 -1
  139. pulumi_aws/opensearch/__init__.py +1 -0
  140. pulumi_aws/opensearch/_inputs.py +269 -0
  141. pulumi_aws/opensearch/application.py +885 -0
  142. pulumi_aws/opensearch/outputs.py +200 -0
  143. pulumi_aws/opensearchingest/pipeline.py +47 -0
  144. pulumi_aws/organizations/__init__.py +2 -0
  145. pulumi_aws/organizations/get_entity_path.py +123 -0
  146. pulumi_aws/organizations/get_organization.py +24 -3
  147. pulumi_aws/organizations/organization.py +48 -1
  148. pulumi_aws/organizations/tag.py +292 -0
  149. pulumi_aws/pulumi-plugin.json +1 -1
  150. pulumi_aws/ram/__init__.py +2 -0
  151. pulumi_aws/ram/_inputs.py +34 -0
  152. pulumi_aws/ram/outputs.py +20 -0
  153. pulumi_aws/ram/permission.py +593 -0
  154. pulumi_aws/ram/resource_share_associations_exclusive.py +394 -0
  155. pulumi_aws/rds/cluster.py +21 -21
  156. pulumi_aws/rds/get_proxy.py +29 -1
  157. pulumi_aws/rds/proxy.py +94 -0
  158. pulumi_aws/rds/proxy_default_target_group.py +0 -76
  159. pulumi_aws/rds/proxy_target.py +0 -80
  160. pulumi_aws/redshift/__init__.py +1 -0
  161. pulumi_aws/redshift/_inputs.py +329 -0
  162. pulumi_aws/redshift/idc_application.py +687 -0
  163. pulumi_aws/redshift/outputs.py +265 -0
  164. pulumi_aws/resourcegroupstaggingapi/__init__.py +1 -0
  165. pulumi_aws/resourcegroupstaggingapi/get_required_tags.py +128 -0
  166. pulumi_aws/resourcegroupstaggingapi/outputs.py +41 -0
  167. pulumi_aws/route53/get_resolver_firewall_rules.py +9 -0
  168. pulumi_aws/route53/get_resolver_rule.py +19 -4
  169. pulumi_aws/route53/health_check.py +8 -8
  170. pulumi_aws/route53/outputs.py +108 -1
  171. pulumi_aws/route53/resolver_firewall_rule.py +199 -32
  172. pulumi_aws/s3/__init__.py +2 -0
  173. pulumi_aws/s3/bucket_replication_config.py +14 -7
  174. pulumi_aws/s3/get_bucket_object_lock_configuration.py +180 -0
  175. pulumi_aws/s3/get_bucket_replication_configuration.py +159 -0
  176. pulumi_aws/s3/get_object.py +33 -2
  177. pulumi_aws/s3/outputs.py +487 -0
  178. pulumi_aws/s3control/__init__.py +2 -0
  179. pulumi_aws/s3control/get_access_points.py +223 -0
  180. pulumi_aws/s3control/get_multi_region_access_points.py +148 -0
  181. pulumi_aws/s3control/outputs.py +293 -0
  182. pulumi_aws/sagemaker/__init__.py +3 -0
  183. pulumi_aws/sagemaker/_inputs.py +3644 -869
  184. pulumi_aws/sagemaker/labeling_job.py +890 -0
  185. pulumi_aws/sagemaker/model_card.py +547 -0
  186. pulumi_aws/sagemaker/model_card_export_job.py +468 -0
  187. pulumi_aws/sagemaker/outputs.py +3069 -710
  188. pulumi_aws/savingsplans/__init__.py +12 -0
  189. pulumi_aws/savingsplans/_inputs.py +75 -0
  190. pulumi_aws/savingsplans/get_savings_plan.py +376 -0
  191. pulumi_aws/savingsplans/outputs.py +51 -0
  192. pulumi_aws/savingsplans/savings_plan.py +945 -0
  193. pulumi_aws/secretsmanager/__init__.py +1 -0
  194. pulumi_aws/secretsmanager/tag.py +333 -0
  195. pulumi_aws/sesv2/__init__.py +2 -0
  196. pulumi_aws/sesv2/tenant.py +418 -0
  197. pulumi_aws/sesv2/tenant_resource_association.py +303 -0
  198. pulumi_aws/sfn/activity.py +0 -4
  199. pulumi_aws/sfn/alias.py +0 -4
  200. pulumi_aws/ssoadmin/__init__.py +1 -0
  201. pulumi_aws/ssoadmin/_inputs.py +54 -0
  202. pulumi_aws/ssoadmin/managed_policy_attachment.py +4 -0
  203. pulumi_aws/ssoadmin/managed_policy_attachments_exclusive.py +445 -0
  204. pulumi_aws/ssoadmin/outputs.py +32 -0
  205. pulumi_aws/transfer/_inputs.py +126 -0
  206. pulumi_aws/transfer/outputs.py +97 -0
  207. pulumi_aws/transfer/web_app.py +54 -7
  208. pulumi_aws/vpclattice/service_network_resource_association.py +47 -0
  209. pulumi_aws/wafv2/__init__.py +1 -0
  210. pulumi_aws/wafv2/get_managed_rule_group.py +269 -0
  211. pulumi_aws/wafv2/outputs.py +383 -0
  212. {pulumi_aws-7.16.0a1767399337.dist-info → pulumi_aws-7.17.0.dist-info}/METADATA +1 -1
  213. {pulumi_aws-7.16.0a1767399337.dist-info → pulumi_aws-7.17.0.dist-info}/RECORD +215 -170
  214. {pulumi_aws-7.16.0a1767399337.dist-info → pulumi_aws-7.17.0.dist-info}/WHEEL +1 -1
  215. {pulumi_aws-7.16.0a1767399337.dist-info → pulumi_aws-7.17.0.dist-info}/top_level.txt +0 -0
pulumi_aws/__init__.py CHANGED
@@ -65,6 +65,8 @@ if typing.TYPE_CHECKING:
65
65
  appstream = __appstream
66
66
  import pulumi_aws.appsync as __appsync
67
67
  appsync = __appsync
68
+ import pulumi_aws.arcregionswitch as __arcregionswitch
69
+ arcregionswitch = __arcregionswitch
68
70
  import pulumi_aws.athena as __athena
69
71
  athena = __athena
70
72
  import pulumi_aws.auditmanager as __auditmanager
@@ -401,6 +403,8 @@ if typing.TYPE_CHECKING:
401
403
  s3tables = __s3tables
402
404
  import pulumi_aws.sagemaker as __sagemaker
403
405
  sagemaker = __sagemaker
406
+ import pulumi_aws.savingsplans as __savingsplans
407
+ savingsplans = __savingsplans
404
408
  import pulumi_aws.scheduler as __scheduler
405
409
  scheduler = __scheduler
406
410
  import pulumi_aws.schemas as __schemas
@@ -500,6 +504,7 @@ else:
500
504
  apprunner = _utilities.lazy_import('pulumi_aws.apprunner')
501
505
  appstream = _utilities.lazy_import('pulumi_aws.appstream')
502
506
  appsync = _utilities.lazy_import('pulumi_aws.appsync')
507
+ arcregionswitch = _utilities.lazy_import('pulumi_aws.arcregionswitch')
503
508
  athena = _utilities.lazy_import('pulumi_aws.athena')
504
509
  auditmanager = _utilities.lazy_import('pulumi_aws.auditmanager')
505
510
  autoscaling = _utilities.lazy_import('pulumi_aws.autoscaling')
@@ -668,6 +673,7 @@ else:
668
673
  s3outposts = _utilities.lazy_import('pulumi_aws.s3outposts')
669
674
  s3tables = _utilities.lazy_import('pulumi_aws.s3tables')
670
675
  sagemaker = _utilities.lazy_import('pulumi_aws.sagemaker')
676
+ savingsplans = _utilities.lazy_import('pulumi_aws.savingsplans')
671
677
  scheduler = _utilities.lazy_import('pulumi_aws.scheduler')
672
678
  schemas = _utilities.lazy_import('pulumi_aws.schemas')
673
679
  secretsmanager = _utilities.lazy_import('pulumi_aws.secretsmanager')
@@ -1239,6 +1245,14 @@ _utilities.register(
1239
1245
  "aws:apigatewayv2/routeResponse:RouteResponse": "RouteResponse"
1240
1246
  }
1241
1247
  },
1248
+ {
1249
+ "pkg": "aws",
1250
+ "mod": "apigatewayv2/routingRule",
1251
+ "fqn": "pulumi_aws.apigatewayv2",
1252
+ "classes": {
1253
+ "aws:apigatewayv2/routingRule:RoutingRule": "RoutingRule"
1254
+ }
1255
+ },
1242
1256
  {
1243
1257
  "pkg": "aws",
1244
1258
  "mod": "apigatewayv2/stage",
@@ -1703,6 +1717,14 @@ _utilities.register(
1703
1717
  "aws:appsync/type:Type": "Type"
1704
1718
  }
1705
1719
  },
1720
+ {
1721
+ "pkg": "aws",
1722
+ "mod": "arcregionswitch/plan",
1723
+ "fqn": "pulumi_aws.arcregionswitch",
1724
+ "classes": {
1725
+ "aws:arcregionswitch/plan:Plan": "Plan"
1726
+ }
1727
+ },
1706
1728
  {
1707
1729
  "pkg": "aws",
1708
1730
  "mod": "athena/capacityReservation",
@@ -2575,6 +2597,14 @@ _utilities.register(
2575
2597
  "aws:cloudformation/stackSetInstance:StackSetInstance": "StackSetInstance"
2576
2598
  }
2577
2599
  },
2600
+ {
2601
+ "pkg": "aws",
2602
+ "mod": "cloudfront/anycastIpList",
2603
+ "fqn": "pulumi_aws.cloudfront",
2604
+ "classes": {
2605
+ "aws:cloudfront/anycastIpList:AnycastIpList": "AnycastIpList"
2606
+ }
2607
+ },
2578
2608
  {
2579
2609
  "pkg": "aws",
2580
2610
  "mod": "cloudfront/cachePolicy",
@@ -2583,6 +2613,22 @@ _utilities.register(
2583
2613
  "aws:cloudfront/cachePolicy:CachePolicy": "CachePolicy"
2584
2614
  }
2585
2615
  },
2616
+ {
2617
+ "pkg": "aws",
2618
+ "mod": "cloudfront/connectionFunction",
2619
+ "fqn": "pulumi_aws.cloudfront",
2620
+ "classes": {
2621
+ "aws:cloudfront/connectionFunction:ConnectionFunction": "ConnectionFunction"
2622
+ }
2623
+ },
2624
+ {
2625
+ "pkg": "aws",
2626
+ "mod": "cloudfront/connectionGroup",
2627
+ "fqn": "pulumi_aws.cloudfront",
2628
+ "classes": {
2629
+ "aws:cloudfront/connectionGroup:ConnectionGroup": "ConnectionGroup"
2630
+ }
2631
+ },
2586
2632
  {
2587
2633
  "pkg": "aws",
2588
2634
  "mod": "cloudfront/continuousDeploymentPolicy",
@@ -2599,6 +2645,14 @@ _utilities.register(
2599
2645
  "aws:cloudfront/distribution:Distribution": "Distribution"
2600
2646
  }
2601
2647
  },
2648
+ {
2649
+ "pkg": "aws",
2650
+ "mod": "cloudfront/distributionTenant",
2651
+ "fqn": "pulumi_aws.cloudfront",
2652
+ "classes": {
2653
+ "aws:cloudfront/distributionTenant:DistributionTenant": "DistributionTenant"
2654
+ }
2655
+ },
2602
2656
  {
2603
2657
  "pkg": "aws",
2604
2658
  "mod": "cloudfront/fieldLevelEncryptionConfig",
@@ -2663,6 +2717,14 @@ _utilities.register(
2663
2717
  "aws:cloudfront/monitoringSubscription:MonitoringSubscription": "MonitoringSubscription"
2664
2718
  }
2665
2719
  },
2720
+ {
2721
+ "pkg": "aws",
2722
+ "mod": "cloudfront/multitenantDistribution",
2723
+ "fqn": "pulumi_aws.cloudfront",
2724
+ "classes": {
2725
+ "aws:cloudfront/multitenantDistribution:MultitenantDistribution": "MultitenantDistribution"
2726
+ }
2727
+ },
2666
2728
  {
2667
2729
  "pkg": "aws",
2668
2730
  "mod": "cloudfront/originAccessControl",
@@ -4439,6 +4501,14 @@ _utilities.register(
4439
4501
  "aws:dynamodb/contributorInsights:ContributorInsights": "ContributorInsights"
4440
4502
  }
4441
4503
  },
4504
+ {
4505
+ "pkg": "aws",
4506
+ "mod": "dynamodb/globalSecondaryIndex",
4507
+ "fqn": "pulumi_aws.dynamodb",
4508
+ "classes": {
4509
+ "aws:dynamodb/globalSecondaryIndex:GlobalSecondaryIndex": "GlobalSecondaryIndex"
4510
+ }
4511
+ },
4442
4512
  {
4443
4513
  "pkg": "aws",
4444
4514
  "mod": "dynamodb/globalTable",
@@ -5359,6 +5429,14 @@ _utilities.register(
5359
5429
  "aws:ec2/vpcPeeringConnectionAccepter:VpcPeeringConnectionAccepter": "VpcPeeringConnectionAccepter"
5360
5430
  }
5361
5431
  },
5432
+ {
5433
+ "pkg": "aws",
5434
+ "mod": "ec2/vpcSecurityGroupRulesExclusive",
5435
+ "fqn": "pulumi_aws.ec2",
5436
+ "classes": {
5437
+ "aws:ec2/vpcSecurityGroupRulesExclusive:VpcSecurityGroupRulesExclusive": "VpcSecurityGroupRulesExclusive"
5438
+ }
5439
+ },
5362
5440
  {
5363
5441
  "pkg": "aws",
5364
5442
  "mod": "ec2/vpnConcentrator",
@@ -5639,6 +5717,14 @@ _utilities.register(
5639
5717
  "aws:ecr/pullThroughCacheRule:PullThroughCacheRule": "PullThroughCacheRule"
5640
5718
  }
5641
5719
  },
5720
+ {
5721
+ "pkg": "aws",
5722
+ "mod": "ecr/pullTimeUpdateExclusion",
5723
+ "fqn": "pulumi_aws.ecr",
5724
+ "classes": {
5725
+ "aws:ecr/pullTimeUpdateExclusion:PullTimeUpdateExclusion": "PullTimeUpdateExclusion"
5726
+ }
5727
+ },
5642
5728
  {
5643
5729
  "pkg": "aws",
5644
5730
  "mod": "ecr/registryPolicy",
@@ -9007,6 +9093,22 @@ _utilities.register(
9007
9093
  "aws:notifications/eventRule:EventRule": "EventRule"
9008
9094
  }
9009
9095
  },
9096
+ {
9097
+ "pkg": "aws",
9098
+ "mod": "notifications/managedNotificationAccountContactAssociation",
9099
+ "fqn": "pulumi_aws.notifications",
9100
+ "classes": {
9101
+ "aws:notifications/managedNotificationAccountContactAssociation:ManagedNotificationAccountContactAssociation": "ManagedNotificationAccountContactAssociation"
9102
+ }
9103
+ },
9104
+ {
9105
+ "pkg": "aws",
9106
+ "mod": "notifications/managedNotificationAdditionalChannelAssociation",
9107
+ "fqn": "pulumi_aws.notifications",
9108
+ "classes": {
9109
+ "aws:notifications/managedNotificationAdditionalChannelAssociation:ManagedNotificationAdditionalChannelAssociation": "ManagedNotificationAdditionalChannelAssociation"
9110
+ }
9111
+ },
9010
9112
  {
9011
9113
  "pkg": "aws",
9012
9114
  "mod": "notifications/notificationConfiguration",
@@ -9023,6 +9125,22 @@ _utilities.register(
9023
9125
  "aws:notifications/notificationHub:NotificationHub": "NotificationHub"
9024
9126
  }
9025
9127
  },
9128
+ {
9129
+ "pkg": "aws",
9130
+ "mod": "notifications/organizationalUnitAssociation",
9131
+ "fqn": "pulumi_aws.notifications",
9132
+ "classes": {
9133
+ "aws:notifications/organizationalUnitAssociation:OrganizationalUnitAssociation": "OrganizationalUnitAssociation"
9134
+ }
9135
+ },
9136
+ {
9137
+ "pkg": "aws",
9138
+ "mod": "notifications/organizationsAccess",
9139
+ "fqn": "pulumi_aws.notifications",
9140
+ "classes": {
9141
+ "aws:notifications/organizationsAccess:OrganizationsAccess": "OrganizationsAccess"
9142
+ }
9143
+ },
9026
9144
  {
9027
9145
  "pkg": "aws",
9028
9146
  "mod": "oam/link",
@@ -9095,6 +9213,14 @@ _utilities.register(
9095
9213
  "aws:odb/networkPeeringConnection:NetworkPeeringConnection": "NetworkPeeringConnection"
9096
9214
  }
9097
9215
  },
9216
+ {
9217
+ "pkg": "aws",
9218
+ "mod": "opensearch/application",
9219
+ "fqn": "pulumi_aws.opensearch",
9220
+ "classes": {
9221
+ "aws:opensearch/application:Application": "Application"
9222
+ }
9223
+ },
9098
9224
  {
9099
9225
  "pkg": "aws",
9100
9226
  "mod": "opensearch/authorizeVpcEndpointAccess",
@@ -9279,6 +9405,14 @@ _utilities.register(
9279
9405
  "aws:organizations/resourcePolicy:ResourcePolicy": "ResourcePolicy"
9280
9406
  }
9281
9407
  },
9408
+ {
9409
+ "pkg": "aws",
9410
+ "mod": "organizations/tag",
9411
+ "fqn": "pulumi_aws.organizations",
9412
+ "classes": {
9413
+ "aws:organizations/tag:Tag": "Tag"
9414
+ }
9415
+ },
9282
9416
  {
9283
9417
  "pkg": "aws",
9284
9418
  "mod": "paymentcryptography/key",
@@ -9647,6 +9781,14 @@ _utilities.register(
9647
9781
  "aws:quicksight/vpcConnection:VpcConnection": "VpcConnection"
9648
9782
  }
9649
9783
  },
9784
+ {
9785
+ "pkg": "aws",
9786
+ "mod": "ram/permission",
9787
+ "fqn": "pulumi_aws.ram",
9788
+ "classes": {
9789
+ "aws:ram/permission:Permission": "Permission"
9790
+ }
9791
+ },
9650
9792
  {
9651
9793
  "pkg": "aws",
9652
9794
  "mod": "ram/principalAssociation",
@@ -9679,6 +9821,14 @@ _utilities.register(
9679
9821
  "aws:ram/resourceShareAccepter:ResourceShareAccepter": "ResourceShareAccepter"
9680
9822
  }
9681
9823
  },
9824
+ {
9825
+ "pkg": "aws",
9826
+ "mod": "ram/resourceShareAssociationsExclusive",
9827
+ "fqn": "pulumi_aws.ram",
9828
+ "classes": {
9829
+ "aws:ram/resourceShareAssociationsExclusive:ResourceShareAssociationsExclusive": "ResourceShareAssociationsExclusive"
9830
+ }
9831
+ },
9682
9832
  {
9683
9833
  "pkg": "aws",
9684
9834
  "mod": "ram/sharingWithOrganization",
@@ -10015,6 +10165,14 @@ _utilities.register(
10015
10165
  "aws:redshift/hsmConfiguration:HsmConfiguration": "HsmConfiguration"
10016
10166
  }
10017
10167
  },
10168
+ {
10169
+ "pkg": "aws",
10170
+ "mod": "redshift/idcApplication",
10171
+ "fqn": "pulumi_aws.redshift",
10172
+ "classes": {
10173
+ "aws:redshift/idcApplication:IdcApplication": "IdcApplication"
10174
+ }
10175
+ },
10018
10176
  {
10019
10177
  "pkg": "aws",
10020
10178
  "mod": "redshift/integration",
@@ -11223,6 +11381,14 @@ _utilities.register(
11223
11381
  "aws:sagemaker/imageVersion:ImageVersion": "ImageVersion"
11224
11382
  }
11225
11383
  },
11384
+ {
11385
+ "pkg": "aws",
11386
+ "mod": "sagemaker/labelingJob",
11387
+ "fqn": "pulumi_aws.sagemaker",
11388
+ "classes": {
11389
+ "aws:sagemaker/labelingJob:LabelingJob": "LabelingJob"
11390
+ }
11391
+ },
11226
11392
  {
11227
11393
  "pkg": "aws",
11228
11394
  "mod": "sagemaker/mlflowTrackingServer",
@@ -11239,6 +11405,22 @@ _utilities.register(
11239
11405
  "aws:sagemaker/model:Model": "Model"
11240
11406
  }
11241
11407
  },
11408
+ {
11409
+ "pkg": "aws",
11410
+ "mod": "sagemaker/modelCard",
11411
+ "fqn": "pulumi_aws.sagemaker",
11412
+ "classes": {
11413
+ "aws:sagemaker/modelCard:ModelCard": "ModelCard"
11414
+ }
11415
+ },
11416
+ {
11417
+ "pkg": "aws",
11418
+ "mod": "sagemaker/modelCardExportJob",
11419
+ "fqn": "pulumi_aws.sagemaker",
11420
+ "classes": {
11421
+ "aws:sagemaker/modelCardExportJob:ModelCardExportJob": "ModelCardExportJob"
11422
+ }
11423
+ },
11242
11424
  {
11243
11425
  "pkg": "aws",
11244
11426
  "mod": "sagemaker/modelPackageGroup",
@@ -11343,6 +11525,14 @@ _utilities.register(
11343
11525
  "aws:sagemaker/workteam:Workteam": "Workteam"
11344
11526
  }
11345
11527
  },
11528
+ {
11529
+ "pkg": "aws",
11530
+ "mod": "savingsplans/savingsPlan",
11531
+ "fqn": "pulumi_aws.savingsplans",
11532
+ "classes": {
11533
+ "aws:savingsplans/savingsPlan:SavingsPlan": "SavingsPlan"
11534
+ }
11535
+ },
11346
11536
  {
11347
11537
  "pkg": "aws",
11348
11538
  "mod": "scheduler/schedule",
@@ -11423,6 +11613,14 @@ _utilities.register(
11423
11613
  "aws:secretsmanager/secretVersion:SecretVersion": "SecretVersion"
11424
11614
  }
11425
11615
  },
11616
+ {
11617
+ "pkg": "aws",
11618
+ "mod": "secretsmanager/tag",
11619
+ "fqn": "pulumi_aws.secretsmanager",
11620
+ "classes": {
11621
+ "aws:secretsmanager/tag:Tag": "Tag"
11622
+ }
11623
+ },
11426
11624
  {
11427
11625
  "pkg": "aws",
11428
11626
  "mod": "securityhub/account",
@@ -11983,6 +12181,22 @@ _utilities.register(
11983
12181
  "aws:sesv2/emailIdentityPolicy:EmailIdentityPolicy": "EmailIdentityPolicy"
11984
12182
  }
11985
12183
  },
12184
+ {
12185
+ "pkg": "aws",
12186
+ "mod": "sesv2/tenant",
12187
+ "fqn": "pulumi_aws.sesv2",
12188
+ "classes": {
12189
+ "aws:sesv2/tenant:Tenant": "Tenant"
12190
+ }
12191
+ },
12192
+ {
12193
+ "pkg": "aws",
12194
+ "mod": "sesv2/tenantResourceAssociation",
12195
+ "fqn": "pulumi_aws.sesv2",
12196
+ "classes": {
12197
+ "aws:sesv2/tenantResourceAssociation:TenantResourceAssociation": "TenantResourceAssociation"
12198
+ }
12199
+ },
11986
12200
  {
11987
12201
  "pkg": "aws",
11988
12202
  "mod": "sfn/activity",
@@ -12391,6 +12605,14 @@ _utilities.register(
12391
12605
  "aws:ssoadmin/managedPolicyAttachment:ManagedPolicyAttachment": "ManagedPolicyAttachment"
12392
12606
  }
12393
12607
  },
12608
+ {
12609
+ "pkg": "aws",
12610
+ "mod": "ssoadmin/managedPolicyAttachmentsExclusive",
12611
+ "fqn": "pulumi_aws.ssoadmin",
12612
+ "classes": {
12613
+ "aws:ssoadmin/managedPolicyAttachmentsExclusive:ManagedPolicyAttachmentsExclusive": "ManagedPolicyAttachmentsExclusive"
12614
+ }
12615
+ },
12394
12616
  {
12395
12617
  "pkg": "aws",
12396
12618
  "mod": "ssoadmin/permissionSet",
pulumi_aws/_inputs.py CHANGED
@@ -1172,6 +1172,10 @@ if not MYPY:
1172
1172
  """
1173
1173
  Use this to override the default service endpoint URL
1174
1174
  """
1175
+ mpa: NotRequired[pulumi.Input[_builtins.str]]
1176
+ """
1177
+ Use this to override the default service endpoint URL
1178
+ """
1175
1179
  mq: NotRequired[pulumi.Input[_builtins.str]]
1176
1180
  """
1177
1181
  Use this to override the default service endpoint URL
@@ -1436,6 +1440,10 @@ if not MYPY:
1436
1440
  """
1437
1441
  Use this to override the default service endpoint URL
1438
1442
  """
1443
+ savingsplans: NotRequired[pulumi.Input[_builtins.str]]
1444
+ """
1445
+ Use this to override the default service endpoint URL
1446
+ """
1439
1447
  scheduler: NotRequired[pulumi.Input[_builtins.str]]
1440
1448
  """
1441
1449
  Use this to override the default service endpoint URL
@@ -1827,6 +1835,7 @@ class ProviderEndpointArgs:
1827
1835
  mediastore: Optional[pulumi.Input[_builtins.str]] = None,
1828
1836
  memorydb: Optional[pulumi.Input[_builtins.str]] = None,
1829
1837
  mgn: Optional[pulumi.Input[_builtins.str]] = None,
1838
+ mpa: Optional[pulumi.Input[_builtins.str]] = None,
1830
1839
  mq: Optional[pulumi.Input[_builtins.str]] = None,
1831
1840
  msk: Optional[pulumi.Input[_builtins.str]] = None,
1832
1841
  mwaa: Optional[pulumi.Input[_builtins.str]] = None,
@@ -1893,6 +1902,7 @@ class ProviderEndpointArgs:
1893
1902
  s3tables: Optional[pulumi.Input[_builtins.str]] = None,
1894
1903
  s3vectors: Optional[pulumi.Input[_builtins.str]] = None,
1895
1904
  sagemaker: Optional[pulumi.Input[_builtins.str]] = None,
1905
+ savingsplans: Optional[pulumi.Input[_builtins.str]] = None,
1896
1906
  scheduler: Optional[pulumi.Input[_builtins.str]] = None,
1897
1907
  schemas: Optional[pulumi.Input[_builtins.str]] = None,
1898
1908
  secretsmanager: Optional[pulumi.Input[_builtins.str]] = None,
@@ -2135,6 +2145,7 @@ class ProviderEndpointArgs:
2135
2145
  :param pulumi.Input[_builtins.str] mediastore: Use this to override the default service endpoint URL
2136
2146
  :param pulumi.Input[_builtins.str] memorydb: Use this to override the default service endpoint URL
2137
2147
  :param pulumi.Input[_builtins.str] mgn: Use this to override the default service endpoint URL
2148
+ :param pulumi.Input[_builtins.str] mpa: Use this to override the default service endpoint URL
2138
2149
  :param pulumi.Input[_builtins.str] mq: Use this to override the default service endpoint URL
2139
2150
  :param pulumi.Input[_builtins.str] msk: Use this to override the default service endpoint URL
2140
2151
  :param pulumi.Input[_builtins.str] mwaa: Use this to override the default service endpoint URL
@@ -2201,6 +2212,7 @@ class ProviderEndpointArgs:
2201
2212
  :param pulumi.Input[_builtins.str] s3tables: Use this to override the default service endpoint URL
2202
2213
  :param pulumi.Input[_builtins.str] s3vectors: Use this to override the default service endpoint URL
2203
2214
  :param pulumi.Input[_builtins.str] sagemaker: Use this to override the default service endpoint URL
2215
+ :param pulumi.Input[_builtins.str] savingsplans: Use this to override the default service endpoint URL
2204
2216
  :param pulumi.Input[_builtins.str] scheduler: Use this to override the default service endpoint URL
2205
2217
  :param pulumi.Input[_builtins.str] schemas: Use this to override the default service endpoint URL
2206
2218
  :param pulumi.Input[_builtins.str] secretsmanager: Use this to override the default service endpoint URL
@@ -2636,6 +2648,8 @@ class ProviderEndpointArgs:
2636
2648
  pulumi.set(__self__, "memorydb", memorydb)
2637
2649
  if mgn is not None:
2638
2650
  pulumi.set(__self__, "mgn", mgn)
2651
+ if mpa is not None:
2652
+ pulumi.set(__self__, "mpa", mpa)
2639
2653
  if mq is not None:
2640
2654
  pulumi.set(__self__, "mq", mq)
2641
2655
  if msk is not None:
@@ -2768,6 +2782,8 @@ class ProviderEndpointArgs:
2768
2782
  pulumi.set(__self__, "s3vectors", s3vectors)
2769
2783
  if sagemaker is not None:
2770
2784
  pulumi.set(__self__, "sagemaker", sagemaker)
2785
+ if savingsplans is not None:
2786
+ pulumi.set(__self__, "savingsplans", savingsplans)
2771
2787
  if scheduler is not None:
2772
2788
  pulumi.set(__self__, "scheduler", scheduler)
2773
2789
  if schemas is not None:
@@ -5181,6 +5197,18 @@ class ProviderEndpointArgs:
5181
5197
  def mgn(self, value: Optional[pulumi.Input[_builtins.str]]):
5182
5198
  pulumi.set(self, "mgn", value)
5183
5199
 
5200
+ @_builtins.property
5201
+ @pulumi.getter
5202
+ def mpa(self) -> Optional[pulumi.Input[_builtins.str]]:
5203
+ """
5204
+ Use this to override the default service endpoint URL
5205
+ """
5206
+ return pulumi.get(self, "mpa")
5207
+
5208
+ @mpa.setter
5209
+ def mpa(self, value: Optional[pulumi.Input[_builtins.str]]):
5210
+ pulumi.set(self, "mpa", value)
5211
+
5184
5212
  @_builtins.property
5185
5213
  @pulumi.getter
5186
5214
  def mq(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -5973,6 +6001,18 @@ class ProviderEndpointArgs:
5973
6001
  def sagemaker(self, value: Optional[pulumi.Input[_builtins.str]]):
5974
6002
  pulumi.set(self, "sagemaker", value)
5975
6003
 
6004
+ @_builtins.property
6005
+ @pulumi.getter
6006
+ def savingsplans(self) -> Optional[pulumi.Input[_builtins.str]]:
6007
+ """
6008
+ Use this to override the default service endpoint URL
6009
+ """
6010
+ return pulumi.get(self, "savingsplans")
6011
+
6012
+ @savingsplans.setter
6013
+ def savingsplans(self, value: Optional[pulumi.Input[_builtins.str]]):
6014
+ pulumi.set(self, "savingsplans", value)
6015
+
5976
6016
  @_builtins.property
5977
6017
  @pulumi.getter
5978
6018
  def scheduler(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -641,10 +641,10 @@ class Certificate(pulumi.CustomResource):
641
641
  example_self_signed_cert = tls.SelfSignedCert("example",
642
642
  key_algorithm="RSA",
643
643
  private_key_pem=example.private_key_pem,
644
- subject=[{
645
- "commonName": "example.com",
644
+ subject={
645
+ "common_name": "example.com",
646
646
  "organization": "ACME Examples, Inc",
647
- }],
647
+ },
648
648
  validity_period_hours=12,
649
649
  allowed_uses=[
650
650
  "key_encipherment",
@@ -771,10 +771,10 @@ class Certificate(pulumi.CustomResource):
771
771
  example_self_signed_cert = tls.SelfSignedCert("example",
772
772
  key_algorithm="RSA",
773
773
  private_key_pem=example.private_key_pem,
774
- subject=[{
775
- "commonName": "example.com",
774
+ subject={
775
+ "common_name": "example.com",
776
776
  "organization": "ACME Examples, Inc",
777
- }],
777
+ },
778
778
  validity_period_hours=12,
779
779
  allowed_uses=[
780
780
  "key_encipherment",
@@ -349,9 +349,9 @@ class Certificate(pulumi.CustomResource):
349
349
  key = tls.PrivateKey("key", algorithm="RSA")
350
350
  csr = tls.CertRequest("csr",
351
351
  private_key_pem=key.private_key_pem,
352
- subject=[{
353
- "commonName": "example",
354
- }])
352
+ subject={
353
+ "common_name": "example",
354
+ })
355
355
  example = aws.acmpca.Certificate("example",
356
356
  certificate_authority_arn=example_certificate_authority.arn,
357
357
  certificate_signing_request=csr.cert_request_pem,
@@ -420,9 +420,9 @@ class Certificate(pulumi.CustomResource):
420
420
  key = tls.PrivateKey("key", algorithm="RSA")
421
421
  csr = tls.CertRequest("csr",
422
422
  private_key_pem=key.private_key_pem,
423
- subject=[{
424
- "commonName": "example",
425
- }])
423
+ subject={
424
+ "common_name": "example",
425
+ })
426
426
  example = aws.acmpca.Certificate("example",
427
427
  certificate_authority_arn=example_certificate_authority.arn,
428
428
  certificate_signing_request=csr.cert_request_pem,
pulumi_aws/alb/_inputs.py CHANGED
@@ -3485,6 +3485,7 @@ if not MYPY:
3485
3485
  The HTTP or gRPC codes to use when checking for a successful response from a target.
3486
3486
  The `health_check.protocol` must be one of `HTTP` or `HTTPS` or the `target_type` must be `lambda`.
3487
3487
  Values can be comma-separated individual values (e.g., "200,202") or a range of values (e.g., "200-299").
3488
+ Once the value has been set, removing it has no effect. To unset it, set it to an empty string `""`.
3488
3489
  * For gRPC-based target groups (i.e., the `protocol` is one of `HTTP` or `HTTPS` and the `protocol_version` is `GRPC`), values can be between `0` and `99`. The default is `12`.
3489
3490
  * When used with an Application Load Balancer (i.e., the `protocol` is one of `HTTP` or `HTTPS` and the `protocol_version` is not `GRPC`), values can be between `200` and `499`. The default is `200`.
3490
3491
  * When used with a Network Load Balancer (i.e., the `protocol` is one of `TCP`, `TCP_UDP`, `UDP`, or `TLS`), values can be between `200` and `599`. The default is `200-399`.
@@ -3493,6 +3494,7 @@ if not MYPY:
3493
3494
  path: NotRequired[pulumi.Input[_builtins.str]]
3494
3495
  """
3495
3496
  Destination for the health check request. Required for HTTP/HTTPS ALB and HTTP NLB. Only applies to HTTP/HTTPS.
3497
+ Once the value has been set, removing it has no effect. To unset it, set it to an empty string `""`.
3496
3498
  * For HTTP and HTTPS health checks, the default is `/`.
3497
3499
  * For gRPC health checks, the default is `/AWS.ALB/healthcheck`.
3498
3500
  """
@@ -3540,11 +3542,13 @@ class TargetGroupHealthCheckArgs:
3540
3542
  :param pulumi.Input[_builtins.str] matcher: The HTTP or gRPC codes to use when checking for a successful response from a target.
3541
3543
  The `health_check.protocol` must be one of `HTTP` or `HTTPS` or the `target_type` must be `lambda`.
3542
3544
  Values can be comma-separated individual values (e.g., "200,202") or a range of values (e.g., "200-299").
3545
+ Once the value has been set, removing it has no effect. To unset it, set it to an empty string `""`.
3543
3546
  * For gRPC-based target groups (i.e., the `protocol` is one of `HTTP` or `HTTPS` and the `protocol_version` is `GRPC`), values can be between `0` and `99`. The default is `12`.
3544
3547
  * When used with an Application Load Balancer (i.e., the `protocol` is one of `HTTP` or `HTTPS` and the `protocol_version` is not `GRPC`), values can be between `200` and `499`. The default is `200`.
3545
3548
  * When used with a Network Load Balancer (i.e., the `protocol` is one of `TCP`, `TCP_UDP`, `UDP`, or `TLS`), values can be between `200` and `599`. The default is `200-399`.
3546
3549
  * When the `target_type` is `lambda`, values can be between `200` and `499`. The default is `200`.
3547
3550
  :param pulumi.Input[_builtins.str] path: Destination for the health check request. Required for HTTP/HTTPS ALB and HTTP NLB. Only applies to HTTP/HTTPS.
3551
+ Once the value has been set, removing it has no effect. To unset it, set it to an empty string `""`.
3548
3552
  * For HTTP and HTTPS health checks, the default is `/`.
3549
3553
  * For gRPC health checks, the default is `/AWS.ALB/healthcheck`.
3550
3554
  :param pulumi.Input[_builtins.str] port: The port the load balancer uses when performing health checks on targets.
@@ -3620,6 +3624,7 @@ class TargetGroupHealthCheckArgs:
3620
3624
  The HTTP or gRPC codes to use when checking for a successful response from a target.
3621
3625
  The `health_check.protocol` must be one of `HTTP` or `HTTPS` or the `target_type` must be `lambda`.
3622
3626
  Values can be comma-separated individual values (e.g., "200,202") or a range of values (e.g., "200-299").
3627
+ Once the value has been set, removing it has no effect. To unset it, set it to an empty string `""`.
3623
3628
  * For gRPC-based target groups (i.e., the `protocol` is one of `HTTP` or `HTTPS` and the `protocol_version` is `GRPC`), values can be between `0` and `99`. The default is `12`.
3624
3629
  * When used with an Application Load Balancer (i.e., the `protocol` is one of `HTTP` or `HTTPS` and the `protocol_version` is not `GRPC`), values can be between `200` and `499`. The default is `200`.
3625
3630
  * When used with a Network Load Balancer (i.e., the `protocol` is one of `TCP`, `TCP_UDP`, `UDP`, or `TLS`), values can be between `200` and `599`. The default is `200-399`.
@@ -3636,6 +3641,7 @@ class TargetGroupHealthCheckArgs:
3636
3641
  def path(self) -> Optional[pulumi.Input[_builtins.str]]:
3637
3642
  """
3638
3643
  Destination for the health check request. Required for HTTP/HTTPS ALB and HTTP NLB. Only applies to HTTP/HTTPS.
3644
+ Once the value has been set, removing it has no effect. To unset it, set it to an empty string `""`.
3639
3645
  * For HTTP and HTTPS health checks, the default is `/`.
3640
3646
  * For gRPC health checks, the default is `/AWS.ALB/healthcheck`.
3641
3647
  """