pulumi-aws 7.6.0a1756157700__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 (101) 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 +18 -16
  5. pulumi_aws/batch/compute_environment.py +1 -1
  6. pulumi_aws/batch/outputs.py +12 -10
  7. pulumi_aws/bcmdata/_inputs.py +6 -6
  8. pulumi_aws/bcmdata/export.py +6 -0
  9. pulumi_aws/bcmdata/outputs.py +4 -4
  10. pulumi_aws/cognito/user_pool.py +28 -28
  11. pulumi_aws/config/__init__.pyi +29 -31
  12. pulumi_aws/config/outputs.py +12 -0
  13. pulumi_aws/config/vars.py +29 -31
  14. pulumi_aws/datazone/domain.py +258 -34
  15. pulumi_aws/dlm/_inputs.py +536 -16
  16. pulumi_aws/dlm/lifecycle_policy.py +169 -4
  17. pulumi_aws/dlm/outputs.py +434 -11
  18. pulumi_aws/dynamodb/contributor_insights.py +47 -0
  19. pulumi_aws/ec2/_inputs.py +138 -4
  20. pulumi_aws/ec2/get_network_interface.py +4 -1
  21. pulumi_aws/ec2/get_vpc_ipam.py +15 -1
  22. pulumi_aws/ec2/instance.py +76 -22
  23. pulumi_aws/ec2/network_interface_attachment.py +47 -0
  24. pulumi_aws/ec2/outputs.py +159 -4
  25. pulumi_aws/ec2/route.py +104 -20
  26. pulumi_aws/ec2/route_table.py +30 -6
  27. pulumi_aws/ec2/spot_instance_request.py +37 -52
  28. pulumi_aws/ec2/vpc_ipam.py +47 -0
  29. pulumi_aws/ec2clientvpn/endpoint.py +116 -23
  30. pulumi_aws/ec2clientvpn/get_endpoint.py +29 -1
  31. pulumi_aws/ecr/_inputs.py +52 -0
  32. pulumi_aws/ecr/get_repository.py +15 -1
  33. pulumi_aws/ecr/get_repository_creation_template.py +15 -1
  34. pulumi_aws/ecr/lifecycle_policy.py +30 -6
  35. pulumi_aws/ecr/outputs.py +107 -0
  36. pulumi_aws/ecr/repository.py +30 -6
  37. pulumi_aws/ecr/repository_creation_template.py +47 -0
  38. pulumi_aws/ecr/repository_policy.py +30 -6
  39. pulumi_aws/ecs/_inputs.py +3 -3
  40. pulumi_aws/ecs/outputs.py +2 -2
  41. pulumi_aws/ecs/service.py +80 -1
  42. pulumi_aws/elasticache/global_replication_group.py +64 -19
  43. pulumi_aws/elasticache/replication_group.py +1 -1
  44. pulumi_aws/gamelift/fleet.py +14 -14
  45. pulumi_aws/glue/_inputs.py +20 -0
  46. pulumi_aws/glue/job.py +7 -56
  47. pulumi_aws/glue/outputs.py +23 -0
  48. pulumi_aws/inspector2/_inputs.py +290 -0
  49. pulumi_aws/inspector2/outputs.py +216 -0
  50. pulumi_aws/iot/thing_principal_attachment.py +50 -3
  51. pulumi_aws/kms/alias.py +30 -6
  52. pulumi_aws/kms/external_key.py +71 -5
  53. pulumi_aws/kms/key.py +30 -6
  54. pulumi_aws/lb/load_balancer.py +47 -0
  55. pulumi_aws/mwaa/environment.py +50 -3
  56. pulumi_aws/neptunegraph/graph.py +35 -28
  57. pulumi_aws/provider.py +107 -116
  58. pulumi_aws/pulumi-plugin.json +1 -1
  59. pulumi_aws/rds/get_reserved_instance_offering.py +2 -2
  60. pulumi_aws/route53/resolver_rule.py +30 -6
  61. pulumi_aws/route53/resolver_rule_association.py +30 -6
  62. pulumi_aws/s3/_inputs.py +12 -12
  63. pulumi_aws/s3/bucket_logging.py +80 -0
  64. pulumi_aws/s3/bucket_logging_v2.py +80 -0
  65. pulumi_aws/s3/outputs.py +8 -8
  66. pulumi_aws/s3tables/table_bucket.py +47 -0
  67. pulumi_aws/secretsmanager/secret_version.py +0 -16
  68. pulumi_aws/sesv2/_inputs.py +7 -0
  69. pulumi_aws/sesv2/email_identity.py +28 -0
  70. pulumi_aws/sesv2/get_email_identity.py +15 -1
  71. pulumi_aws/sesv2/outputs.py +4 -0
  72. pulumi_aws/signer/get_signing_profile.py +29 -1
  73. pulumi_aws/signer/outputs.py +19 -0
  74. pulumi_aws/signer/signing_profile.py +47 -0
  75. pulumi_aws/sqs/queue.py +7 -7
  76. pulumi_aws/synthetics/_inputs.py +20 -0
  77. pulumi_aws/synthetics/outputs.py +15 -1
  78. pulumi_aws/timestreaminfluxdb/__init__.py +1 -0
  79. pulumi_aws/timestreaminfluxdb/_inputs.py +166 -0
  80. pulumi_aws/timestreaminfluxdb/db_cluster.py +1419 -0
  81. pulumi_aws/timestreaminfluxdb/db_instance.py +4 -4
  82. pulumi_aws/timestreaminfluxdb/outputs.py +132 -0
  83. pulumi_aws/workspacesweb/__init__.py +12 -0
  84. pulumi_aws/workspacesweb/_inputs.py +420 -0
  85. pulumi_aws/workspacesweb/browser_settings_association.py +321 -0
  86. pulumi_aws/workspacesweb/data_protection_settings_association.py +291 -0
  87. pulumi_aws/workspacesweb/identity_provider.py +559 -0
  88. pulumi_aws/workspacesweb/ip_access_settings_association.py +299 -0
  89. pulumi_aws/workspacesweb/network_settings_association.py +369 -0
  90. pulumi_aws/workspacesweb/outputs.py +289 -0
  91. pulumi_aws/workspacesweb/portal.py +1071 -0
  92. pulumi_aws/workspacesweb/session_logger.py +789 -0
  93. pulumi_aws/workspacesweb/session_logger_association.py +281 -0
  94. pulumi_aws/workspacesweb/trust_store.py +417 -0
  95. pulumi_aws/workspacesweb/trust_store_association.py +281 -0
  96. pulumi_aws/workspacesweb/user_access_logging_settings_association.py +297 -0
  97. pulumi_aws/workspacesweb/user_settings_association.py +301 -0
  98. {pulumi_aws-7.6.0a1756157700.dist-info → pulumi_aws-7.7.0.dist-info}/METADATA +1 -1
  99. {pulumi_aws-7.6.0a1756157700.dist-info → pulumi_aws-7.7.0.dist-info}/RECORD +101 -88
  100. {pulumi_aws-7.6.0a1756157700.dist-info → pulumi_aws-7.7.0.dist-info}/WHEEL +0 -0
  101. {pulumi_aws-7.6.0a1756157700.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]]:
