pulumi-aws 7.14.0__py3-none-any.whl → 7.15.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 (44) hide show
  1. pulumi_aws/__init__.py +8 -0
  2. pulumi_aws/bedrock/_inputs.py +1894 -267
  3. pulumi_aws/bedrock/agent_knowledge_base.py +253 -17
  4. pulumi_aws/bedrock/outputs.py +1571 -199
  5. pulumi_aws/cloudfront/__init__.py +1 -0
  6. pulumi_aws/cloudfront/_inputs.py +199 -0
  7. pulumi_aws/cloudfront/outputs.py +134 -0
  8. pulumi_aws/cloudfront/trust_store.py +497 -0
  9. pulumi_aws/codebuild/_inputs.py +20 -0
  10. pulumi_aws/codebuild/outputs.py +29 -0
  11. pulumi_aws/config/__init__.pyi +5 -0
  12. pulumi_aws/config/vars.py +7 -0
  13. pulumi_aws/datazone/domain.py +28 -0
  14. pulumi_aws/datazone/get_domain.py +15 -1
  15. pulumi_aws/ecs/_inputs.py +6 -6
  16. pulumi_aws/ecs/cluster.py +2 -2
  17. pulumi_aws/ecs/outputs.py +4 -4
  18. pulumi_aws/elasticache/serverless_cache.py +7 -7
  19. pulumi_aws/lambda_/function.py +31 -12
  20. pulumi_aws/networkmanager/_inputs.py +650 -23
  21. pulumi_aws/networkmanager/connect_attachment.py +47 -0
  22. pulumi_aws/networkmanager/connect_peer.py +7 -7
  23. pulumi_aws/networkmanager/dx_gateway_attachment.py +47 -0
  24. pulumi_aws/networkmanager/get_core_network_policy_document.py +37 -1
  25. pulumi_aws/networkmanager/outputs.py +379 -14
  26. pulumi_aws/networkmanager/site_to_site_vpn_attachment.py +47 -0
  27. pulumi_aws/networkmanager/transit_gateway_route_table_attachment.py +47 -0
  28. pulumi_aws/networkmanager/vpc_attachment.py +47 -0
  29. pulumi_aws/odb/get_cloud_vm_cluster.py +23 -1
  30. pulumi_aws/organizations/__init__.py +1 -0
  31. pulumi_aws/organizations/get_account.py +231 -0
  32. pulumi_aws/provider.py +21 -1
  33. pulumi_aws/pulumi-plugin.json +1 -1
  34. pulumi_aws/route53/get_resolver_endpoint.py +29 -1
  35. pulumi_aws/route53/resolver_endpoint.py +97 -3
  36. pulumi_aws/s3/_inputs.py +7 -0
  37. pulumi_aws/s3/outputs.py +4 -0
  38. pulumi_aws/vpclattice/_inputs.py +54 -0
  39. pulumi_aws/vpclattice/outputs.py +51 -0
  40. pulumi_aws/vpclattice/service_network_vpc_association.py +96 -0
  41. {pulumi_aws-7.14.0.dist-info → pulumi_aws-7.15.0.dist-info}/METADATA +1 -1
  42. {pulumi_aws-7.14.0.dist-info → pulumi_aws-7.15.0.dist-info}/RECORD +44 -42
  43. {pulumi_aws-7.14.0.dist-info → pulumi_aws-7.15.0.dist-info}/WHEEL +0 -0
  44. {pulumi_aws-7.14.0.dist-info → pulumi_aws-7.15.0.dist-info}/top_level.txt +0 -0
@@ -33,6 +33,7 @@ from .origin_request_policy import *
33
33
  from .public_key import *
34
34
  from .realtime_log_config import *
35
35
  from .response_headers_policy import *
36
+ from .trust_store import *
36
37
  from .vpc_origin import *
37
38
  from ._inputs import *
38
39
  from . import outputs
