pulumi-aws 7.6.0a1756160407__py3-none-any.whl → 7.7.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 (81) hide show
  1. pulumi_aws/__init__.py +104 -0
  2. pulumi_aws/_inputs.py +20 -0
  3. pulumi_aws/alb/load_balancer.py +47 -0
  4. pulumi_aws/batch/_inputs.py +6 -6
  5. pulumi_aws/batch/outputs.py +4 -4
  6. pulumi_aws/cognito/user_pool.py +28 -28
  7. pulumi_aws/config/__init__.pyi +29 -31
  8. pulumi_aws/config/outputs.py +12 -0
  9. pulumi_aws/config/vars.py +29 -31
  10. pulumi_aws/datazone/domain.py +258 -34
  11. pulumi_aws/dlm/_inputs.py +533 -13
  12. pulumi_aws/dlm/lifecycle_policy.py +169 -4
  13. pulumi_aws/dlm/outputs.py +432 -9
  14. pulumi_aws/dynamodb/contributor_insights.py +47 -0
  15. pulumi_aws/ec2/_inputs.py +21 -1
  16. pulumi_aws/ec2/get_network_interface.py +4 -1
  17. pulumi_aws/ec2/get_vpc_ipam.py +15 -1
  18. pulumi_aws/ec2/network_interface_attachment.py +47 -0
  19. pulumi_aws/ec2/outputs.py +52 -2
  20. pulumi_aws/ec2/route.py +104 -20
  21. pulumi_aws/ec2/route_table.py +30 -6
  22. pulumi_aws/ec2/vpc_ipam.py +47 -0
  23. pulumi_aws/ec2clientvpn/endpoint.py +116 -23
  24. pulumi_aws/ec2clientvpn/get_endpoint.py +29 -1
  25. pulumi_aws/ecr/lifecycle_policy.py +30 -6
  26. pulumi_aws/ecr/repository.py +30 -6
  27. pulumi_aws/ecr/repository_policy.py +30 -6
  28. pulumi_aws/ecs/_inputs.py +3 -3
  29. pulumi_aws/ecs/outputs.py +2 -2
  30. pulumi_aws/ecs/service.py +80 -1
  31. pulumi_aws/elasticache/global_replication_group.py +64 -19
  32. pulumi_aws/elasticache/replication_group.py +1 -1
  33. pulumi_aws/glue/_inputs.py +20 -0
  34. pulumi_aws/glue/outputs.py +23 -0
  35. pulumi_aws/inspector2/_inputs.py +290 -0
  36. pulumi_aws/inspector2/outputs.py +216 -0
  37. pulumi_aws/iot/thing_principal_attachment.py +50 -3
  38. pulumi_aws/kms/alias.py +30 -6
  39. pulumi_aws/kms/external_key.py +71 -5
  40. pulumi_aws/kms/key.py +30 -6
  41. pulumi_aws/lb/load_balancer.py +47 -0
  42. pulumi_aws/mwaa/environment.py +50 -3
  43. pulumi_aws/neptunegraph/graph.py +35 -28
  44. pulumi_aws/provider.py +107 -116
  45. pulumi_aws/pulumi-plugin.json +1 -1
  46. pulumi_aws/route53/resolver_rule.py +30 -6
  47. pulumi_aws/route53/resolver_rule_association.py +30 -6
  48. pulumi_aws/s3tables/table_bucket.py +47 -0
  49. pulumi_aws/secretsmanager/secret_version.py +0 -16
  50. pulumi_aws/sesv2/email_identity.py +28 -0
  51. pulumi_aws/sesv2/get_email_identity.py +15 -1
  52. pulumi_aws/signer/get_signing_profile.py +29 -1
  53. pulumi_aws/signer/outputs.py +19 -0
  54. pulumi_aws/signer/signing_profile.py +47 -0
  55. pulumi_aws/sqs/queue.py +7 -7
  56. pulumi_aws/synthetics/_inputs.py +20 -0
  57. pulumi_aws/synthetics/outputs.py +15 -1
  58. pulumi_aws/timestreaminfluxdb/__init__.py +1 -0
  59. pulumi_aws/timestreaminfluxdb/_inputs.py +166 -0
  60. pulumi_aws/timestreaminfluxdb/db_cluster.py +1419 -0
  61. pulumi_aws/timestreaminfluxdb/db_instance.py +4 -4
  62. pulumi_aws/timestreaminfluxdb/outputs.py +132 -0
  63. pulumi_aws/workspacesweb/__init__.py +12 -0
  64. pulumi_aws/workspacesweb/_inputs.py +420 -0
  65. pulumi_aws/workspacesweb/browser_settings_association.py +321 -0
  66. pulumi_aws/workspacesweb/data_protection_settings_association.py +291 -0
  67. pulumi_aws/workspacesweb/identity_provider.py +559 -0
  68. pulumi_aws/workspacesweb/ip_access_settings_association.py +299 -0
  69. pulumi_aws/workspacesweb/network_settings_association.py +369 -0
  70. pulumi_aws/workspacesweb/outputs.py +289 -0
  71. pulumi_aws/workspacesweb/portal.py +1071 -0
  72. pulumi_aws/workspacesweb/session_logger.py +789 -0
  73. pulumi_aws/workspacesweb/session_logger_association.py +281 -0
  74. pulumi_aws/workspacesweb/trust_store.py +417 -0
  75. pulumi_aws/workspacesweb/trust_store_association.py +281 -0
  76. pulumi_aws/workspacesweb/user_access_logging_settings_association.py +297 -0
  77. pulumi_aws/workspacesweb/user_settings_association.py +301 -0
  78. {pulumi_aws-7.6.0a1756160407.dist-info → pulumi_aws-7.7.0.dist-info}/METADATA +1 -1
  79. {pulumi_aws-7.6.0a1756160407.dist-info → pulumi_aws-7.7.0.dist-info}/RECORD +81 -68
  80. {pulumi_aws-7.6.0a1756160407.dist-info → pulumi_aws-7.7.0.dist-info}/WHEEL +0 -0
  81. {pulumi_aws-7.6.0a1756160407.dist-info → pulumi_aws-7.7.0.dist-info}/top_level.txt +0 -0