@@ -626,13 +626,13 @@ class ComputeEnvironmentEksConfigurationArgs:
626
626
 
627
627
  if not MYPY:
628
628
  class ComputeEnvironmentUpdatePolicyArgsDict(TypedDict):
629
- job_execution_timeout_minutes: pulumi.Input[_builtins.int]
629
+ job_execution_timeout_minutes: NotRequired[pulumi.Input[_builtins.int]]
630
630
  """
631
631
  Specifies the job timeout (in minutes) when the compute environment infrastructure is updated.
632
632
  """
633
- terminate_jobs_on_update: pulumi.Input[_builtins.bool]
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]
@@ -640,37 +640,39 @@ elif False:
640
640
  @pulumi.input_type
641
641
  class ComputeEnvironmentUpdatePolicyArgs:
642
642
  def __init__(__self__, *,
643
- job_execution_timeout_minutes: pulumi.Input[_builtins.int],
644
- terminate_jobs_on_update: pulumi.Input[_builtins.bool]):
643
+ job_execution_timeout_minutes: Optional[pulumi.Input[_builtins.int]] = None,
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
- pulumi.set(__self__, "job_execution_timeout_minutes", job_execution_timeout_minutes)
650
- pulumi.set(__self__, "terminate_jobs_on_update", terminate_jobs_on_update)
649
+ if job_execution_timeout_minutes is not None:
650
+ pulumi.set(__self__, "job_execution_timeout_minutes", job_execution_timeout_minutes)
651
+ if terminate_jobs_on_update is not None:
652
+ pulumi.set(__self__, "terminate_jobs_on_update", terminate_jobs_on_update)
651
653
 