@@ -175,6 +175,12 @@ __all__ = [
175
175
  'ResponseHeadersPolicySecurityHeadersConfigXssProtectionArgsDict',
176
176
  'ResponseHeadersPolicyServerTimingHeadersConfigArgs',
177
177
  'ResponseHeadersPolicyServerTimingHeadersConfigArgsDict',
178
+ 'TrustStoreCaCertificatesBundleSourceArgs',
179
+ 'TrustStoreCaCertificatesBundleSourceArgsDict',
180
+ 'TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3LocationArgs',
181
+ 'TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3LocationArgsDict',
182
+ 'TrustStoreTimeoutsArgs',
183
+ 'TrustStoreTimeoutsArgsDict',
178
184
  'VpcOriginTimeoutsArgs',
179
185
  'VpcOriginTimeoutsArgsDict',
180
186
  'VpcOriginVpcOriginEndpointConfigArgs',
@@ -5153,6 +5159,199 @@ class ResponseHeadersPolicyServerTimingHeadersConfigArgs:
5153
5159
  pulumi.set(self, "sampling_rate", value)
5154
5160
 
5155
5161
 
5162
+ if not MYPY:
5163
+ class TrustStoreCaCertificatesBundleSourceArgsDict(TypedDict):
5164
+ ca_certificates_bundle_s3_location: NotRequired[pulumi.Input['TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3LocationArgsDict']]
5165
+ """
5166
+ Configuration block for the S3 location of the CA certificates bundle. See `ca_certificates_bundle_s3_location` below.
5167
+ """
5168
+ elif False:
5169
+ TrustStoreCaCertificatesBundleSourceArgsDict: TypeAlias = Mapping[str, Any]
5170
+
5171
+ @pulumi.input_type
5172
+ class TrustStoreCaCertificatesBundleSourceArgs:
5173
+ def __init__(__self__, *,
5174
+ ca_certificates_bundle_s3_location: Optional[pulumi.Input['TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3LocationArgs']] = None):
5175
+ """
5176
+ :param pulumi.Input['TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3LocationArgs'] ca_certificates_bundle_s3_location: Configuration block for the S3 location of the CA certificates bundle. See `ca_certificates_bundle_s3_location` below.
5177
+ """
5178
+ if ca_certificates_bundle_s3_location is not None:
5179
+ pulumi.set(__self__, "ca_certificates_bundle_s3_location", ca_certificates_bundle_s3_location)
5180
+
5181
+ @_builtins.property
5182
+ @pulumi.getter(name="caCertificatesBundleS3Location")
5183
+ def ca_certificates_bundle_s3_location(self) -> Optional[pulumi.Input['TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3LocationArgs']]:
5184
+ """
5185
+ Configuration block for the S3 location of the CA certificates bundle. See `ca_certificates_bundle_s3_location` below.
5186
+ """
5187
+ return pulumi.get(self, "ca_certificates_bundle_s3_location")
5188
+
5189
+ @ca_certificates_bundle_s3_location.setter
5190
+ def ca_certificates_bundle_s3_location(self, value: Optional[pulumi.Input['TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3LocationArgs']]):
5191
+ pulumi.set(self, "ca_certificates_bundle_s3_location", value)
5192
+
5193
+
5194
+ if not MYPY:
5195
+ class TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3LocationArgsDict(TypedDict):
5196
+ bucket: pulumi.Input[_builtins.str]
5197
+ """
5198
+ S3 bucket name containing the CA certificates bundle.
5199
+ """
5200
+ key: pulumi.Input[_builtins.str]
5201
+ """
5202
+ S3 object key for the CA certificates bundle.
5203
+ """
5204
+ region: pulumi.Input[_builtins.str]
5205
+ """
5206
+ AWS region of the S3 bucket.
5207
+ """
5208
+ version: NotRequired[pulumi.Input[_builtins.str]]
5209
+ """
5210
+ S3 object version ID for the CA certificates bundle.
5211
+ """
5212
+ elif False:
5213
+ TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3LocationArgsDict: TypeAlias = Mapping[str, Any]
5214
+
5215
+ @pulumi.input_type
5216
+ class TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3LocationArgs:
5217
+ def __init__(__self__, *,
5218
+ bucket: pulumi.Input[_builtins.str],
5219
+ key: pulumi.Input[_builtins.str],
5220
+ region: pulumi.Input[_builtins.str],
5221
+ version: Optional[pulumi.Input[_builtins.str]] = None):
5222
+ """
5223
+ :param pulumi.Input[_builtins.str] bucket: S3 bucket name containing the CA certificates bundle.
5224
+ :param pulumi.Input[_builtins.str] key: S3 object key for the CA certificates bundle.
5225
+ :param pulumi.Input[_builtins.str] region: AWS region of the S3 bucket.
5226
+ :param pulumi.Input[_builtins.str] version: S3 object version ID for the CA certificates bundle.
5227
+ """
5228
+ pulumi.set(__self__, "bucket", bucket)
5229
+ pulumi.set(__self__, "key", key)
5230
+ pulumi.set(__self__, "region", region)
5231
+ if version is not None:
5232
+ pulumi.set(__self__, "version", version)
5233
+
5234
+ @_builtins.property
5235
+ @pulumi.getter
5236
+ def bucket(self) -> pulumi.Input[_builtins.str]:
5237
+ """
5238
+ S3 bucket name containing the CA certificates bundle.
5239
+ """
5240
+ return pulumi.get(self, "bucket")
5241
+
5242
+ @bucket.setter
5243
+ def bucket(self, value: pulumi.Input[_builtins.str]):
5244
+ pulumi.set(self, "bucket", value)
5245
+
5246
+ @_builtins.property
5247
+ @pulumi.getter
5248
+ def key(self) -> pulumi.Input[_builtins.str]:
5249
+ """
5250
+ S3 object key for the CA certificates bundle.
5251
+ """
5252
+ return pulumi.get(self, "key")
5253
+
5254
+ @key.setter
5255
+ def key(self, value: pulumi.Input[_builtins.str]):
5256
+ pulumi.set(self, "key", value)
5257
+
5258
+ @_builtins.property
5259
+ @pulumi.getter
5260
+ def region(self) -> pulumi.Input[_builtins.str]:
5261
+ """
5262
+ AWS region of the S3 bucket.
5263
+ """
5264
+ return pulumi.get(self, "region")
5265
+
5266
+ @region.setter
5267
+ def region(self, value: pulumi.Input[_builtins.str]):
5268
+ pulumi.set(self, "region", value)
5269
+
5270
+ @_builtins.property
5271
+ @pulumi.getter
5272
+ def version(self) -> Optional[pulumi.Input[_builtins.str]]:
5273
+ """
5274
+ S3 object version ID for the CA certificates bundle.
5275
+ """
5276
+ return pulumi.get(self, "version")
5277
+
5278
+ @version.setter
5279
+ def version(self, value: Optional[pulumi.Input[_builtins.str]]):
5280
+ pulumi.set(self, "version", value)
5281
+
5282
+
5283
+ if not MYPY:
5284
+ class TrustStoreTimeoutsArgsDict(TypedDict):
5285
+ create: NotRequired[pulumi.Input[_builtins.str]]
5286
+ """
5287
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
5288
+ """
5289
+ delete: NotRequired[pulumi.Input[_builtins.str]]
5290
+ """
5291
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
5292
+ """
5293
+ update: NotRequired[pulumi.Input[_builtins.str]]
5294
+ """
5295
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
5296
+ """
5297
+ elif False:
5298
+ TrustStoreTimeoutsArgsDict: TypeAlias = Mapping[str, Any]
5299
+
5300
+ @pulumi.input_type
5301
+ class TrustStoreTimeoutsArgs:
5302
+ def __init__(__self__, *,
5303
+ create: Optional[pulumi.Input[_builtins.str]] = None,
5304
+ delete: Optional[pulumi.Input[_builtins.str]] = None,
5305
+ update: Optional[pulumi.Input[_builtins.str]] = None):
5306
+ """
5307
+ :param pulumi.Input[_builtins.str] create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
5308
+ :param pulumi.Input[_builtins.str] delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
5309
+ :param pulumi.Input[_builtins.str] update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
5310
+ """
5311
+ if create is not None:
5312
+ pulumi.set(__self__, "create", create)
5313
+ if delete is not None:
5314
+ pulumi.set(__self__, "delete", delete)
5315
+ if update is not None:
5316
+ pulumi.set(__self__, "update", update)
5317
+
5318
+ @_builtins.property
5319
+ @pulumi.getter
5320
+ def create(self) -> Optional[pulumi.Input[_builtins.str]]:
5321
+ """
5322
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
5323
+ """
5324
+ return pulumi.get(self, "create")
5325
+
5326
+ @create.setter
5327
+ def create(self, value: Optional[pulumi.Input[_builtins.str]]):
5328
+ pulumi.set(self, "create", value)
5329
+
5330
+ @_builtins.property
5331
+ @pulumi.getter
5332
+ def delete(self) -> Optional[pulumi.Input[_builtins.str]]:
5333
+ """
5334
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
5335
+ """
5336
+ return pulumi.get(self, "delete")
5337
+
5338
+ @delete.setter
5339
+ def delete(self, value: Optional[pulumi.Input[_builtins.str]]):
5340
+ pulumi.set(self, "delete", value)
5341
+
5342
+ @_builtins.property
5343
+ @pulumi.getter
5344
+ def update(self) -> Optional[pulumi.Input[_builtins.str]]:
5345
+ """
5346
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
5347
+ """
5348
+ return pulumi.get(self, "update")
5349
+
5350
+ @update.setter
5351
+ def update(self, value: Optional[pulumi.Input[_builtins.str]]):
5352
+ pulumi.set(self, "update", value)
5353
+
5354
+
5156
5355
  if not MYPY:
5157
5356
  class VpcOriginTimeoutsArgsDict(TypedDict):
5158
5357
  create: NotRequired[pulumi.Input[_builtins.str]]
@@ -96,6 +96,9 @@ __all__ = [
96
96
  'ResponseHeadersPolicySecurityHeadersConfigStrictTransportSecurity',
97
97
  'ResponseHeadersPolicySecurityHeadersConfigXssProtection',
98
98
  'ResponseHeadersPolicyServerTimingHeadersConfig',
99
+ 'TrustStoreCaCertificatesBundleSource',
100
+ 'TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3Location',
101
+ 'TrustStoreTimeouts',
99
102
  'VpcOriginTimeouts',
100
103
  'VpcOriginVpcOriginEndpointConfig',
101
104
  'VpcOriginVpcOriginEndpointConfigOriginSslProtocols',
@@ -4140,6 +4143,137 @@ class ResponseHeadersPolicyServerTimingHeadersConfig(dict):
4140
4143
  return pulumi.get(self, "sampling_rate")
4141
4144
 
4142
4145
 
4146
+ @pulumi.output_type
4147
+ class TrustStoreCaCertificatesBundleSource(dict):
4148
+ @staticmethod
4149
+ def __key_warning(key: str):
4150
+ suggest = None
4151
+ if key == "caCertificatesBundleS3Location":
4152
+ suggest = "ca_certificates_bundle_s3_location"
4153
+
4154
+ if suggest:
4155
+ pulumi.log.warn(f"Key '{key}' not found in TrustStoreCaCertificatesBundleSource. Access the value via the '{suggest}' property getter instead.")
4156
+
4157
+ def __getitem__(self, key: str) -> Any:
4158
+ TrustStoreCaCertificatesBundleSource.__key_warning(key)
4159
+ return super().__getitem__(key)
4160
+
4161
+ def get(self, key: str, default = None) -> Any:
4162
+ TrustStoreCaCertificatesBundleSource.__key_warning(key)
4163
+ return super().get(key, default)
4164
+
4165
+ def __init__(__self__, *,
4166
+ ca_certificates_bundle_s3_location: Optional['outputs.TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3Location'] = None):
4167
+ """
4168
+ :param 'TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3LocationArgs' ca_certificates_bundle_s3_location: Configuration block for the S3 location of the CA certificates bundle. See `ca_certificates_bundle_s3_location` below.
4169
+ """
4170
+ if ca_certificates_bundle_s3_location is not None:
4171
+ pulumi.set(__self__, "ca_certificates_bundle_s3_location", ca_certificates_bundle_s3_location)
4172
+
4173
+ @_builtins.property
4174
+ @pulumi.getter(name="caCertificatesBundleS3Location")
4175
+ def ca_certificates_bundle_s3_location(self) -> Optional['outputs.TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3Location']:
4176
+ """
4177
+ Configuration block for the S3 location of the CA certificates bundle. See `ca_certificates_bundle_s3_location` below.
4178
+ """
4179
+ return pulumi.get(self, "ca_certificates_bundle_s3_location")
4180
+
4181
+
4182
+ @pulumi.output_type
4183
+ class TrustStoreCaCertificatesBundleSourceCaCertificatesBundleS3Location(dict):
4184
+ def __init__(__self__, *,
4185
+ bucket: _builtins.str,
4186
+ key: _builtins.str,
4187
+ region: _builtins.str,
4188
+ version: Optional[_builtins.str] = None):
4189
+ """
4190
+ :param _builtins.str bucket: S3 bucket name containing the CA certificates bundle.
4191
+ :param _builtins.str key: S3 object key for the CA certificates bundle.
4192
+ :param _builtins.str region: AWS region of the S3 bucket.
4193
+ :param _builtins.str version: S3 object version ID for the CA certificates bundle.
4194
+ """
4195
+ pulumi.set(__self__, "bucket", bucket)
4196
+ pulumi.set(__self__, "key", key)
4197
+ pulumi.set(__self__, "region", region)
4198
+ if version is not None:
4199
+ pulumi.set(__self__, "version", version)
4200
+
4201
+ @_builtins.property
4202
+ @pulumi.getter
4203
+ def bucket(self) -> _builtins.str:
4204
+ """
4205
+ S3 bucket name containing the CA certificates bundle.
4206
+ """
4207
+ return pulumi.get(self, "bucket")
4208
+
4209
+ @_builtins.property
4210
+ @pulumi.getter
4211
+ def key(self) -> _builtins.str:
4212
+ """
4213
+ S3 object key for the CA certificates bundle.
4214
+ """
4215
+ return pulumi.get(self, "key")
4216
+
4217
+ @_builtins.property
4218
+ @pulumi.getter
4219
+ def region(self) -> _builtins.str:
4220
+ """
4221
+ AWS region of the S3 bucket.
4222
+ """
4223
+ return pulumi.get(self, "region")
4224
+
4225
+ @_builtins.property
4226
+ @pulumi.getter
4227
+ def version(self) -> Optional[_builtins.str]:
4228
+ """
4229
+ S3 object version ID for the CA certificates bundle.
4230
+ """
4231
+ return pulumi.get(self, "version")
4232
+
4233
+
4234
+ @pulumi.output_type
4235
+ class TrustStoreTimeouts(dict):
4236
+ def __init__(__self__, *,
4237
+ create: Optional[_builtins.str] = None,
4238
+ delete: Optional[_builtins.str] = None,
4239
+ update: Optional[_builtins.str] = None):
4240
+ """
4241
+ :param _builtins.str create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
4242
+ :param _builtins.str delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
4243
+ :param _builtins.str update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
4244
+ """
4245
+ if create is not None:
4246
+ pulumi.set(__self__, "create", create)
4247
+ if delete is not None:
4248
+ pulumi.set(__self__, "delete", delete)
4249
+ if update is not None:
4250
+ pulumi.set(__self__, "update", update)
4251
+
4252
+ @_builtins.property
4253
+ @pulumi.getter
4254
+ def create(self) -> Optional[_builtins.str]:
4255
+ """
4256
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
4257
+ """
4258
+ return pulumi.get(self, "create")
4259
+
4260
+ @_builtins.property
4261
+ @pulumi.getter
4262
+ def delete(self) -> Optional[_builtins.str]:
4263
+ """
4264
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
4265
+ """
4266
+ return pulumi.get(self, "delete")
4267
+
4268
+ @_builtins.property
4269
+ @pulumi.getter
4270
+ def update(self) -> Optional[_builtins.str]:
4271
+ """
4272
+ A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
4273
+ """
4274
+ return pulumi.get(self, "update")
4275
+
4276
+
4143
4277
  @pulumi.output_type
4144
4278
  class VpcOriginTimeouts(dict):
4145
4279
  def __init__(__self__, *,