pulumi_aws/__init__.py CHANGED
@@ -12165,6 +12165,14 @@ _utilities.register(
12165
12165
  "aws:synthetics/groupAssociation:GroupAssociation": "GroupAssociation"
12166
12166
  }
12167
12167
  },
12168
+ {
12169
+ "pkg": "aws",
12170
+ "mod": "timestreaminfluxdb/dbCluster",
12171
+ "fqn": "pulumi_aws.timestreaminfluxdb",
12172
+ "classes": {
12173
+ "aws:timestreaminfluxdb/dbCluster:DbCluster": "DbCluster"
12174
+ }
12175
+ },
12168
12176
  {
12169
12177
  "pkg": "aws",
12170
12178
  "mod": "timestreaminfluxdb/dbInstance",
@@ -12893,6 +12901,14 @@ _utilities.register(
12893
12901
  "aws:workspacesweb/browserSettings:BrowserSettings": "BrowserSettings"
12894
12902
  }
12895
12903
  },
12904
+ {
12905
+ "pkg": "aws",
12906
+ "mod": "workspacesweb/browserSettingsAssociation",
12907
+ "fqn": "pulumi_aws.workspacesweb",
12908
+ "classes": {
12909
+ "aws:workspacesweb/browserSettingsAssociation:BrowserSettingsAssociation": "BrowserSettingsAssociation"
12910
+ }
12911
+ },
12896
12912
  {
12897
12913
  "pkg": "aws",
12898
12914
  "mod": "workspacesweb/dataProtectionSettings",
@@ -12901,6 +12917,22 @@ _utilities.register(
12901
12917
  "aws:workspacesweb/dataProtectionSettings:DataProtectionSettings": "DataProtectionSettings"
12902
12918
  }
12903
12919
  },
12920
+ {
12921
+ "pkg": "aws",
12922
+ "mod": "workspacesweb/dataProtectionSettingsAssociation",
12923
+ "fqn": "pulumi_aws.workspacesweb",
12924
+ "classes": {
12925
+ "aws:workspacesweb/dataProtectionSettingsAssociation:DataProtectionSettingsAssociation": "DataProtectionSettingsAssociation"
12926
+ }
12927
+ },
12928
+ {
12929
+ "pkg": "aws",
12930
+ "mod": "workspacesweb/identityProvider",
12931
+ "fqn": "pulumi_aws.workspacesweb",
12932
+ "classes": {
12933
+ "aws:workspacesweb/identityProvider:IdentityProvider": "IdentityProvider"
12934
+ }
12935
+ },
12904
12936
  {
12905
12937
  "pkg": "aws",
12906
12938
  "mod": "workspacesweb/ipAccessSettings",
@@ -12909,6 +12941,14 @@ _utilities.register(
12909
12941
  "aws:workspacesweb/ipAccessSettings:IpAccessSettings": "IpAccessSettings"
12910
12942
  }
12911
12943
  },
12944
+ {
12945
+ "pkg": "aws",
12946
+ "mod": "workspacesweb/ipAccessSettingsAssociation",
12947
+ "fqn": "pulumi_aws.workspacesweb",
12948
+ "classes": {
12949
+ "aws:workspacesweb/ipAccessSettingsAssociation:IpAccessSettingsAssociation": "IpAccessSettingsAssociation"
12950
+ }
12951
+ },
12912
12952
  {
12913
12953
  "pkg": "aws",
12914
12954
  "mod": "workspacesweb/networkSettings",
@@ -12917,6 +12957,54 @@ _utilities.register(
12917
12957
  "aws:workspacesweb/networkSettings:NetworkSettings": "NetworkSettings"
12918
12958
  }
12919
12959
  },