652
654
  @_builtins.property
653
655
  @pulumi.getter(name="jobExecutionTimeoutMinutes")
654
- def job_execution_timeout_minutes(self) -> pulumi.Input[_builtins.int]:
656
+ def job_execution_timeout_minutes(self) -> Optional[pulumi.Input[_builtins.int]]:
655
657
  """
656
658
  Specifies the job timeout (in minutes) when the compute environment infrastructure is updated.
657
659
  """
658
660
  return pulumi.get(self, "job_execution_timeout_minutes")
659
661
 
660
662
  @job_execution_timeout_minutes.setter
661
- def job_execution_timeout_minutes(self, value: pulumi.Input[_builtins.int]):
663
+ def job_execution_timeout_minutes(self, value: Optional[pulumi.Input[_builtins.int]]):
662
664
  pulumi.set(self, "job_execution_timeout_minutes", value)
663
665
 
664
666
  @_builtins.property
665
667
  @pulumi.getter(name="terminateJobsOnUpdate")
666
- def terminate_jobs_on_update(self) -> pulumi.Input[_builtins.bool]:
668
+ def terminate_jobs_on_update(self) -> Optional[pulumi.Input[_builtins.bool]]:
667
669
  """
668
- 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.
669
671
  """
670
672
  return pulumi.get(self, "terminate_jobs_on_update")
671
673
 
672
674
  @terminate_jobs_on_update.setter
673
- def terminate_jobs_on_update(self, value: pulumi.Input[_builtins.bool]):
675
+ def terminate_jobs_on_update(self, value: Optional[pulumi.Input[_builtins.bool]]):
674
676
  pulumi.set(self, "terminate_jobs_on_update", value)
675
677
 
676
678
 
@@ -1747,7 +1749,7 @@ if not MYPY:
1747
1749
  class JobDefinitionEksPropertiesPodPropertiesMetadataArgsDict(TypedDict):
1748
1750
  labels: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]
1749
1751
  """
1750
- Key-value pairs used to identify, sort, and organize cube resources.
1752
+ Key-value pairs used to identify, sort, and organize kubernetes resources.
1751
1753
  """
1752
1754
  elif False:
1753
1755
  JobDefinitionEksPropertiesPodPropertiesMetadataArgsDict: TypeAlias = Mapping[str, Any]
