pulumi-aws-native 1.38.0a1761286050__py3-none-any.whl → 1.38.0a1761310773__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-aws-native might be problematic. Click here for more details.
- pulumi_aws_native/__init__.py +14 -0
- pulumi_aws_native/_enums.py +4 -0
- pulumi_aws_native/applicationsignals/get_grouping_configuration.py +9 -0
- pulumi_aws_native/applicationsignals/grouping_configuration.py +3 -0
- pulumi_aws_native/aps/__init__.py +2 -0
- pulumi_aws_native/aps/_inputs.py +232 -0
- pulumi_aws_native/aps/anomaly_detector.py +318 -0
- pulumi_aws_native/aps/get_anomaly_detector.py +149 -0
- pulumi_aws_native/aps/outputs.py +193 -0
- pulumi_aws_native/cloudfront/_inputs.py +14 -1
- pulumi_aws_native/cloudfront/get_vpc_origin.py +12 -1
- pulumi_aws_native/cloudfront/outputs.py +11 -1
- pulumi_aws_native/cloudfront/vpc_origin.py +7 -0
- pulumi_aws_native/connect/_enums.py +68 -0
- pulumi_aws_native/connect/_inputs.py +581 -1
- pulumi_aws_native/connect/email_address.py +31 -0
- pulumi_aws_native/connect/get_email_address.py +16 -1
- pulumi_aws_native/connect/outputs.py +473 -3
- pulumi_aws_native/connectcampaignsv2/_enums.py +9 -0
- pulumi_aws_native/connectcampaignsv2/_inputs.py +99 -0
- pulumi_aws_native/connectcampaignsv2/outputs.py +102 -0
- pulumi_aws_native/ec2/capacity_reservation.py +6 -6
- pulumi_aws_native/ec2/get_capacity_reservation.py +2 -2
- pulumi_aws_native/ec2/get_nat_gateway.py +3 -0
- pulumi_aws_native/ec2/nat_gateway.py +11 -0
- pulumi_aws_native/ecr/_inputs.py +2 -2
- pulumi_aws_native/ecr/get_repository.py +3 -2
- pulumi_aws_native/ecr/outputs.py +2 -2
- pulumi_aws_native/ecr/repository.py +12 -8
- pulumi_aws_native/ecs/_enums.py +1 -0
- pulumi_aws_native/ecs/service.py +4 -0
- pulumi_aws_native/elasticloadbalancingv2/_inputs.py +201 -22
- pulumi_aws_native/elasticloadbalancingv2/get_listener_rule.py +15 -4
- pulumi_aws_native/elasticloadbalancingv2/listener_rule.py +22 -1
- pulumi_aws_native/elasticloadbalancingv2/outputs.py +179 -16
- pulumi_aws_native/events/__init__.py +2 -0
- pulumi_aws_native/events/_inputs.py +78 -0
- pulumi_aws_native/events/event_bus_policy.py +275 -0
- pulumi_aws_native/events/get_event_bus_policy.py +85 -0
- pulumi_aws_native/events/outputs.py +48 -0
- pulumi_aws_native/gameliftstreams/application.py +4 -4
- pulumi_aws_native/imagebuilder/_inputs.py +58 -0
- pulumi_aws_native/imagebuilder/get_image_pipeline.py +15 -1
- pulumi_aws_native/imagebuilder/image.py +29 -0
- pulumi_aws_native/imagebuilder/image_pipeline.py +10 -0
- pulumi_aws_native/imagebuilder/outputs.py +55 -0
- pulumi_aws_native/lambda_/permission.py +4 -4
- pulumi_aws_native/mediapackagev2/_enums.py +15 -0
- pulumi_aws_native/mediapackagev2/_inputs.py +96 -0
- pulumi_aws_native/mediapackagev2/get_origin_endpoint.py +26 -1
- pulumi_aws_native/mediapackagev2/origin_endpoint.py +36 -0
- pulumi_aws_native/mediapackagev2/outputs.py +84 -0
- pulumi_aws_native/neptune/db_instance.py +29 -0
- pulumi_aws_native/neptune/get_db_instance.py +15 -1
- pulumi_aws_native/observabilityadmin/_enums.py +9 -0
- pulumi_aws_native/observabilityadmin/_inputs.py +252 -0
- pulumi_aws_native/observabilityadmin/get_organization_centralization_rule.py +9 -0
- pulumi_aws_native/observabilityadmin/get_organization_telemetry_rule.py +3 -0
- pulumi_aws_native/observabilityadmin/get_telemetry_rule.py +3 -0
- pulumi_aws_native/observabilityadmin/organization_centralization_rule.py +11 -0
- pulumi_aws_native/observabilityadmin/organization_telemetry_rule.py +8 -0
- pulumi_aws_native/observabilityadmin/outputs.py +150 -0
- pulumi_aws_native/observabilityadmin/telemetry_rule.py +8 -0
- pulumi_aws_native/organizations/_enums.py +13 -0
- pulumi_aws_native/organizations/account.py +10 -0
- pulumi_aws_native/organizations/get_account.py +15 -1
- pulumi_aws_native/osis/_inputs.py +24 -0
- pulumi_aws_native/osis/get_pipeline.py +26 -1
- pulumi_aws_native/osis/outputs.py +13 -0
- pulumi_aws_native/osis/pipeline.py +50 -0
- pulumi_aws_native/pulumi-plugin.json +1 -1
- pulumi_aws_native/quicksight/_enums.py +1 -1
- pulumi_aws_native/quicksight/_inputs.py +3 -3
- pulumi_aws_native/quicksight/outputs.py +2 -2
- pulumi_aws_native/rds/db_cluster.py +24 -40
- pulumi_aws_native/route53/_inputs.py +21 -3
- pulumi_aws_native/route53/outputs.py +14 -2
- pulumi_aws_native/rtbfabric/__init__.py +15 -0
- pulumi_aws_native/rtbfabric/_enums.py +45 -0
- pulumi_aws_native/rtbfabric/_inputs.py +60 -0
- pulumi_aws_native/rtbfabric/get_requester_gateway.py +202 -0
- pulumi_aws_native/rtbfabric/get_responder_gateway.py +225 -0
- pulumi_aws_native/rtbfabric/outputs.py +57 -0
- pulumi_aws_native/rtbfabric/requester_gateway.py +263 -0
- pulumi_aws_native/rtbfabric/responder_gateway.py +351 -0
- pulumi_aws_native/s3/access_grants_location.py +15 -13
- pulumi_aws_native/sagemaker/_enums.py +10 -0
- pulumi_aws_native/sagemaker/_inputs.py +64 -0
- pulumi_aws_native/sagemaker/cluster.py +21 -0
- pulumi_aws_native/sagemaker/get_cluster.py +15 -4
- pulumi_aws_native/sagemaker/outputs.py +56 -0
- pulumi_aws_native/ssm/_inputs.py +15 -3
- pulumi_aws_native/ssm/outputs.py +10 -2
- pulumi_aws_native/ssmquicksetup/get_lifecycle_automation.py +6 -0
- pulumi_aws_native/ssmquicksetup/lifecycle_automation.py +16 -0
- pulumi_aws_native/synthetics/_inputs.py +52 -12
- pulumi_aws_native/synthetics/outputs.py +35 -8
- pulumi_aws_native/transfer/_inputs.py +9 -3
- pulumi_aws_native/transfer/outputs.py +6 -2
- pulumi_aws_native/wisdom/_enums.py +4 -0
- {pulumi_aws_native-1.38.0a1761286050.dist-info → pulumi_aws_native-1.38.0a1761310773.dist-info}/METADATA +1 -1
- {pulumi_aws_native-1.38.0a1761286050.dist-info → pulumi_aws_native-1.38.0a1761310773.dist-info}/RECORD +104 -92
- {pulumi_aws_native-1.38.0a1761286050.dist-info → pulumi_aws_native-1.38.0a1761310773.dist-info}/WHEEL +0 -0
- {pulumi_aws_native-1.38.0a1761286050.dist-info → pulumi_aws_native-1.38.0a1761310773.dist-info}/top_level.txt +0 -0
|
@@ -36,6 +36,7 @@ __all__ = [
|
|
|
36
36
|
'OriginEndpointForceEndpointErrorConfiguration',
|
|
37
37
|
'OriginEndpointHlsManifestConfiguration',
|
|
38
38
|
'OriginEndpointLowLatencyHlsManifestConfiguration',
|
|
39
|
+
'OriginEndpointMssManifestConfiguration',
|
|
39
40
|
'OriginEndpointPolicyCdnAuthConfiguration',
|
|
40
41
|
'OriginEndpointScte',
|
|
41
42
|
'OriginEndpointScteDash',
|
|
@@ -1120,6 +1121,8 @@ class OriginEndpointEncryptionMethod(dict):
|
|
|
1120
1121
|
suggest = None
|
|
1121
1122
|
if key == "cmafEncryptionMethod":
|
|
1122
1123
|
suggest = "cmaf_encryption_method"
|
|
1124
|
+
elif key == "ismEncryptionMethod":
|
|
1125
|
+
suggest = "ism_encryption_method"
|
|
1123
1126
|
elif key == "tsEncryptionMethod":
|
|
1124
1127
|
suggest = "ts_encryption_method"
|
|
1125
1128
|
|
|
@@ -1136,6 +1139,7 @@ class OriginEndpointEncryptionMethod(dict):
|
|
|
1136
1139
|
|
|
1137
1140
|
def __init__(__self__, *,
|
|
1138
1141
|
cmaf_encryption_method: Optional['OriginEndpointCmafEncryptionMethod'] = None,
|
|
1142
|
+
ism_encryption_method: Optional['OriginEndpointIsmEncryptionMethod'] = None,
|
|
1139
1143
|
ts_encryption_method: Optional['OriginEndpointTsEncryptionMethod'] = None):
|
|
1140
1144
|
"""
|
|
1141
1145
|
<p>The encryption type.</p>
|
|
@@ -1144,6 +1148,8 @@ class OriginEndpointEncryptionMethod(dict):
|
|
|
1144
1148
|
"""
|
|
1145
1149
|
if cmaf_encryption_method is not None:
|
|
1146
1150
|
pulumi.set(__self__, "cmaf_encryption_method", cmaf_encryption_method)
|
|
1151
|
+
if ism_encryption_method is not None:
|
|
1152
|
+
pulumi.set(__self__, "ism_encryption_method", ism_encryption_method)
|
|
1147
1153
|
if ts_encryption_method is not None:
|
|
1148
1154
|
pulumi.set(__self__, "ts_encryption_method", ts_encryption_method)
|
|
1149
1155
|
|
|
@@ -1155,6 +1161,11 @@ class OriginEndpointEncryptionMethod(dict):
|
|
|
1155
1161
|
"""
|
|
1156
1162
|
return pulumi.get(self, "cmaf_encryption_method")
|
|
1157
1163
|
|
|
1164
|
+
@_builtins.property
|
|
1165
|
+
@pulumi.getter(name="ismEncryptionMethod")
|
|
1166
|
+
def ism_encryption_method(self) -> Optional['OriginEndpointIsmEncryptionMethod']:
|
|
1167
|
+
return pulumi.get(self, "ism_encryption_method")
|
|
1168
|
+
|
|
1158
1169
|
@_builtins.property
|
|
1159
1170
|
@pulumi.getter(name="tsEncryptionMethod")
|
|
1160
1171
|
def ts_encryption_method(self) -> Optional['OriginEndpointTsEncryptionMethod']:
|
|
@@ -1594,6 +1605,79 @@ class OriginEndpointLowLatencyHlsManifestConfiguration(dict):
|
|
|
1594
1605
|
return pulumi.get(self, "url_encode_child_manifest")
|
|
1595
1606
|
|
|
1596
1607
|
|
|
1608
|
+
@pulumi.output_type
|
|
1609
|
+
class OriginEndpointMssManifestConfiguration(dict):
|
|
1610
|
+
"""
|
|
1611
|
+
<p>Configuration details for a Microsoft Smooth Streaming (MSS) manifest associated with an origin endpoint. This includes all the settings and properties that define how the MSS content is packaged and delivered.</p>
|
|
1612
|
+
"""
|
|
1613
|
+
@staticmethod
|
|
1614
|
+
def __key_warning(key: str):
|
|
1615
|
+
suggest = None
|
|
1616
|
+
if key == "manifestName":
|
|
1617
|
+
suggest = "manifest_name"
|
|
1618
|
+
elif key == "filterConfiguration":
|
|
1619
|
+
suggest = "filter_configuration"
|
|
1620
|
+
elif key == "manifestLayout":
|
|
1621
|
+
suggest = "manifest_layout"
|
|
1622
|
+
elif key == "manifestWindowSeconds":
|
|
1623
|
+
suggest = "manifest_window_seconds"
|
|
1624
|
+
|
|
1625
|
+
if suggest:
|
|
1626
|
+
pulumi.log.warn(f"Key '{key}' not found in OriginEndpointMssManifestConfiguration. Access the value via the '{suggest}' property getter instead.")
|
|
1627
|
+
|
|
1628
|
+
def __getitem__(self, key: str) -> Any:
|
|
1629
|
+
OriginEndpointMssManifestConfiguration.__key_warning(key)
|
|
1630
|
+
return super().__getitem__(key)
|
|
1631
|
+
|
|
1632
|
+
def get(self, key: str, default = None) -> Any:
|
|
1633
|
+
OriginEndpointMssManifestConfiguration.__key_warning(key)
|
|
1634
|
+
return super().get(key, default)
|
|
1635
|
+
|
|
1636
|
+
def __init__(__self__, *,
|
|
1637
|
+
manifest_name: _builtins.str,
|
|
1638
|
+
filter_configuration: Optional['outputs.OriginEndpointFilterConfiguration'] = None,
|
|
1639
|
+
manifest_layout: Optional['OriginEndpointMssManifestLayout'] = None,
|
|
1640
|
+
manifest_window_seconds: Optional[_builtins.int] = None):
|
|
1641
|
+
"""
|
|
1642
|
+
<p>Configuration details for a Microsoft Smooth Streaming (MSS) manifest associated with an origin endpoint. This includes all the settings and properties that define how the MSS content is packaged and delivered.</p>
|
|
1643
|
+
:param _builtins.str manifest_name: <p>The name of the MSS manifest. This name is appended to the origin endpoint URL to create the unique path for accessing this specific MSS manifest.</p>
|
|
1644
|
+
:param _builtins.int manifest_window_seconds: <p>The duration (in seconds) of the manifest window. This represents the total amount of content available in the manifest at any given time.</p>
|
|
1645
|
+
"""
|
|
1646
|
+
pulumi.set(__self__, "manifest_name", manifest_name)
|
|
1647
|
+
if filter_configuration is not None:
|
|
1648
|
+
pulumi.set(__self__, "filter_configuration", filter_configuration)
|
|
1649
|
+
if manifest_layout is not None:
|
|
1650
|
+
pulumi.set(__self__, "manifest_layout", manifest_layout)
|
|
1651
|
+
if manifest_window_seconds is not None:
|
|
1652
|
+
pulumi.set(__self__, "manifest_window_seconds", manifest_window_seconds)
|
|
1653
|
+
|
|
1654
|
+
@_builtins.property
|
|
1655
|
+
@pulumi.getter(name="manifestName")
|
|
1656
|
+
def manifest_name(self) -> _builtins.str:
|
|
1657
|
+
"""
|
|
1658
|
+
<p>The name of the MSS manifest. This name is appended to the origin endpoint URL to create the unique path for accessing this specific MSS manifest.</p>
|
|
1659
|
+
"""
|
|
1660
|
+
return pulumi.get(self, "manifest_name")
|
|
1661
|
+
|
|
1662
|
+
@_builtins.property
|
|
1663
|
+
@pulumi.getter(name="filterConfiguration")
|
|
1664
|
+
def filter_configuration(self) -> Optional['outputs.OriginEndpointFilterConfiguration']:
|
|
1665
|
+
return pulumi.get(self, "filter_configuration")
|
|
1666
|
+
|
|
1667
|
+
@_builtins.property
|
|
1668
|
+
@pulumi.getter(name="manifestLayout")
|
|
1669
|
+
def manifest_layout(self) -> Optional['OriginEndpointMssManifestLayout']:
|
|
1670
|
+
return pulumi.get(self, "manifest_layout")
|
|
1671
|
+
|
|
1672
|
+
@_builtins.property
|
|
1673
|
+
@pulumi.getter(name="manifestWindowSeconds")
|
|
1674
|
+
def manifest_window_seconds(self) -> Optional[_builtins.int]:
|
|
1675
|
+
"""
|
|
1676
|
+
<p>The duration (in seconds) of the manifest window. This represents the total amount of content available in the manifest at any given time.</p>
|
|
1677
|
+
"""
|
|
1678
|
+
return pulumi.get(self, "manifest_window_seconds")
|
|
1679
|
+
|
|
1680
|
+
|
|
1597
1681
|
@pulumi.output_type
|
|
1598
1682
|
class OriginEndpointPolicyCdnAuthConfiguration(dict):
|
|
1599
1683
|
@staticmethod
|
|
@@ -31,6 +31,7 @@ class DbInstanceArgs:
|
|
|
31
31
|
db_snapshot_identifier: Optional[pulumi.Input[_builtins.str]] = None,
|
|
32
32
|
db_subnet_group_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
33
33
|
preferred_maintenance_window: Optional[pulumi.Input[_builtins.str]] = None,
|
|
34
|
+
publicly_accessible: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
34
35
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]] = None):
|
|
35
36
|
"""
|
|
36
37
|
The set of arguments for constructing a DbInstance resource.
|
|
@@ -52,6 +53,7 @@ class DbInstanceArgs:
|
|
|
52
53
|
`AWS::Neptune::DBCluster` does support restoring from snapshots.
|
|
53
54
|
:param pulumi.Input[_builtins.str] db_subnet_group_name: A DB subnet group to associate with the DB instance. If you update this value, the new subnet group must be a subnet group in a new virtual private cloud (VPC).
|
|
54
55
|
:param pulumi.Input[_builtins.str] preferred_maintenance_window: Specifies the weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC).
|
|
56
|
+
:param pulumi.Input[_builtins.bool] publicly_accessible: Indicates that public accessibility is enabled. This should be enabled in combination with IAM Auth enabled on the DBCluster
|
|
55
57
|
:param pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]] tags: An arbitrary set of tags (key-value pairs) for this DB instance.
|
|
56
58
|
"""
|
|
57
59
|
pulumi.set(__self__, "db_instance_class", db_instance_class)
|
|
@@ -73,6 +75,8 @@ class DbInstanceArgs:
|
|
|
73
75
|
pulumi.set(__self__, "db_subnet_group_name", db_subnet_group_name)
|
|
74
76
|
if preferred_maintenance_window is not None:
|
|
75
77
|
pulumi.set(__self__, "preferred_maintenance_window", preferred_maintenance_window)
|
|
78
|
+
if publicly_accessible is not None:
|
|
79
|
+
pulumi.set(__self__, "publicly_accessible", publicly_accessible)
|
|
76
80
|
if tags is not None:
|
|
77
81
|
pulumi.set(__self__, "tags", tags)
|
|
78
82
|
|
|
@@ -204,6 +208,18 @@ class DbInstanceArgs:
|
|
|
204
208
|
def preferred_maintenance_window(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
205
209
|
pulumi.set(self, "preferred_maintenance_window", value)
|
|
206
210
|
|
|
211
|
+
@_builtins.property
|
|
212
|
+
@pulumi.getter(name="publiclyAccessible")
|
|
213
|
+
def publicly_accessible(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
214
|
+
"""
|
|
215
|
+
Indicates that public accessibility is enabled. This should be enabled in combination with IAM Auth enabled on the DBCluster
|
|
216
|
+
"""
|
|
217
|
+
return pulumi.get(self, "publicly_accessible")
|
|
218
|
+
|
|
219
|
+
@publicly_accessible.setter
|
|
220
|
+
def publicly_accessible(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
221
|
+
pulumi.set(self, "publicly_accessible", value)
|
|
222
|
+
|
|
207
223
|
@_builtins.property
|
|
208
224
|
@pulumi.getter
|
|
209
225
|
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]]:
|
|
@@ -233,6 +249,7 @@ class DbInstance(pulumi.CustomResource):
|
|
|
233
249
|
db_snapshot_identifier: Optional[pulumi.Input[_builtins.str]] = None,
|
|
234
250
|
db_subnet_group_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
235
251
|
preferred_maintenance_window: Optional[pulumi.Input[_builtins.str]] = None,
|
|
252
|
+
publicly_accessible: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
236
253
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]]] = None,
|
|
237
254
|
__props__=None):
|
|
238
255
|
"""
|
|
@@ -258,6 +275,7 @@ class DbInstance(pulumi.CustomResource):
|
|
|
258
275
|
`AWS::Neptune::DBCluster` does support restoring from snapshots.
|
|
259
276
|
:param pulumi.Input[_builtins.str] db_subnet_group_name: A DB subnet group to associate with the DB instance. If you update this value, the new subnet group must be a subnet group in a new virtual private cloud (VPC).
|
|
260
277
|
:param pulumi.Input[_builtins.str] preferred_maintenance_window: Specifies the weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC).
|
|
278
|
+
:param pulumi.Input[_builtins.bool] publicly_accessible: Indicates that public accessibility is enabled. This should be enabled in combination with IAM Auth enabled on the DBCluster
|
|
261
279
|
:param pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]] tags: An arbitrary set of tags (key-value pairs) for this DB instance.
|
|
262
280
|
"""
|
|
263
281
|
...
|
|
@@ -294,6 +312,7 @@ class DbInstance(pulumi.CustomResource):
|
|
|
294
312
|
db_snapshot_identifier: Optional[pulumi.Input[_builtins.str]] = None,
|
|
295
313
|
db_subnet_group_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
296
314
|
preferred_maintenance_window: Optional[pulumi.Input[_builtins.str]] = None,
|
|
315
|
+
publicly_accessible: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
297
316
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]]] = None,
|
|
298
317
|
__props__=None):
|
|
299
318
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
@@ -316,6 +335,7 @@ class DbInstance(pulumi.CustomResource):
|
|
|
316
335
|
__props__.__dict__["db_snapshot_identifier"] = db_snapshot_identifier
|
|
317
336
|
__props__.__dict__["db_subnet_group_name"] = db_subnet_group_name
|
|
318
337
|
__props__.__dict__["preferred_maintenance_window"] = preferred_maintenance_window
|
|
338
|
+
__props__.__dict__["publicly_accessible"] = publicly_accessible
|
|
319
339
|
__props__.__dict__["tags"] = tags
|
|
320
340
|
__props__.__dict__["endpoint"] = None
|
|
321
341
|
__props__.__dict__["port"] = None
|
|
@@ -355,6 +375,7 @@ class DbInstance(pulumi.CustomResource):
|
|
|
355
375
|
__props__.__dict__["endpoint"] = None
|
|
356
376
|
__props__.__dict__["port"] = None
|
|
357
377
|
__props__.__dict__["preferred_maintenance_window"] = None
|
|
378
|
+
__props__.__dict__["publicly_accessible"] = None
|
|
358
379
|
__props__.__dict__["tags"] = None
|
|
359
380
|
return DbInstance(resource_name, opts=opts, __props__=__props__)
|
|
360
381
|
|
|
@@ -462,6 +483,14 @@ class DbInstance(pulumi.CustomResource):
|
|
|
462
483
|
"""
|
|
463
484
|
return pulumi.get(self, "preferred_maintenance_window")
|
|
464
485
|
|
|
486
|
+
@_builtins.property
|
|
487
|
+
@pulumi.getter(name="publiclyAccessible")
|
|
488
|
+
def publicly_accessible(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
489
|
+
"""
|
|
490
|
+
Indicates that public accessibility is enabled. This should be enabled in combination with IAM Auth enabled on the DBCluster
|
|
491
|
+
"""
|
|
492
|
+
return pulumi.get(self, "publicly_accessible")
|
|
493
|
+
|
|
465
494
|
@_builtins.property
|
|
466
495
|
@pulumi.getter
|
|
467
496
|
def tags(self) -> pulumi.Output[Optional[Sequence['_root_outputs.Tag']]]:
|
|
@@ -24,7 +24,7 @@ __all__ = [
|
|
|
24
24
|
|
|
25
25
|
@pulumi.output_type
|
|
26
26
|
class GetDbInstanceResult:
|
|
27
|
-
def __init__(__self__, auto_minor_version_upgrade=None, db_instance_class=None, db_parameter_group_name=None, endpoint=None, port=None, preferred_maintenance_window=None, tags=None):
|
|
27
|
+
def __init__(__self__, auto_minor_version_upgrade=None, db_instance_class=None, db_parameter_group_name=None, endpoint=None, port=None, preferred_maintenance_window=None, publicly_accessible=None, tags=None):
|
|
28
28
|
if auto_minor_version_upgrade and not isinstance(auto_minor_version_upgrade, bool):
|
|
29
29
|
raise TypeError("Expected argument 'auto_minor_version_upgrade' to be a bool")
|
|
30
30
|
pulumi.set(__self__, "auto_minor_version_upgrade", auto_minor_version_upgrade)
|
|
@@ -43,6 +43,9 @@ class GetDbInstanceResult:
|
|
|
43
43
|
if preferred_maintenance_window and not isinstance(preferred_maintenance_window, str):
|
|
44
44
|
raise TypeError("Expected argument 'preferred_maintenance_window' to be a str")
|
|
45
45
|
pulumi.set(__self__, "preferred_maintenance_window", preferred_maintenance_window)
|
|
46
|
+
if publicly_accessible and not isinstance(publicly_accessible, bool):
|
|
47
|
+
raise TypeError("Expected argument 'publicly_accessible' to be a bool")
|
|
48
|
+
pulumi.set(__self__, "publicly_accessible", publicly_accessible)
|
|
46
49
|
if tags and not isinstance(tags, list):
|
|
47
50
|
raise TypeError("Expected argument 'tags' to be a list")
|
|
48
51
|
pulumi.set(__self__, "tags", tags)
|
|
@@ -99,6 +102,14 @@ class GetDbInstanceResult:
|
|
|
99
102
|
"""
|
|
100
103
|
return pulumi.get(self, "preferred_maintenance_window")
|
|
101
104
|
|
|
105
|
+
@_builtins.property
|
|
106
|
+
@pulumi.getter(name="publiclyAccessible")
|
|
107
|
+
def publicly_accessible(self) -> Optional[_builtins.bool]:
|
|
108
|
+
"""
|
|
109
|
+
Indicates that public accessibility is enabled. This should be enabled in combination with IAM Auth enabled on the DBCluster
|
|
110
|
+
"""
|
|
111
|
+
return pulumi.get(self, "publicly_accessible")
|
|
112
|
+
|
|
102
113
|
@_builtins.property
|
|
103
114
|
@pulumi.getter
|
|
104
115
|
def tags(self) -> Optional[Sequence['_root_outputs.Tag']]:
|
|
@@ -120,6 +131,7 @@ class AwaitableGetDbInstanceResult(GetDbInstanceResult):
|
|
|
120
131
|
endpoint=self.endpoint,
|
|
121
132
|
port=self.port,
|
|
122
133
|
preferred_maintenance_window=self.preferred_maintenance_window,
|
|
134
|
+
publicly_accessible=self.publicly_accessible,
|
|
123
135
|
tags=self.tags)
|
|
124
136
|
|
|
125
137
|
|
|
@@ -143,6 +155,7 @@ def get_db_instance(db_instance_identifier: Optional[_builtins.str] = None,
|
|
|
143
155
|
endpoint=pulumi.get(__ret__, 'endpoint'),
|
|
144
156
|
port=pulumi.get(__ret__, 'port'),
|
|
145
157
|
preferred_maintenance_window=pulumi.get(__ret__, 'preferred_maintenance_window'),
|
|
158
|
+
publicly_accessible=pulumi.get(__ret__, 'publicly_accessible'),
|
|
146
159
|
tags=pulumi.get(__ret__, 'tags'))
|
|
147
160
|
def get_db_instance_output(db_instance_identifier: Optional[pulumi.Input[_builtins.str]] = None,
|
|
148
161
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDbInstanceResult]:
|
|
@@ -163,4 +176,5 @@ def get_db_instance_output(db_instance_identifier: Optional[pulumi.Input[_builti
|
|
|
163
176
|
endpoint=pulumi.get(__response__, 'endpoint'),
|
|
164
177
|
port=pulumi.get(__response__, 'port'),
|
|
165
178
|
preferred_maintenance_window=pulumi.get(__response__, 'preferred_maintenance_window'),
|
|
179
|
+
publicly_accessible=pulumi.get(__response__, 'publicly_accessible'),
|
|
166
180
|
tags=pulumi.get(__response__, 'tags')))
|
|
@@ -21,18 +21,27 @@ __all__ = [
|
|
|
21
21
|
|
|
22
22
|
@pulumi.type_token("aws-native:observabilityadmin:OrganizationCentralizationRuleLogsEncryptionConfigurationEncryptionConflictResolutionStrategy")
|
|
23
23
|
class OrganizationCentralizationRuleLogsEncryptionConfigurationEncryptionConflictResolutionStrategy(_builtins.str, Enum):
|
|
24
|
+
"""
|
|
25
|
+
Conflict resolution strategy for centralization if the encryption strategy is set to CUSTOMER_MANAGED and the destination log group is encrypted with an AWS_OWNED KMS Key. ALLOW lets centralization go through while SKIP prevents centralization into the destination log group.
|
|
26
|
+
"""
|
|
24
27
|
ALLOW = "ALLOW"
|
|
25
28
|
SKIP = "SKIP"
|
|
26
29
|
|
|
27
30
|
|
|
28
31
|
@pulumi.type_token("aws-native:observabilityadmin:OrganizationCentralizationRuleLogsEncryptionConfigurationEncryptionStrategy")
|
|
29
32
|
class OrganizationCentralizationRuleLogsEncryptionConfigurationEncryptionStrategy(_builtins.str, Enum):
|
|
33
|
+
"""
|
|
34
|
+
Configuration that determines the encryption strategy of the destination log groups. CUSTOMER_MANAGED uses the configured KmsKeyArn to encrypt newly created destination log groups.
|
|
35
|
+
"""
|
|
30
36
|
CUSTOMER_MANAGED = "CUSTOMER_MANAGED"
|
|
31
37
|
AWS_OWNED = "AWS_OWNED"
|
|
32
38
|
|
|
33
39
|
|
|
34
40
|
@pulumi.type_token("aws-native:observabilityadmin:OrganizationCentralizationRuleSourceLogsConfigurationEncryptedLogGroupStrategy")
|
|
35
41
|
class OrganizationCentralizationRuleSourceLogsConfigurationEncryptedLogGroupStrategy(_builtins.str, Enum):
|
|
42
|
+
"""
|
|
43
|
+
A strategy determining whether to centralize source log groups that are encrypted with customer managed KMS keys (CMK). ALLOW will consider CMK encrypted source log groups for centralization while SKIP will skip CMK encrypted source log groups from centralization.
|
|
44
|
+
"""
|
|
36
45
|
ALLOW = "ALLOW"
|
|
37
46
|
SKIP = "SKIP"
|
|
38
47
|
|