12960
+ {
12961
+ "pkg": "aws",
12962
+ "mod": "workspacesweb/networkSettingsAssociation",
12963
+ "fqn": "pulumi_aws.workspacesweb",
12964
+ "classes": {
12965
+ "aws:workspacesweb/networkSettingsAssociation:NetworkSettingsAssociation": "NetworkSettingsAssociation"
12966
+ }
12967
+ },
12968
+ {
12969
+ "pkg": "aws",
12970
+ "mod": "workspacesweb/portal",
12971
+ "fqn": "pulumi_aws.workspacesweb",
12972
+ "classes": {
12973
+ "aws:workspacesweb/portal:Portal": "Portal"
12974
+ }
12975
+ },
12976
+ {
12977
+ "pkg": "aws",
12978
+ "mod": "workspacesweb/sessionLogger",
12979
+ "fqn": "pulumi_aws.workspacesweb",
12980
+ "classes": {
12981
+ "aws:workspacesweb/sessionLogger:SessionLogger": "SessionLogger"
12982
+ }
12983
+ },
12984
+ {
12985
+ "pkg": "aws",
12986
+ "mod": "workspacesweb/sessionLoggerAssociation",
12987
+ "fqn": "pulumi_aws.workspacesweb",
12988
+ "classes": {
12989
+ "aws:workspacesweb/sessionLoggerAssociation:SessionLoggerAssociation": "SessionLoggerAssociation"
12990
+ }
12991
+ },
12992
+ {
12993
+ "pkg": "aws",
12994
+ "mod": "workspacesweb/trustStore",
12995
+ "fqn": "pulumi_aws.workspacesweb",
12996
+ "classes": {
12997
+ "aws:workspacesweb/trustStore:TrustStore": "TrustStore"
12998
+ }
12999
+ },
13000
+ {
13001
+ "pkg": "aws",
13002
+ "mod": "workspacesweb/trustStoreAssociation",
13003
+ "fqn": "pulumi_aws.workspacesweb",
13004
+ "classes": {
13005
+ "aws:workspacesweb/trustStoreAssociation:TrustStoreAssociation": "TrustStoreAssociation"
13006
+ }
13007
+ },
12920
13008
  {
12921
13009
  "pkg": "aws",
12922
13010
  "mod": "workspacesweb/userAccessLoggingSettings",
@@ -12925,6 +13013,14 @@ _utilities.register(
12925
13013
  "aws:workspacesweb/userAccessLoggingSettings:UserAccessLoggingSettings": "UserAccessLoggingSettings"
12926
13014
  }
12927
13015
  },
13016
+ {
13017
+ "pkg": "aws",
13018
+ "mod": "workspacesweb/userAccessLoggingSettingsAssociation",
13019
+ "fqn": "pulumi_aws.workspacesweb",
13020
+ "classes": {
13021
+ "aws:workspacesweb/userAccessLoggingSettingsAssociation:UserAccessLoggingSettingsAssociation": "UserAccessLoggingSettingsAssociation"
13022
+ }
13023
+ },
12928
13024
  {
12929
13025
  "pkg": "aws",
12930
13026
  "mod": "workspacesweb/userSettings",
@@ -12933,6 +13029,14 @@ _utilities.register(
12933
13029
  "aws:workspacesweb/userSettings:UserSettings": "UserSettings"
12934
13030
  }
12935
13031
  },