@@ -1757,7 +1759,7 @@ class JobDefinitionEksPropertiesPodPropertiesMetadataArgs:
1757
1759
  def __init__(__self__, *,
1758
1760
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
1759
1761
  """
1760
- :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.
1761
1763
  """
1762
1764
  if labels is not None:
1763
1765
  pulumi.set(__self__, "labels", labels)
@@ -1766,7 +1768,7 @@ class JobDefinitionEksPropertiesPodPropertiesMetadataArgs:
1766
1768
  @pulumi.getter
1767
1769
  def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
1768
1770
  """
1769
- Key-value pairs used to identify, sort, and organize cube resources.
1771
+ Key-value pairs used to identify, sort, and organize kubernetes resources.
1770
1772
  """
1771
1773
  return pulumi.get(self, "labels")
1772
1774
 
@@ -967,7 +967,7 @@ class ComputeEnvironment(pulumi.CustomResource):
967
967
 
968
968
  @_builtins.property
969
969
  @pulumi.getter(name="updatePolicy")
970
- def update_policy(self) -> pulumi.Output[Optional['outputs.ComputeEnvironmentUpdatePolicy']]:
970
+ def update_policy(self) -> pulumi.Output['outputs.ComputeEnvironmentUpdatePolicy']:
971
971
  """
972
972
  Specifies the infrastructure update policy for the compute environment. See details below.
973
973
  """
@@ -543,18 +543,20 @@ class ComputeEnvironmentUpdatePolicy(dict):
543
543
  return super().get(key, default)
544
544
 
545
545
  def __init__(__self__, *,
546
- job_execution_timeout_minutes: _builtins.int,
547
- terminate_jobs_on_update: _builtins.bool):
546
+ job_execution_timeout_minutes: Optional[_builtins.int] = None,
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
- pulumi.set(__self__, "job_execution_timeout_minutes", job_execution_timeout_minutes)
553
- pulumi.set(__self__, "terminate_jobs_on_update", terminate_jobs_on_update)
552
+ if job_execution_timeout_minutes is not None:
553
+ pulumi.set(__self__, "job_execution_timeout_minutes", job_execution_timeout_minutes)
554
+ if terminate_jobs_on_update is not None:
555
+ pulumi.set(__self__, "terminate_jobs_on_update", terminate_jobs_on_update)
554
556
 
555
557
  @_builtins.property
556
558
  @pulumi.getter(name="jobExecutionTimeoutMinutes")
557
- def job_execution_timeout_minutes(self) -> _builtins.int:
559
+ def job_execution_timeout_minutes(self) -> Optional[_builtins.int]:
558
560
  """
559
561
  Specifies the job timeout (in minutes) when the compute environment infrastructure is updated.
560
562
  """
@@ -562,9 +564,9 @@ class ComputeEnvironmentUpdatePolicy(dict):
562
564
 
563
565
  @_builtins.property
564
566
  @pulumi.getter(name="terminateJobsOnUpdate")
565
- def terminate_jobs_on_update(self) -> _builtins.bool:
567
+ def terminate_jobs_on_update(self) -> Optional[_builtins.bool]:
566
568
  """
567
- 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.
568
570
  """
569
571
  return pulumi.get(self, "terminate_jobs_on_update")
570
572
 
@@ -1378,7 +1380,7 @@ class JobDefinitionEksPropertiesPodPropertiesMetadata(dict):
1378
1380
  def __init__(__self__, *,
1379
1381
  labels: Optional[Mapping[str, _builtins.str]] = None):
1380
1382
  """
1381
- :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.
1382
1384
  """
1383
1385
  if labels is not None:
1384
1386
  pulumi.set(__self__, "labels", labels)
@@ -1387,7 +1389,7 @@ class JobDefinitionEksPropertiesPodPropertiesMetadata(dict):
1387
1389
  @pulumi.getter
1388
1390
  def labels(self) -> Optional[Mapping[str, _builtins.str]]:
1389
1391
  """
1390
- Key-value pairs used to identify, sort, and organize cube resources.
1392
+ Key-value pairs used to identify, sort, and organize kubernetes resources.
1391
1393
  """
1392
1394
  return pulumi.get(self, "labels")
1393
1395
 
@@ -161,11 +161,11 @@ if not MYPY:
161
161
  class ExportExportDataQueryArgsDict(TypedDict):
162
162
  query_statement: pulumi.Input[_builtins.str]
163
163
  """
164
- Query statement.
164
+ Query statement. The SQL table name for CUR 2.0 is `COST_AND_USAGE_REPORT`. See the [AWS documentation](https://docs.aws.amazon.com/cur/latest/userguide/table-dictionary-cur2.html) for a list of available columns.
165
165
  """
166
166
  table_configurations: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]]]