13032
+ {
13033
+ "pkg": "aws",
13034
+ "mod": "workspacesweb/userSettingsAssociation",
13035
+ "fqn": "pulumi_aws.workspacesweb",
13036
+ "classes": {
13037
+ "aws:workspacesweb/userSettingsAssociation:UserSettingsAssociation": "UserSettingsAssociation"
13038
+ }
13039
+ },
12936
13040
  {
12937
13041
  "pkg": "aws",
12938
13042
  "mod": "xray/encryptionConfig",
pulumi_aws/_inputs.py CHANGED
@@ -492,6 +492,10 @@ if not MYPY:
492
492
  """
493
493
  Use this to override the default service endpoint URL
494
494
  """
495
+ arcregionswitch: NotRequired[pulumi.Input[_builtins.str]]
496
+ """
497
+ Use this to override the default service endpoint URL
498
+ """
495
499
  athena: NotRequired[pulumi.Input[_builtins.str]]
496
500
  """
497
501
  Use this to override the default service endpoint URL
@@ -1629,6 +1633,7 @@ class ProviderEndpointArgs:
1629
1633
  apprunner: Optional[pulumi.Input[_builtins.str]] = None,
1630
1634
  appstream: Optional[pulumi.Input[_builtins.str]] = None,
1631
1635
  appsync: Optional[pulumi.Input[_builtins.str]] = None,
1636
+ arcregionswitch: Optional[pulumi.Input[_builtins.str]] = None,
1632
1637
  athena: Optional[pulumi.Input[_builtins.str]] = None,
1633
1638
  auditmanager: Optional[pulumi.Input[_builtins.str]] = None,
1634
1639
  autoscaling: Optional[pulumi.Input[_builtins.str]] = None,
@@ -1930,6 +1935,7 @@ class ProviderEndpointArgs:
1930
1935
  :param pulumi.Input[_builtins.str] apprunner: Use this to override the default service endpoint URL
1931
1936
  :param pulumi.Input[_builtins.str] appstream: Use this to override the default service endpoint URL
1932
1937
  :param pulumi.Input[_builtins.str] appsync: Use this to override the default service endpoint URL
1938
+ :param pulumi.Input[_builtins.str] arcregionswitch: Use this to override the default service endpoint URL
1933
1939
  :param pulumi.Input[_builtins.str] athena: Use this to override the default service endpoint URL
1934
1940
  :param pulumi.Input[_builtins.str] auditmanager: Use this to override the default service endpoint URL
1935
1941
  :param pulumi.Input[_builtins.str] autoscaling: Use this to override the default service endpoint URL
@@ -2254,6 +2260,8 @@ class ProviderEndpointArgs:
2254
2260
  pulumi.set(__self__, "appstream", appstream)
2255
2261
  if appsync is not None:
2256
2262
  pulumi.set(__self__, "appsync", appsync)
2263
+ if arcregionswitch is not None:
2264
+ pulumi.set(__self__, "arcregionswitch", arcregionswitch)
2257
2265
  if athena is not None:
2258
2266
  pulumi.set(__self__, "athena", athena)
2259
2267
  if auditmanager is not None:
@@ -3085,6 +3093,18 @@ class ProviderEndpointArgs:
3085
3093
  def appsync(self, value: Optional[pulumi.Input[_builtins.str]]):
3086
3094
  pulumi.set(self, "appsync", value)
3087
3095
 
3096
+ @_builtins.property
3097
+ @pulumi.getter
3098
+ def arcregionswitch(self) -> Optional[pulumi.Input[_builtins.str]]:
3099
+ """
3100
+ Use this to override the default service endpoint URL
3101
+ """
3102
+ return pulumi.get(self, "arcregionswitch")
3103
+
3104
+ @arcregionswitch.setter
3105
+ def arcregionswitch(self, value: Optional[pulumi.Input[_builtins.str]]):
3106
+ pulumi.set(self, "arcregionswitch", value)
3107
+
3088
3108
  @_builtins.property
3089
3109
  @pulumi.getter
3090
3110
  def athena(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -47,6 +47,7 @@ class LoadBalancerArgs:
47
47
  name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
48
48
  preserve_host_header: Optional[pulumi.Input[_builtins.bool]] = None,
49
49
  region: Optional[pulumi.Input[_builtins.str]] = None,
50
+ secondary_ips_auto_assigned_per_subnet: Optional[pulumi.Input[_builtins.int]] = None,
50
51
  security_groups: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
51
52
  subnet_mappings: Optional[pulumi.Input[Sequence[pulumi.Input['LoadBalancerSubnetMappingArgs']]]] = None,
52
53
  subnets: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
@@ -79,6 +80,7 @@ class LoadBalancerArgs:
79
80
  :param pulumi.Input[_builtins.str] name_prefix: Creates a unique name beginning with the specified prefix. Conflicts with `name`.
80
81
  :param pulumi.Input[_builtins.bool] preserve_host_header: Whether the Application Load Balancer should preserve the Host header in the HTTP request and send it to the target without any change. Defaults to `false`.
81
82
  :param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
83
+ :param pulumi.Input[_builtins.int] secondary_ips_auto_assigned_per_subnet: The number of secondary IP addresses to configure for your load balancer nodes. Only valid for Load Balancers of type `network`. The valid range is 0-7. When decreased, this will force a recreation of the resource. Default: `0`.
82
84
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] security_groups: List of security group IDs to assign to the LB. Only valid for Load Balancers of type `application` or `network`. For load balancers of type `network` security groups cannot be added if none are currently present, and cannot all be removed once added. If either of these conditions are met, this will force a recreation of the resource.
83
85
  :param pulumi.Input[Sequence[pulumi.Input['LoadBalancerSubnetMappingArgs']]] subnet_mappings: Subnet mapping block. See below. For Load Balancers of type `network` subnet mappings can only be added.
84
86
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] subnets: List of subnet IDs to attach to the LB. For Load Balancers of type `network` subnets can only be added (see [Availability Zones](https://docs.aws.amazon.com/elasticloadbalancing/latest/network/network-load-balancers.html#availability-zones)), deleting a subnet for load balancers of type `network` will force a recreation of the resource.
@@ -139,6 +141,8 @@ class LoadBalancerArgs:
139
141
  pulumi.set(__self__, "preserve_host_header", preserve_host_header)
140
142
  if region is not None:
141
143
  pulumi.set(__self__, "region", region)
144
+ if secondary_ips_auto_assigned_per_subnet is not None:
145
+ pulumi.set(__self__, "secondary_ips_auto_assigned_per_subnet", secondary_ips_auto_assigned_per_subnet)
142
146
  if security_groups is not None:
143
147
  pulumi.set(__self__, "security_groups", security_groups)
144
148
  if subnet_mappings is not None:
@@ -450,6 +454,18 @@ class LoadBalancerArgs:
450
454
  def region(self, value: Optional[pulumi.Input[_builtins.str]]):
451
455
  pulumi.set(self, "region", value)
452
456
 
457
+ @_builtins.property
458
+ @pulumi.getter(name="secondaryIpsAutoAssignedPerSubnet")
459
+ def secondary_ips_auto_assigned_per_subnet(self) -> Optional[pulumi.Input[_builtins.int]]:
460
+ """
461
+ The number of secondary IP addresses to configure for your load balancer nodes. Only valid for Load Balancers of type `network`. The valid range is 0-7. When decreased, this will force a recreation of the resource. Default: `0`.
462
+ """
463
+ return pulumi.get(self, "secondary_ips_auto_assigned_per_subnet")
464
+
465
+ @secondary_ips_auto_assigned_per_subnet.setter
466
+ def secondary_ips_auto_assigned_per_subnet(self, value: Optional[pulumi.Input[_builtins.int]]):
467
+ pulumi.set(self, "secondary_ips_auto_assigned_per_subnet", value)
468
+
453
469
  @_builtins.property
454
470
  @pulumi.getter(name="securityGroups")
455
471
  def security_groups(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
@@ -546,6 +562,7 @@ class _LoadBalancerState:
546
562
  name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
547
563
  preserve_host_header: Optional[pulumi.Input[_builtins.bool]] = None,
548
564
  region: Optional[pulumi.Input[_builtins.str]] = None,
565
+ secondary_ips_auto_assigned_per_subnet: Optional[pulumi.Input[_builtins.int]] = None,
549
566
  security_groups: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
550
567
  subnet_mappings: Optional[pulumi.Input[Sequence[pulumi.Input['LoadBalancerSubnetMappingArgs']]]] = None,
551
568
  subnets: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
@@ -585,6 +602,7 @@ class _LoadBalancerState:
585
602
  :param pulumi.Input[_builtins.str] name_prefix: Creates a unique name beginning with the specified prefix. Conflicts with `name`.
586
603
  :param pulumi.Input[_builtins.bool] preserve_host_header: Whether the Application Load Balancer should preserve the Host header in the HTTP request and send it to the target without any change. Defaults to `false`.
587
604
  :param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
605
+ :param pulumi.Input[_builtins.int] secondary_ips_auto_assigned_per_subnet: The number of secondary IP addresses to configure for your load balancer nodes. Only valid for Load Balancers of type `network`. The valid range is 0-7. When decreased, this will force a recreation of the resource. Default: `0`.
588
606
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] security_groups: List of security group IDs to assign to the LB. Only valid for Load Balancers of type `application` or `network`. For load balancers of type `network` security groups cannot be added if none are currently present, and cannot all be removed once added. If either of these conditions are met, this will force a recreation of the resource.
589
607
  :param pulumi.Input[Sequence[pulumi.Input['LoadBalancerSubnetMappingArgs']]] subnet_mappings: Subnet mapping block. See below. For Load Balancers of type `network` subnet mappings can only be added.
590
608
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] subnets: List of subnet IDs to attach to the LB. For Load Balancers of type `network` subnets can only be added (see [Availability Zones](https://docs.aws.amazon.com/elasticloadbalancing/latest/network/network-load-balancers.html#availability-zones)), deleting a subnet for load balancers of type `network` will force a recreation of the resource.
@@ -653,6 +671,8 @@ class _LoadBalancerState:
653
671
  pulumi.set(__self__, "preserve_host_header", preserve_host_header)
654
672
  if region is not None:
655
673
  pulumi.set(__self__, "region", region)
674
+ if secondary_ips_auto_assigned_per_subnet is not None:
675
+ pulumi.set(__self__, "secondary_ips_auto_assigned_per_subnet", secondary_ips_auto_assigned_per_subnet)
656
676
  if security_groups is not None:
657
677
  pulumi.set(__self__, "security_groups", security_groups)
658
678
  if subnet_mappings is not None:
@@ -1007,6 +1027,18 @@ class _LoadBalancerState:
1007
1027
  def region(self, value: Optional[pulumi.Input[_builtins.str]]):
1008
1028
  pulumi.set(self, "region", value)
1009
1029
 
1030
+ @_builtins.property
1031
+ @pulumi.getter(name="secondaryIpsAutoAssignedPerSubnet")
1032
+ def secondary_ips_auto_assigned_per_subnet(self) -> Optional[pulumi.Input[_builtins.int]]:
1033
+ """
1034
+ The number of secondary IP addresses to configure for your load balancer nodes. Only valid for Load Balancers of type `network`. The valid range is 0-7. When decreased, this will force a recreation of the resource. Default: `0`.
1035
+ """
1036
+ return pulumi.get(self, "secondary_ips_auto_assigned_per_subnet")
1037
+
1038
+ @secondary_ips_auto_assigned_per_subnet.setter
1039
+ def secondary_ips_auto_assigned_per_subnet(self, value: Optional[pulumi.Input[_builtins.int]]):
1040
+ pulumi.set(self, "secondary_ips_auto_assigned_per_subnet", value)
1041
+
1010
1042
  @_builtins.property
1011
1043
  @pulumi.getter(name="securityGroups")
1012
1044
  def security_groups(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
@@ -1136,6 +1168,7 @@ class LoadBalancer(pulumi.CustomResource):
1136
1168
  name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
1137
1169
  preserve_host_header: Optional[pulumi.Input[_builtins.bool]] = None,
1138
1170
  region: Optional[pulumi.Input[_builtins.str]] = None,
1171
+ secondary_ips_auto_assigned_per_subnet: Optional[pulumi.Input[_builtins.int]] = None,
1139
1172
  security_groups: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
1140
1173
  subnet_mappings: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LoadBalancerSubnetMappingArgs', 'LoadBalancerSubnetMappingArgsDict']]]]] = None,
1141
1174
  subnets: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
@@ -1266,6 +1299,7 @@ class LoadBalancer(pulumi.CustomResource):
1266
1299
  :param pulumi.Input[_builtins.str] name_prefix: Creates a unique name beginning with the specified prefix. Conflicts with `name`.
1267
1300
  :param pulumi.Input[_builtins.bool] preserve_host_header: Whether the Application Load Balancer should preserve the Host header in the HTTP request and send it to the target without any change. Defaults to `false`.
1268
1301
  :param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
1302
+ :param pulumi.Input[_builtins.int] secondary_ips_auto_assigned_per_subnet: The number of secondary IP addresses to configure for your load balancer nodes. Only valid for Load Balancers of type `network`. The valid range is 0-7. When decreased, this will force a recreation of the resource. Default: `0`.
1269
1303
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] security_groups: List of security group IDs to assign to the LB. Only valid for Load Balancers of type `application` or `network`. For load balancers of type `network` security groups cannot be added if none are currently present, and cannot all be removed once added. If either of these conditions are met, this will force a recreation of the resource.
1270
1304
  :param pulumi.Input[Sequence[pulumi.Input[Union['LoadBalancerSubnetMappingArgs', 'LoadBalancerSubnetMappingArgsDict']]]] subnet_mappings: Subnet mapping block. See below. For Load Balancers of type `network` subnet mappings can only be added.
1271
1305
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] subnets: List of subnet IDs to attach to the LB. For Load Balancers of type `network` subnets can only be added (see [Availability Zones](https://docs.aws.amazon.com/elasticloadbalancing/latest/network/network-load-balancers.html#availability-zones)), deleting a subnet for load balancers of type `network` will force a recreation of the resource.
@@ -1419,6 +1453,7 @@ class LoadBalancer(pulumi.CustomResource):
1419
1453
  name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
1420
1454
  preserve_host_header: Optional[pulumi.Input[_builtins.bool]] = None,
1421
1455
  region: Optional[pulumi.Input[_builtins.str]] = None,
1456
+ secondary_ips_auto_assigned_per_subnet: Optional[pulumi.Input[_builtins.int]] = None,
1422
1457
  security_groups: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
1423
1458
  subnet_mappings: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LoadBalancerSubnetMappingArgs', 'LoadBalancerSubnetMappingArgsDict']]]]] = None,
1424
1459
  subnets: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
@@ -1458,6 +1493,7 @@ class LoadBalancer(pulumi.CustomResource):
1458
1493
  __props__.__dict__["name_prefix"] = name_prefix
1459
1494
  __props__.__dict__["preserve_host_header"] = preserve_host_header
1460
1495
  __props__.__dict__["region"] = region
1496
+ __props__.__dict__["secondary_ips_auto_assigned_per_subnet"] = secondary_ips_auto_assigned_per_subnet
1461
1497
  __props__.__dict__["security_groups"] = security_groups
1462
1498
  __props__.__dict__["subnet_mappings"] = subnet_mappings
1463
1499
  __props__.__dict__["subnets"] = subnets
@@ -1509,6 +1545,7 @@ class LoadBalancer(pulumi.CustomResource):
1509
1545
  name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
1510
1546
  preserve_host_header: Optional[pulumi.Input[_builtins.bool]] = None,
1511
1547
  region: Optional[pulumi.Input[_builtins.str]] = None,
1548
+ secondary_ips_auto_assigned_per_subnet: Optional[pulumi.Input[_builtins.int]] = None,
1512
1549
  security_groups: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
1513
1550
  subnet_mappings: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LoadBalancerSubnetMappingArgs', 'LoadBalancerSubnetMappingArgsDict']]]]] = None,
1514
1551
  subnets: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
@@ -1553,6 +1590,7 @@ class LoadBalancer(pulumi.CustomResource):
1553
1590
  :param pulumi.Input[_builtins.str] name_prefix: Creates a unique name beginning with the specified prefix. Conflicts with `name`.
1554
1591
  :param pulumi.Input[_builtins.bool] preserve_host_header: Whether the Application Load Balancer should preserve the Host header in the HTTP request and send it to the target without any change. Defaults to `false`.
1555
1592
  :param pulumi.Input[_builtins.str] region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
1593
+ :param pulumi.Input[_builtins.int] secondary_ips_auto_assigned_per_subnet: The number of secondary IP addresses to configure for your load balancer nodes. Only valid for Load Balancers of type `network`. The valid range is 0-7. When decreased, this will force a recreation of the resource. Default: `0`.
1556
1594
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] security_groups: List of security group IDs to assign to the LB. Only valid for Load Balancers of type `application` or `network`. For load balancers of type `network` security groups cannot be added if none are currently present, and cannot all be removed once added. If either of these conditions are met, this will force a recreation of the resource.
1557
1595
  :param pulumi.Input[Sequence[pulumi.Input[Union['LoadBalancerSubnetMappingArgs', 'LoadBalancerSubnetMappingArgsDict']]]] subnet_mappings: Subnet mapping block. See below. For Load Balancers of type `network` subnet mappings can only be added.
1558
1596
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] subnets: List of subnet IDs to attach to the LB. For Load Balancers of type `network` subnets can only be added (see [Availability Zones](https://docs.aws.amazon.com/elasticloadbalancing/latest/network/network-load-balancers.html#availability-zones)), deleting a subnet for load balancers of type `network` will force a recreation of the resource.
@@ -1597,6 +1635,7 @@ class LoadBalancer(pulumi.CustomResource):
1597
1635
  __props__.__dict__["name_prefix"] = name_prefix
1598
1636
  __props__.__dict__["preserve_host_header"] = preserve_host_header
1599
1637
  __props__.__dict__["region"] = region
1638
+ __props__.__dict__["secondary_ips_auto_assigned_per_subnet"] = secondary_ips_auto_assigned_per_subnet
1600
1639
  __props__.__dict__["security_groups"] = security_groups
1601
1640
  __props__.__dict__["subnet_mappings"] = subnet_mappings
1602
1641
  __props__.__dict__["subnets"] = subnets
@@ -1832,6 +1871,14 @@ class LoadBalancer(pulumi.CustomResource):
1832
1871
  """
1833
1872
  return pulumi.get(self, "region")
1834
1873
 
1874
+ @_builtins.property
1875
+ @pulumi.getter(name="secondaryIpsAutoAssignedPerSubnet")
1876
+ def secondary_ips_auto_assigned_per_subnet(self) -> pulumi.Output[_builtins.int]:
1877
+ """
1878
+ The number of secondary IP addresses to configure for your load balancer nodes. Only valid for Load Balancers of type `network`. The valid range is 0-7. When decreased, this will force a recreation of the resource. Default: `0`.
1879
+ """
1880
+ return pulumi.get(self, "secondary_ips_auto_assigned_per_subnet")
1881
+
1835
1882
  @_builtins.property
1836
1883
  @pulumi.getter(name="securityGroups")
1837
1884
  def security_groups(self) -> pulumi.Output[Sequence[_builtins.str]]:
@@ -632,7 +632,7 @@ if not MYPY:
632
632
  """
633
633
  terminate_jobs_on_update: NotRequired[pulumi.Input[_builtins.bool]]
634
634
  """
635
- Specifies whether jobs are automatically terminated when the computer environment infrastructure is updated.
635
+ Specifies whether jobs are automatically terminated when the compute environment infrastructure is updated.
636
636
  """
637
637
  elif False:
638
638
  ComputeEnvironmentUpdatePolicyArgsDict: TypeAlias = Mapping[str, Any]
@@ -644,7 +644,7 @@ class ComputeEnvironmentUpdatePolicyArgs:
644
644
  terminate_jobs_on_update: Optional[pulumi.Input[_builtins.bool]] = None):
645
645
  """
646
646
  :param pulumi.Input[_builtins.int] job_execution_timeout_minutes: Specifies the job timeout (in minutes) when the compute environment infrastructure is updated.
647
- :param pulumi.Input[_builtins.bool] terminate_jobs_on_update: Specifies whether jobs are automatically terminated when the computer environment infrastructure is updated.
647
+ :param pulumi.Input[_builtins.bool] terminate_jobs_on_update: Specifies whether jobs are automatically terminated when the compute environment infrastructure is updated.
648
648
  """
649
649
  if job_execution_timeout_minutes is not None:
650
650
  pulumi.set(__self__, "job_execution_timeout_minutes", job_execution_timeout_minutes)
@@ -667,7 +667,7 @@ class ComputeEnvironmentUpdatePolicyArgs:
667
667
  @pulumi.getter(name="terminateJobsOnUpdate")
668
668
  def terminate_jobs_on_update(self) -> Optional[pulumi.Input[_builtins.bool]]:
669
669
  """
670
- Specifies whether jobs are automatically terminated when the computer environment infrastructure is updated.
670
+ Specifies whether jobs are automatically terminated when the compute environment infrastructure is updated.
671
671
  """
672
672
  return pulumi.get(self, "terminate_jobs_on_update")
673
673
 
@@ -1749,7 +1749,7 @@ if not MYPY:
1749
1749
  class JobDefinitionEksPropertiesPodPropertiesMetadataArgsDict(TypedDict):
1750
1750
  labels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]
1751
1751
  """
1752
- Key-value pairs used to identify, sort, and organize cube resources.
1752
+ Key-value pairs used to identify, sort, and organize kubernetes resources.
1753
1753
  """
1754
1754
  elif False:
1755
1755
  JobDefinitionEksPropertiesPodPropertiesMetadataArgsDict: TypeAlias = Mapping[str, Any]
@@ -1759,7 +1759,7 @@ class JobDefinitionEksPropertiesPodPropertiesMetadataArgs:
1759
1759
  def __init__(__self__, *,
1760
1760
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
1761
1761
  """
1762
- :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Key-value pairs used to identify, sort, and organize cube resources.
1762
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] labels: Key-value pairs used to identify, sort, and organize kubernetes resources.
1763
1763
  """
1764
1764
  if labels is not None:
1765
1765
  pulumi.set(__self__, "labels", labels)
@@ -1768,7 +1768,7 @@ class JobDefinitionEksPropertiesPodPropertiesMetadataArgs:
1768
1768
  @pulumi.getter
1769
1769
  def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
1770
1770
  """
1771
- Key-value pairs used to identify, sort, and organize cube resources.
1771
+ Key-value pairs used to identify, sort, and organize kubernetes resources.
1772
1772
  """
1773
1773
  return pulumi.get(self, "labels")
1774
1774
 
@@ -547,7 +547,7 @@ class ComputeEnvironmentUpdatePolicy(dict):
547
547
  terminate_jobs_on_update: Optional[_builtins.bool] = None):
548
548
  """
549
549
  :param _builtins.int job_execution_timeout_minutes: Specifies the job timeout (in minutes) when the compute environment infrastructure is updated.
550
- :param _builtins.bool terminate_jobs_on_update: Specifies whether jobs are automatically terminated when the computer environment infrastructure is updated.
550
+ :param _builtins.bool terminate_jobs_on_update: Specifies whether jobs are automatically terminated when the compute environment infrastructure is updated.
551
551
  """
552
552
  if job_execution_timeout_minutes is not None:
553
553
  pulumi.set(__self__, "job_execution_timeout_minutes", job_execution_timeout_minutes)
@@ -566,7 +566,7 @@ class ComputeEnvironmentUpdatePolicy(dict):
566
566
  @pulumi.getter(name="terminateJobsOnUpdate")
567
567
  def terminate_jobs_on_update(self) -> Optional[_builtins.bool]:
568
568
  """