167
167
  """
168
- Table configuration.
168
+ Table configuration. See the [AWS documentation](https://docs.aws.amazon.com/cur/latest/userguide/table-dictionary-cur2.html#cur2-table-configurations) for the available configurations. In addition to those listed in the documentation, `BILLING_VIEW_ARN` must also be included, as shown in the example above.
169
169
  """
170
170
  elif False:
171
171
  ExportExportDataQueryArgsDict: TypeAlias = Mapping[str, Any]
@@ -176,8 +176,8 @@ class ExportExportDataQueryArgs:
176
176
  query_statement: pulumi.Input[_builtins.str],
177
177
  table_configurations: Optional[pulumi.Input[Mapping[str, pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]]] = None):
178
178
  """
179
- :param pulumi.Input[_builtins.str] query_statement: Query statement.
180
- :param pulumi.Input[Mapping[str, pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]] table_configurations: Table configuration.
179
+ :param pulumi.Input[_builtins.str] query_statement: Query statement. The SQL table name for CUR 2.0 is `COST_AND_USAGE_REPORT`. See the [AWS documentation](https://docs.aws.amazon.com/cur/latest/userguide/table-dictionary-cur2.html) for a list of available columns.
180
+ :param pulumi.Input[Mapping[str, pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]] table_configurations: Table configuration. See the [AWS documentation](https://docs.aws.amazon.com/cur/latest/userguide/table-dictionary-cur2.html#cur2-table-configurations) for the available configurations. In addition to those listed in the documentation, `BILLING_VIEW_ARN` must also be included, as shown in the example above.
181
181
  """
182
182
  pulumi.set(__self__, "query_statement", query_statement)
183
183
  if table_configurations is not None:
@@ -187,7 +187,7 @@ class ExportExportDataQueryArgs:
187
187
  @pulumi.getter(name="queryStatement")
188
188
  def query_statement(self) -> pulumi.Input[_builtins.str]:
189
189
  """
190
- Query statement.
190
+ Query statement. The SQL table name for CUR 2.0 is `COST_AND_USAGE_REPORT`. See the [AWS documentation](https://docs.aws.amazon.com/cur/latest/userguide/table-dictionary-cur2.html) for a list of available columns.
191
191
  """
192
192
  return pulumi.get(self, "query_statement")
193
193
 
@@ -199,7 +199,7 @@ class ExportExportDataQueryArgs:
199
199
  @pulumi.getter(name="tableConfigurations")
200
200
  def table_configurations(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]]]:
201
201
  """
202
- Table configuration.
202
+ Table configuration. See the [AWS documentation](https://docs.aws.amazon.com/cur/latest/userguide/table-dictionary-cur2.html#cur2-table-configurations) for the available configurations. In addition to those listed in the documentation, `BILLING_VIEW_ARN` must also be included, as shown in the example above.
203
203
  """
204
204
  return pulumi.get(self, "table_configurations")
205
205
 
@@ -165,12 +165,15 @@ class Export(pulumi.CustomResource):
165
165
  import pulumi
166
166
  import pulumi_aws as aws
167
167
 