569
- Specifies whether jobs are automatically terminated when the computer environment infrastructure is updated.
569
+ Specifies whether jobs are automatically terminated when the compute environment infrastructure is updated.
570
570
  """
571
571
  return pulumi.get(self, "terminate_jobs_on_update")
572
572
 
@@ -1380,7 +1380,7 @@ class JobDefinitionEksPropertiesPodPropertiesMetadata(dict):
1380
1380
  def __init__(__self__, *,
1381
1381
  labels: Optional[Mapping[str, _builtins.str]] = None):
1382
1382
  """
1383
- :param Mapping[str, _builtins.str] labels: Key-value pairs used to identify, sort, and organize cube resources.
1383
+ :param Mapping[str, _builtins.str] labels: Key-value pairs used to identify, sort, and organize kubernetes resources.
1384
1384
  """
1385
1385
  if labels is not None:
1386
1386
  pulumi.set(__self__, "labels", labels)
@@ -1389,7 +1389,7 @@ class JobDefinitionEksPropertiesPodPropertiesMetadata(dict):
1389
1389
  @pulumi.getter
1390
1390
  def labels(self) -> Optional[Mapping[str, _builtins.str]]:
1391
1391
  """
1392
- Key-value pairs used to identify, sort, and organize cube resources.
1392
+ Key-value pairs used to identify, sort, and organize kubernetes resources.
1393
1393
  """
1394
1394
  return pulumi.get(self, "labels")
1395
1395