168
+ current = aws.get_caller_identity()
169
+ current_get_partition = aws.get_partition()
168
170
  test = aws.bcmdata.Export("test", export={
169
171
  "name": "testexample",
170
172
  "data_queries": [{
171
173
  "query_statement": "SELECT identity_line_item_id, identity_time_interval, line_item_product_code,line_item_unblended_cost FROM COST_AND_USAGE_REPORT",
172
174
  "table_configurations": {
173
175
  "COST_AND_USAGE_REPORT": {
176
+ "BILLING_VIEW_ARN": f"arn:{current_get_partition.partition}:billing::{current.account_id}:billingview/primary",
174
177
  "TIME_GRANULARITY": "HOURLY",
175
178
  "INCLUDE_RESOURCES": "FALSE",
176
179
  "INCLUDE_MANUAL_DISCOUNT_COMPATIBILITY": "FALSE",
@@ -226,12 +229,15 @@ class Export(pulumi.CustomResource):
226
229
  import pulumi
227
230
  import pulumi_aws as aws
228
231
 
232
+ current = aws.get_caller_identity()
233
+ current_get_partition = aws.get_partition()
229
234
  test = aws.bcmdata.Export("test", export={
230
235
  "name": "testexample",
231
236
  "data_queries": [{
232
237
  "query_statement": "SELECT identity_line_item_id, identity_time_interval, line_item_product_code,line_item_unblended_cost FROM COST_AND_USAGE_REPORT",
233
238
  "table_configurations": {
234
239
  "COST_AND_USAGE_REPORT": {
240
+ "BILLING_VIEW_ARN": f"arn:{current_get_partition.partition}:billing::{current.account_id}:billingview/primary",
235
241
  "TIME_GRANULARITY": "HOURLY",
236
242
  "INCLUDE_RESOURCES": "FALSE",
237
243
  "INCLUDE_MANUAL_DISCOUNT_COMPATIBILITY": "FALSE",
@@ -147,8 +147,8 @@ class ExportExportDataQuery(dict):
147
147
  query_statement: _builtins.str,
148
148
  table_configurations: Optional[Mapping[str, Mapping[str, _builtins.str]]] = None):
149
149
  """
150
- :param _builtins.str query_statement: Query statement.
151
- :param Mapping[str, Mapping[str, _builtins.str]] table_configurations: Table configuration.
150
+ :param _builtins.str query_statement: Query statement. The SQL table name for CUR 2.0 is `COST_AND_USAGE_REPORT`. See the [AWS documentation](https://docs.aws.amazon.com/cur/latest/userguide/table-dictionary-cur2.html) for a list of available columns.
151
+ :param Mapping[str, Mapping[str, _builtins.str]] table_configurations: Table configuration. See the [AWS documentation](https://docs.aws.amazon.com/cur/latest/userguide/table-dictionary-cur2.html#cur2-table-configurations) for the available configurations. In addition to those listed in the documentation, `BILLING_VIEW_ARN` must also be included, as shown in the example above.
152
152
  """
153
153
  pulumi.set(__self__, "query_statement", query_statement)
154
154
  if table_configurations is not None:
@@ -158,7 +158,7 @@ class ExportExportDataQuery(dict):
158
158
  @pulumi.getter(name="queryStatement")
159
159
  def query_statement(self) -> _builtins.str:
160
160
  """
161
- Query statement.
161
+ Query statement. The SQL table name for CUR 2.0 is `COST_AND_USAGE_REPORT`. See the [AWS documentation](https://docs.aws.amazon.com/cur/latest/userguide/table-dictionary-cur2.html) for a list of available columns.
162
162
  """
163
163
  return pulumi.get(self, "query_statement")
164
164
 
@@ -166,7 +166,7 @@ class ExportExportDataQuery(dict):
166
166
  @pulumi.getter(name="tableConfigurations")
167
167
  def table_configurations(self) -> Optional[Mapping[str, Mapping[str, _builtins.str]]]:
168
168
  """
169
- Table configuration.
169
+ Table configuration. See the [AWS documentation](https://docs.aws.amazon.com/cur/latest/userguide/table-dictionary-cur2.html#cur2-table-configurations) for the available configurations. In addition to those listed in the documentation, `BILLING_VIEW_ARN` must also be included, as shown in the example above.
170
170
  """
171
171
  return pulumi.get(self, "table_configurations")
172
172