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
|
@@ -49,8 +49,17 @@ MYPY = False
|
|
|
49
49
|
if not MYPY:
|
|
50
50
|
class OrganizationCentralizationRuleCentralizationRuleDestinationArgsDict(TypedDict):
|
|
51
51
|
region: pulumi.Input[_builtins.str]
|
|
52
|
+
"""
|
|
53
|
+
The primary destination region to which telemetry data should be centralized.
|
|
54
|
+
"""
|
|
52
55
|
account: NotRequired[pulumi.Input[_builtins.str]]
|
|
56
|
+
"""
|
|
57
|
+
The destination account (within the organization) to which the telemetry data should be centralized.
|
|
58
|
+
"""
|
|
53
59
|
destination_logs_configuration: NotRequired[pulumi.Input['OrganizationCentralizationRuleDestinationLogsConfigurationArgsDict']]
|
|
60
|
+
"""
|
|
61
|
+
Log specific configuration for centralization destination log groups.
|
|
62
|
+
"""
|
|
54
63
|
elif False:
|
|
55
64
|
OrganizationCentralizationRuleCentralizationRuleDestinationArgsDict: TypeAlias = Mapping[str, Any]
|
|
56
65
|
|
|
@@ -60,6 +69,11 @@ class OrganizationCentralizationRuleCentralizationRuleDestinationArgs:
|
|
|
60
69
|
region: pulumi.Input[_builtins.str],
|
|
61
70
|
account: Optional[pulumi.Input[_builtins.str]] = None,
|
|
62
71
|
destination_logs_configuration: Optional[pulumi.Input['OrganizationCentralizationRuleDestinationLogsConfigurationArgs']] = None):
|
|
72
|
+
"""
|
|
73
|
+
:param pulumi.Input[_builtins.str] region: The primary destination region to which telemetry data should be centralized.
|
|
74
|
+
:param pulumi.Input[_builtins.str] account: The destination account (within the organization) to which the telemetry data should be centralized.
|
|
75
|
+
:param pulumi.Input['OrganizationCentralizationRuleDestinationLogsConfigurationArgs'] destination_logs_configuration: Log specific configuration for centralization destination log groups.
|
|
76
|
+
"""
|
|
63
77
|
pulumi.set(__self__, "region", region)
|
|
64
78
|
if account is not None:
|
|
65
79
|
pulumi.set(__self__, "account", account)
|
|
@@ -69,6 +83,9 @@ class OrganizationCentralizationRuleCentralizationRuleDestinationArgs:
|
|
|
69
83
|
@_builtins.property
|
|
70
84
|
@pulumi.getter
|
|
71
85
|
def region(self) -> pulumi.Input[_builtins.str]:
|
|
86
|
+
"""
|
|
87
|
+
The primary destination region to which telemetry data should be centralized.
|
|
88
|
+
"""
|
|
72
89
|
return pulumi.get(self, "region")
|
|
73
90
|
|
|
74
91
|
@region.setter
|
|
@@ -78,6 +95,9 @@ class OrganizationCentralizationRuleCentralizationRuleDestinationArgs:
|
|
|
78
95
|
@_builtins.property
|
|
79
96
|
@pulumi.getter
|
|
80
97
|
def account(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
98
|
+
"""
|
|
99
|
+
The destination account (within the organization) to which the telemetry data should be centralized.
|
|
100
|
+
"""
|
|
81
101
|
return pulumi.get(self, "account")
|
|
82
102
|
|
|
83
103
|
@account.setter
|
|
@@ -87,6 +107,9 @@ class OrganizationCentralizationRuleCentralizationRuleDestinationArgs:
|
|
|
87
107
|
@_builtins.property
|
|
88
108
|
@pulumi.getter(name="destinationLogsConfiguration")
|
|
89
109
|
def destination_logs_configuration(self) -> Optional[pulumi.Input['OrganizationCentralizationRuleDestinationLogsConfigurationArgs']]:
|
|
110
|
+
"""
|
|
111
|
+
Log specific configuration for centralization destination log groups.
|
|
112
|
+
"""
|
|
90
113
|
return pulumi.get(self, "destination_logs_configuration")
|
|
91
114
|
|
|
92
115
|
@destination_logs_configuration.setter
|
|
@@ -97,8 +120,17 @@ class OrganizationCentralizationRuleCentralizationRuleDestinationArgs:
|
|
|
97
120
|
if not MYPY:
|
|
98
121
|
class OrganizationCentralizationRuleCentralizationRuleSourceArgsDict(TypedDict):
|
|
99
122
|
regions: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]
|
|
123
|
+
"""
|
|
124
|
+
The list of source regions from which telemetry data should be centralized.
|
|
125
|
+
"""
|
|
100
126
|
scope: NotRequired[pulumi.Input[_builtins.str]]
|
|
127
|
+
"""
|
|
128
|
+
The organizational scope from which telemetry data should be centralized, specified using organization id, accounts or organizational unit ids.
|
|
129
|
+
"""
|
|
101
130
|
source_logs_configuration: NotRequired[pulumi.Input['OrganizationCentralizationRuleSourceLogsConfigurationArgsDict']]
|
|
131
|
+
"""
|
|
132
|
+
Log specific configuration for centralization source log groups.
|
|
133
|
+
"""
|
|
102
134
|
elif False:
|
|
103
135
|
OrganizationCentralizationRuleCentralizationRuleSourceArgsDict: TypeAlias = Mapping[str, Any]
|
|
104
136
|
|
|
@@ -108,6 +140,11 @@ class OrganizationCentralizationRuleCentralizationRuleSourceArgs:
|
|
|
108
140
|
regions: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]],
|
|
109
141
|
scope: Optional[pulumi.Input[_builtins.str]] = None,
|
|
110
142
|
source_logs_configuration: Optional[pulumi.Input['OrganizationCentralizationRuleSourceLogsConfigurationArgs']] = None):
|
|
143
|
+
"""
|
|
144
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] regions: The list of source regions from which telemetry data should be centralized.
|
|
145
|
+
:param pulumi.Input[_builtins.str] scope: The organizational scope from which telemetry data should be centralized, specified using organization id, accounts or organizational unit ids.
|
|
146
|
+
:param pulumi.Input['OrganizationCentralizationRuleSourceLogsConfigurationArgs'] source_logs_configuration: Log specific configuration for centralization source log groups.
|
|
147
|
+
"""
|
|
111
148
|
pulumi.set(__self__, "regions", regions)
|
|
112
149
|
if scope is not None:
|
|
113
150
|
pulumi.set(__self__, "scope", scope)
|
|
@@ -117,6 +154,9 @@ class OrganizationCentralizationRuleCentralizationRuleSourceArgs:
|
|
|
117
154
|
@_builtins.property
|
|
118
155
|
@pulumi.getter
|
|
119
156
|
def regions(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
|
157
|
+
"""
|
|
158
|
+
The list of source regions from which telemetry data should be centralized.
|
|
159
|
+
"""
|
|
120
160
|
return pulumi.get(self, "regions")
|
|
121
161
|
|
|
122
162
|
@regions.setter
|
|
@@ -126,6 +166,9 @@ class OrganizationCentralizationRuleCentralizationRuleSourceArgs:
|
|
|
126
166
|
@_builtins.property
|
|
127
167
|
@pulumi.getter
|
|
128
168
|
def scope(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
169
|
+
"""
|
|
170
|
+
The organizational scope from which telemetry data should be centralized, specified using organization id, accounts or organizational unit ids.
|
|
171
|
+
"""
|
|
129
172
|
return pulumi.get(self, "scope")
|
|
130
173
|
|
|
131
174
|
@scope.setter
|
|
@@ -135,6 +178,9 @@ class OrganizationCentralizationRuleCentralizationRuleSourceArgs:
|
|
|
135
178
|
@_builtins.property
|
|
136
179
|
@pulumi.getter(name="sourceLogsConfiguration")
|
|
137
180
|
def source_logs_configuration(self) -> Optional[pulumi.Input['OrganizationCentralizationRuleSourceLogsConfigurationArgs']]:
|
|
181
|
+
"""
|
|
182
|
+
Log specific configuration for centralization source log groups.
|
|
183
|
+
"""
|
|
138
184
|
return pulumi.get(self, "source_logs_configuration")
|
|
139
185
|
|
|
140
186
|
@source_logs_configuration.setter
|
|
@@ -145,7 +191,13 @@ class OrganizationCentralizationRuleCentralizationRuleSourceArgs:
|
|
|
145
191
|
if not MYPY:
|
|
146
192
|
class OrganizationCentralizationRuleCentralizationRuleArgsDict(TypedDict):
|
|
147
193
|
destination: pulumi.Input['OrganizationCentralizationRuleCentralizationRuleDestinationArgsDict']
|
|
194
|
+
"""
|
|
195
|
+
Configuration determining where the telemetry data should be centralized, backed up, as well as encryption configuration for the primary and backup destinations.
|
|
196
|
+
"""
|
|
148
197
|
source: pulumi.Input['OrganizationCentralizationRuleCentralizationRuleSourceArgsDict']
|
|
198
|
+
"""
|
|
199
|
+
Configuration determining the source of the telemetry data to be centralized.
|
|
200
|
+
"""
|
|
149
201
|
elif False:
|
|
150
202
|
OrganizationCentralizationRuleCentralizationRuleArgsDict: TypeAlias = Mapping[str, Any]
|
|
151
203
|
|
|
@@ -154,12 +206,19 @@ class OrganizationCentralizationRuleCentralizationRuleArgs:
|
|
|
154
206
|
def __init__(__self__, *,
|
|
155
207
|
destination: pulumi.Input['OrganizationCentralizationRuleCentralizationRuleDestinationArgs'],
|
|
156
208
|
source: pulumi.Input['OrganizationCentralizationRuleCentralizationRuleSourceArgs']):
|
|
209
|
+
"""
|
|
210
|
+
:param pulumi.Input['OrganizationCentralizationRuleCentralizationRuleDestinationArgs'] destination: Configuration determining where the telemetry data should be centralized, backed up, as well as encryption configuration for the primary and backup destinations.
|
|
211
|
+
:param pulumi.Input['OrganizationCentralizationRuleCentralizationRuleSourceArgs'] source: Configuration determining the source of the telemetry data to be centralized.
|
|
212
|
+
"""
|
|
157
213
|
pulumi.set(__self__, "destination", destination)
|
|
158
214
|
pulumi.set(__self__, "source", source)
|
|
159
215
|
|
|
160
216
|
@_builtins.property
|
|
161
217
|
@pulumi.getter
|
|
162
218
|
def destination(self) -> pulumi.Input['OrganizationCentralizationRuleCentralizationRuleDestinationArgs']:
|
|
219
|
+
"""
|
|
220
|
+
Configuration determining where the telemetry data should be centralized, backed up, as well as encryption configuration for the primary and backup destinations.
|
|
221
|
+
"""
|
|
163
222
|
return pulumi.get(self, "destination")
|
|
164
223
|
|
|
165
224
|
@destination.setter
|
|
@@ -169,6 +228,9 @@ class OrganizationCentralizationRuleCentralizationRuleArgs:
|
|
|
169
228
|
@_builtins.property
|
|
170
229
|
@pulumi.getter
|
|
171
230
|
def source(self) -> pulumi.Input['OrganizationCentralizationRuleCentralizationRuleSourceArgs']:
|
|
231
|
+
"""
|
|
232
|
+
Configuration determining the source of the telemetry data to be centralized.
|
|
233
|
+
"""
|
|
172
234
|
return pulumi.get(self, "source")
|
|
173
235
|
|
|
174
236
|
@source.setter
|
|
@@ -179,7 +241,13 @@ class OrganizationCentralizationRuleCentralizationRuleArgs:
|
|
|
179
241
|
if not MYPY:
|
|
180
242
|
class OrganizationCentralizationRuleDestinationLogsConfigurationArgsDict(TypedDict):
|
|
181
243
|
backup_configuration: NotRequired[pulumi.Input['OrganizationCentralizationRuleLogsBackupConfigurationArgsDict']]
|
|
244
|
+
"""
|
|
245
|
+
Configuration defining the backup region and an optional KMS key for the backup destination.
|
|
246
|
+
"""
|
|
182
247
|
logs_encryption_configuration: NotRequired[pulumi.Input['OrganizationCentralizationRuleLogsEncryptionConfigurationArgsDict']]
|
|
248
|
+
"""
|
|
249
|
+
The encryption configuration for centralization destination log groups.
|
|
250
|
+
"""
|
|
183
251
|
elif False:
|
|
184
252
|
OrganizationCentralizationRuleDestinationLogsConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
185
253
|
|
|
@@ -188,6 +256,10 @@ class OrganizationCentralizationRuleDestinationLogsConfigurationArgs:
|
|
|
188
256
|
def __init__(__self__, *,
|
|
189
257
|
backup_configuration: Optional[pulumi.Input['OrganizationCentralizationRuleLogsBackupConfigurationArgs']] = None,
|
|
190
258
|
logs_encryption_configuration: Optional[pulumi.Input['OrganizationCentralizationRuleLogsEncryptionConfigurationArgs']] = None):
|
|
259
|
+
"""
|
|
260
|
+
:param pulumi.Input['OrganizationCentralizationRuleLogsBackupConfigurationArgs'] backup_configuration: Configuration defining the backup region and an optional KMS key for the backup destination.
|
|
261
|
+
:param pulumi.Input['OrganizationCentralizationRuleLogsEncryptionConfigurationArgs'] logs_encryption_configuration: The encryption configuration for centralization destination log groups.
|
|
262
|
+
"""
|
|
191
263
|
if backup_configuration is not None:
|
|
192
264
|
pulumi.set(__self__, "backup_configuration", backup_configuration)
|
|
193
265
|
if logs_encryption_configuration is not None:
|
|
@@ -196,6 +268,9 @@ class OrganizationCentralizationRuleDestinationLogsConfigurationArgs:
|
|
|
196
268
|
@_builtins.property
|
|
197
269
|
@pulumi.getter(name="backupConfiguration")
|
|
198
270
|
def backup_configuration(self) -> Optional[pulumi.Input['OrganizationCentralizationRuleLogsBackupConfigurationArgs']]:
|
|
271
|
+
"""
|
|
272
|
+
Configuration defining the backup region and an optional KMS key for the backup destination.
|
|
273
|
+
"""
|
|
199
274
|
return pulumi.get(self, "backup_configuration")
|
|
200
275
|
|
|
201
276
|
@backup_configuration.setter
|
|
@@ -205,6 +280,9 @@ class OrganizationCentralizationRuleDestinationLogsConfigurationArgs:
|
|
|
205
280
|
@_builtins.property
|
|
206
281
|
@pulumi.getter(name="logsEncryptionConfiguration")
|
|
207
282
|
def logs_encryption_configuration(self) -> Optional[pulumi.Input['OrganizationCentralizationRuleLogsEncryptionConfigurationArgs']]:
|
|
283
|
+
"""
|
|
284
|
+
The encryption configuration for centralization destination log groups.
|
|
285
|
+
"""
|
|
208
286
|
return pulumi.get(self, "logs_encryption_configuration")
|
|
209
287
|
|
|
210
288
|
@logs_encryption_configuration.setter
|
|
@@ -215,7 +293,13 @@ class OrganizationCentralizationRuleDestinationLogsConfigurationArgs:
|
|
|
215
293
|
if not MYPY:
|
|
216
294
|
class OrganizationCentralizationRuleLogsBackupConfigurationArgsDict(TypedDict):
|
|
217
295
|
region: pulumi.Input[_builtins.str]
|
|
296
|
+
"""
|
|
297
|
+
Logs specific backup destination region within the primary destination account to which log data should be centralized.
|
|
298
|
+
"""
|
|
218
299
|
kms_key_arn: NotRequired[pulumi.Input[_builtins.str]]
|
|
300
|
+
"""
|
|
301
|
+
KMS Key ARN belonging to the primary destination account and backup region, to encrypt newly created central log groups in the backup destination.
|
|
302
|
+
"""
|
|
219
303
|
elif False:
|
|
220
304
|
OrganizationCentralizationRuleLogsBackupConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
221
305
|
|
|
@@ -224,6 +308,10 @@ class OrganizationCentralizationRuleLogsBackupConfigurationArgs:
|
|
|
224
308
|
def __init__(__self__, *,
|
|
225
309
|
region: pulumi.Input[_builtins.str],
|
|
226
310
|
kms_key_arn: Optional[pulumi.Input[_builtins.str]] = None):
|
|
311
|
+
"""
|
|
312
|
+
:param pulumi.Input[_builtins.str] region: Logs specific backup destination region within the primary destination account to which log data should be centralized.
|
|
313
|
+
:param pulumi.Input[_builtins.str] kms_key_arn: KMS Key ARN belonging to the primary destination account and backup region, to encrypt newly created central log groups in the backup destination.
|
|
314
|
+
"""
|
|
227
315
|
pulumi.set(__self__, "region", region)
|
|
228
316
|
if kms_key_arn is not None:
|
|
229
317
|
pulumi.set(__self__, "kms_key_arn", kms_key_arn)
|
|
@@ -231,6 +319,9 @@ class OrganizationCentralizationRuleLogsBackupConfigurationArgs:
|
|
|
231
319
|
@_builtins.property
|
|
232
320
|
@pulumi.getter
|
|
233
321
|
def region(self) -> pulumi.Input[_builtins.str]:
|
|
322
|
+
"""
|
|
323
|
+
Logs specific backup destination region within the primary destination account to which log data should be centralized.
|
|
324
|
+
"""
|
|
234
325
|
return pulumi.get(self, "region")
|
|
235
326
|
|
|
236
327
|
@region.setter
|
|
@@ -240,6 +331,9 @@ class OrganizationCentralizationRuleLogsBackupConfigurationArgs:
|
|
|
240
331
|
@_builtins.property
|
|
241
332
|
@pulumi.getter(name="kmsKeyArn")
|
|
242
333
|
def kms_key_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
334
|
+
"""
|
|
335
|
+
KMS Key ARN belonging to the primary destination account and backup region, to encrypt newly created central log groups in the backup destination.
|
|
336
|
+
"""
|
|
243
337
|
return pulumi.get(self, "kms_key_arn")
|
|
244
338
|
|
|
245
339
|
@kms_key_arn.setter
|
|
@@ -250,8 +344,17 @@ class OrganizationCentralizationRuleLogsBackupConfigurationArgs:
|
|
|
250
344
|
if not MYPY:
|
|
251
345
|
class OrganizationCentralizationRuleLogsEncryptionConfigurationArgsDict(TypedDict):
|
|
252
346
|
encryption_strategy: pulumi.Input['OrganizationCentralizationRuleLogsEncryptionConfigurationEncryptionStrategy']
|
|
347
|
+
"""
|
|
348
|
+
Configuration that determines the encryption strategy of the destination log groups. CUSTOMER_MANAGED uses the configured KmsKeyArn to encrypt newly created destination log groups.
|
|
349
|
+
"""
|
|
253
350
|
encryption_conflict_resolution_strategy: NotRequired[pulumi.Input['OrganizationCentralizationRuleLogsEncryptionConfigurationEncryptionConflictResolutionStrategy']]
|
|
351
|
+
"""
|
|
352
|
+
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.
|
|
353
|
+
"""
|
|
254
354
|
kms_key_arn: NotRequired[pulumi.Input[_builtins.str]]
|
|
355
|
+
"""
|
|
356
|
+
KMS Key ARN belonging to the primary destination account and region, to encrypt newly created central log groups in the primary destination.
|
|
357
|
+
"""
|
|
255
358
|
elif False:
|
|
256
359
|
OrganizationCentralizationRuleLogsEncryptionConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
257
360
|
|
|
@@ -261,6 +364,11 @@ class OrganizationCentralizationRuleLogsEncryptionConfigurationArgs:
|
|
|
261
364
|
encryption_strategy: pulumi.Input['OrganizationCentralizationRuleLogsEncryptionConfigurationEncryptionStrategy'],
|
|
262
365
|
encryption_conflict_resolution_strategy: Optional[pulumi.Input['OrganizationCentralizationRuleLogsEncryptionConfigurationEncryptionConflictResolutionStrategy']] = None,
|
|
263
366
|
kms_key_arn: Optional[pulumi.Input[_builtins.str]] = None):
|
|
367
|
+
"""
|
|
368
|
+
:param pulumi.Input['OrganizationCentralizationRuleLogsEncryptionConfigurationEncryptionStrategy'] encryption_strategy: Configuration that determines the encryption strategy of the destination log groups. CUSTOMER_MANAGED uses the configured KmsKeyArn to encrypt newly created destination log groups.
|
|
369
|
+
:param pulumi.Input['OrganizationCentralizationRuleLogsEncryptionConfigurationEncryptionConflictResolutionStrategy'] encryption_conflict_resolution_strategy: 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.
|
|
370
|
+
:param pulumi.Input[_builtins.str] kms_key_arn: KMS Key ARN belonging to the primary destination account and region, to encrypt newly created central log groups in the primary destination.
|
|
371
|
+
"""
|
|
264
372
|
pulumi.set(__self__, "encryption_strategy", encryption_strategy)
|
|
265
373
|
if encryption_conflict_resolution_strategy is not None:
|
|
266
374
|
pulumi.set(__self__, "encryption_conflict_resolution_strategy", encryption_conflict_resolution_strategy)
|
|
@@ -270,6 +378,9 @@ class OrganizationCentralizationRuleLogsEncryptionConfigurationArgs:
|
|
|
270
378
|
@_builtins.property
|
|
271
379
|
@pulumi.getter(name="encryptionStrategy")
|
|
272
380
|
def encryption_strategy(self) -> pulumi.Input['OrganizationCentralizationRuleLogsEncryptionConfigurationEncryptionStrategy']:
|
|
381
|
+
"""
|
|
382
|
+
Configuration that determines the encryption strategy of the destination log groups. CUSTOMER_MANAGED uses the configured KmsKeyArn to encrypt newly created destination log groups.
|
|
383
|
+
"""
|
|
273
384
|
return pulumi.get(self, "encryption_strategy")
|
|
274
385
|
|
|
275
386
|
@encryption_strategy.setter
|
|
@@ -279,6 +390,9 @@ class OrganizationCentralizationRuleLogsEncryptionConfigurationArgs:
|
|
|
279
390
|
@_builtins.property
|
|
280
391
|
@pulumi.getter(name="encryptionConflictResolutionStrategy")
|
|
281
392
|
def encryption_conflict_resolution_strategy(self) -> Optional[pulumi.Input['OrganizationCentralizationRuleLogsEncryptionConfigurationEncryptionConflictResolutionStrategy']]:
|
|
393
|
+
"""
|
|
394
|
+
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.
|
|
395
|
+
"""
|
|
282
396
|
return pulumi.get(self, "encryption_conflict_resolution_strategy")
|
|
283
397
|
|
|
284
398
|
@encryption_conflict_resolution_strategy.setter
|
|
@@ -288,6 +402,9 @@ class OrganizationCentralizationRuleLogsEncryptionConfigurationArgs:
|
|
|
288
402
|
@_builtins.property
|
|
289
403
|
@pulumi.getter(name="kmsKeyArn")
|
|
290
404
|
def kms_key_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
405
|
+
"""
|
|
406
|
+
KMS Key ARN belonging to the primary destination account and region, to encrypt newly created central log groups in the primary destination.
|
|
407
|
+
"""
|
|
291
408
|
return pulumi.get(self, "kms_key_arn")
|
|
292
409
|
|
|
293
410
|
@kms_key_arn.setter
|
|
@@ -298,7 +415,13 @@ class OrganizationCentralizationRuleLogsEncryptionConfigurationArgs:
|
|
|
298
415
|
if not MYPY:
|
|
299
416
|
class OrganizationCentralizationRuleSourceLogsConfigurationArgsDict(TypedDict):
|
|
300
417
|
encrypted_log_group_strategy: pulumi.Input['OrganizationCentralizationRuleSourceLogsConfigurationEncryptedLogGroupStrategy']
|
|
418
|
+
"""
|
|
419
|
+
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.
|
|
420
|
+
"""
|
|
301
421
|
log_group_selection_criteria: pulumi.Input[_builtins.str]
|
|
422
|
+
"""
|
|
423
|
+
The selection criteria that specifies which source log groups to centralize. The selection criteria uses the same format as OAM link filters.
|
|
424
|
+
"""
|
|
302
425
|
elif False:
|
|
303
426
|
OrganizationCentralizationRuleSourceLogsConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
304
427
|
|
|
@@ -307,12 +430,19 @@ class OrganizationCentralizationRuleSourceLogsConfigurationArgs:
|
|
|
307
430
|
def __init__(__self__, *,
|
|
308
431
|
encrypted_log_group_strategy: pulumi.Input['OrganizationCentralizationRuleSourceLogsConfigurationEncryptedLogGroupStrategy'],
|
|
309
432
|
log_group_selection_criteria: pulumi.Input[_builtins.str]):
|
|
433
|
+
"""
|
|
434
|
+
:param pulumi.Input['OrganizationCentralizationRuleSourceLogsConfigurationEncryptedLogGroupStrategy'] encrypted_log_group_strategy: 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.
|
|
435
|
+
:param pulumi.Input[_builtins.str] log_group_selection_criteria: The selection criteria that specifies which source log groups to centralize. The selection criteria uses the same format as OAM link filters.
|
|
436
|
+
"""
|
|
310
437
|
pulumi.set(__self__, "encrypted_log_group_strategy", encrypted_log_group_strategy)
|
|
311
438
|
pulumi.set(__self__, "log_group_selection_criteria", log_group_selection_criteria)
|
|
312
439
|
|
|
313
440
|
@_builtins.property
|
|
314
441
|
@pulumi.getter(name="encryptedLogGroupStrategy")
|
|
315
442
|
def encrypted_log_group_strategy(self) -> pulumi.Input['OrganizationCentralizationRuleSourceLogsConfigurationEncryptedLogGroupStrategy']:
|
|
443
|
+
"""
|
|
444
|
+
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.
|
|
445
|
+
"""
|
|
316
446
|
return pulumi.get(self, "encrypted_log_group_strategy")
|
|
317
447
|
|
|
318
448
|
@encrypted_log_group_strategy.setter
|
|
@@ -322,6 +452,9 @@ class OrganizationCentralizationRuleSourceLogsConfigurationArgs:
|
|
|
322
452
|
@_builtins.property
|
|
323
453
|
@pulumi.getter(name="logGroupSelectionCriteria")
|
|
324
454
|
def log_group_selection_criteria(self) -> pulumi.Input[_builtins.str]:
|
|
455
|
+
"""
|
|
456
|
+
The selection criteria that specifies which source log groups to centralize. The selection criteria uses the same format as OAM link filters.
|
|
457
|
+
"""
|
|
325
458
|
return pulumi.get(self, "log_group_selection_criteria")
|
|
326
459
|
|
|
327
460
|
@log_group_selection_criteria.setter
|
|
@@ -335,9 +468,21 @@ if not MYPY:
|
|
|
335
468
|
The destination configuration for telemetry data
|
|
336
469
|
"""
|
|
337
470
|
destination_pattern: NotRequired[pulumi.Input[_builtins.str]]
|
|
471
|
+
"""
|
|
472
|
+
The pattern used to generate the destination path or name, supporting macros like <resourceId> and <accountId>.
|
|
473
|
+
"""
|
|
338
474
|
destination_type: NotRequired[pulumi.Input['OrganizationTelemetryRuleDestinationType']]
|
|
475
|
+
"""
|
|
476
|
+
The type of destination for the telemetry data (e.g., "Amazon CloudWatch Logs", "S3").
|
|
477
|
+
"""
|
|
339
478
|
retention_in_days: NotRequired[pulumi.Input[_builtins.int]]
|
|
479
|
+
"""
|
|
480
|
+
The number of days to retain the telemetry data in the destination.
|
|
481
|
+
"""
|
|
340
482
|
vpc_flow_log_parameters: NotRequired[pulumi.Input['OrganizationTelemetryRuleVpcFlowLogParametersArgsDict']]
|
|
483
|
+
"""
|
|
484
|
+
Configuration parameters specific to VPC Flow Logs when VPC is the resource type.
|
|
485
|
+
"""
|
|
341
486
|
elif False:
|
|
342
487
|
OrganizationTelemetryRuleTelemetryDestinationConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
343
488
|
|
|
@@ -350,6 +495,10 @@ class OrganizationTelemetryRuleTelemetryDestinationConfigurationArgs:
|
|
|
350
495
|
vpc_flow_log_parameters: Optional[pulumi.Input['OrganizationTelemetryRuleVpcFlowLogParametersArgs']] = None):
|
|
351
496
|
"""
|
|
352
497
|
The destination configuration for telemetry data
|
|
498
|
+
:param pulumi.Input[_builtins.str] destination_pattern: The pattern used to generate the destination path or name, supporting macros like <resourceId> and <accountId>.
|
|
499
|
+
:param pulumi.Input['OrganizationTelemetryRuleDestinationType'] destination_type: The type of destination for the telemetry data (e.g., "Amazon CloudWatch Logs", "S3").
|
|
500
|
+
:param pulumi.Input[_builtins.int] retention_in_days: The number of days to retain the telemetry data in the destination.
|
|
501
|
+
:param pulumi.Input['OrganizationTelemetryRuleVpcFlowLogParametersArgs'] vpc_flow_log_parameters: Configuration parameters specific to VPC Flow Logs when VPC is the resource type.
|
|
353
502
|
"""
|
|
354
503
|
if destination_pattern is not None:
|
|
355
504
|
pulumi.set(__self__, "destination_pattern", destination_pattern)
|
|
@@ -363,6 +512,9 @@ class OrganizationTelemetryRuleTelemetryDestinationConfigurationArgs:
|
|
|
363
512
|
@_builtins.property
|
|
364
513
|
@pulumi.getter(name="destinationPattern")
|
|
365
514
|
def destination_pattern(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
515
|
+
"""
|
|
516
|
+
The pattern used to generate the destination path or name, supporting macros like <resourceId> and <accountId>.
|
|
517
|
+
"""
|
|
366
518
|
return pulumi.get(self, "destination_pattern")
|
|
367
519
|
|
|
368
520
|
@destination_pattern.setter
|
|
@@ -372,6 +524,9 @@ class OrganizationTelemetryRuleTelemetryDestinationConfigurationArgs:
|
|
|
372
524
|
@_builtins.property
|
|
373
525
|
@pulumi.getter(name="destinationType")
|
|
374
526
|
def destination_type(self) -> Optional[pulumi.Input['OrganizationTelemetryRuleDestinationType']]:
|
|
527
|
+
"""
|
|
528
|
+
The type of destination for the telemetry data (e.g., "Amazon CloudWatch Logs", "S3").
|
|
529
|
+
"""
|
|
375
530
|
return pulumi.get(self, "destination_type")
|
|
376
531
|
|
|
377
532
|
@destination_type.setter
|
|
@@ -381,6 +536,9 @@ class OrganizationTelemetryRuleTelemetryDestinationConfigurationArgs:
|
|
|
381
536
|
@_builtins.property
|
|
382
537
|
@pulumi.getter(name="retentionInDays")
|
|
383
538
|
def retention_in_days(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
539
|
+
"""
|
|
540
|
+
The number of days to retain the telemetry data in the destination.
|
|
541
|
+
"""
|
|
384
542
|
return pulumi.get(self, "retention_in_days")
|
|
385
543
|
|
|
386
544
|
@retention_in_days.setter
|
|
@@ -390,6 +548,9 @@ class OrganizationTelemetryRuleTelemetryDestinationConfigurationArgs:
|
|
|
390
548
|
@_builtins.property
|
|
391
549
|
@pulumi.getter(name="vpcFlowLogParameters")
|
|
392
550
|
def vpc_flow_log_parameters(self) -> Optional[pulumi.Input['OrganizationTelemetryRuleVpcFlowLogParametersArgs']]:
|
|
551
|
+
"""
|
|
552
|
+
Configuration parameters specific to VPC Flow Logs when VPC is the resource type.
|
|
553
|
+
"""
|
|
393
554
|
return pulumi.get(self, "vpc_flow_log_parameters")
|
|
394
555
|
|
|
395
556
|
@vpc_flow_log_parameters.setter
|
|
@@ -403,10 +564,25 @@ if not MYPY:
|
|
|
403
564
|
The telemetry rule
|
|
404
565
|
"""
|
|
405
566
|
resource_type: pulumi.Input['OrganizationTelemetryRuleResourceType']
|
|
567
|
+
"""
|
|
568
|
+
The type of AWS resource to configure telemetry for (e.g., "AWS::EC2::VPC").
|
|
569
|
+
"""
|
|
406
570
|
telemetry_type: pulumi.Input['OrganizationTelemetryRuleTelemetryType']
|
|
571
|
+
"""
|
|
572
|
+
The type of telemetry to collect (Logs, Metrics, or Traces).
|
|
573
|
+
"""
|
|
407
574
|
destination_configuration: NotRequired[pulumi.Input['OrganizationTelemetryRuleTelemetryDestinationConfigurationArgsDict']]
|
|
575
|
+
"""
|
|
576
|
+
Configuration specifying where and how the telemetry data should be delivered.
|
|
577
|
+
"""
|
|
408
578
|
scope: NotRequired[pulumi.Input[_builtins.str]]
|
|
579
|
+
"""
|
|
580
|
+
The organizational scope to which the rule applies, specified using accounts or organizational units.
|
|
581
|
+
"""
|
|
409
582
|
selection_criteria: NotRequired[pulumi.Input[_builtins.str]]
|
|
583
|
+
"""
|
|
584
|
+
Criteria for selecting which resources the rule applies to, such as resource tags.
|
|
585
|
+
"""
|
|
410
586
|
elif False:
|
|
411
587
|
OrganizationTelemetryRuleTelemetryRuleArgsDict: TypeAlias = Mapping[str, Any]
|
|
412
588
|
|
|
@@ -420,6 +596,11 @@ class OrganizationTelemetryRuleTelemetryRuleArgs:
|
|
|
420
596
|
selection_criteria: Optional[pulumi.Input[_builtins.str]] = None):
|
|
421
597
|
"""
|
|
422
598
|
The telemetry rule
|
|
599
|
+
:param pulumi.Input['OrganizationTelemetryRuleResourceType'] resource_type: The type of AWS resource to configure telemetry for (e.g., "AWS::EC2::VPC").
|
|
600
|
+
:param pulumi.Input['OrganizationTelemetryRuleTelemetryType'] telemetry_type: The type of telemetry to collect (Logs, Metrics, or Traces).
|
|
601
|
+
:param pulumi.Input['OrganizationTelemetryRuleTelemetryDestinationConfigurationArgs'] destination_configuration: Configuration specifying where and how the telemetry data should be delivered.
|
|
602
|
+
:param pulumi.Input[_builtins.str] scope: The organizational scope to which the rule applies, specified using accounts or organizational units.
|
|
603
|
+
:param pulumi.Input[_builtins.str] selection_criteria: Criteria for selecting which resources the rule applies to, such as resource tags.
|
|
423
604
|
"""
|
|
424
605
|
pulumi.set(__self__, "resource_type", resource_type)
|
|
425
606
|
pulumi.set(__self__, "telemetry_type", telemetry_type)
|
|
@@ -433,6 +614,9 @@ class OrganizationTelemetryRuleTelemetryRuleArgs:
|
|
|
433
614
|
@_builtins.property
|
|
434
615
|
@pulumi.getter(name="resourceType")
|
|
435
616
|
def resource_type(self) -> pulumi.Input['OrganizationTelemetryRuleResourceType']:
|
|
617
|
+
"""
|
|
618
|
+
The type of AWS resource to configure telemetry for (e.g., "AWS::EC2::VPC").
|
|
619
|
+
"""
|
|
436
620
|
return pulumi.get(self, "resource_type")
|
|
437
621
|
|
|
438
622
|
@resource_type.setter
|
|
@@ -442,6 +626,9 @@ class OrganizationTelemetryRuleTelemetryRuleArgs:
|
|
|
442
626
|
@_builtins.property
|
|
443
627
|
@pulumi.getter(name="telemetryType")
|
|
444
628
|
def telemetry_type(self) -> pulumi.Input['OrganizationTelemetryRuleTelemetryType']:
|
|
629
|
+
"""
|
|
630
|
+
The type of telemetry to collect (Logs, Metrics, or Traces).
|
|
631
|
+
"""
|
|
445
632
|
return pulumi.get(self, "telemetry_type")
|
|
446
633
|
|
|
447
634
|
@telemetry_type.setter
|
|
@@ -451,6 +638,9 @@ class OrganizationTelemetryRuleTelemetryRuleArgs:
|
|
|
451
638
|
@_builtins.property
|
|
452
639
|
@pulumi.getter(name="destinationConfiguration")
|
|
453
640
|
def destination_configuration(self) -> Optional[pulumi.Input['OrganizationTelemetryRuleTelemetryDestinationConfigurationArgs']]:
|
|
641
|
+
"""
|
|
642
|
+
Configuration specifying where and how the telemetry data should be delivered.
|
|
643
|
+
"""
|
|
454
644
|
return pulumi.get(self, "destination_configuration")
|
|
455
645
|
|
|
456
646
|
@destination_configuration.setter
|
|
@@ -460,6 +650,9 @@ class OrganizationTelemetryRuleTelemetryRuleArgs:
|
|
|
460
650
|
@_builtins.property
|
|
461
651
|
@pulumi.getter
|
|
462
652
|
def scope(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
653
|
+
"""
|
|
654
|
+
The organizational scope to which the rule applies, specified using accounts or organizational units.
|
|
655
|
+
"""
|
|
463
656
|
return pulumi.get(self, "scope")
|
|
464
657
|
|
|
465
658
|
@scope.setter
|
|
@@ -469,6 +662,9 @@ class OrganizationTelemetryRuleTelemetryRuleArgs:
|
|
|
469
662
|
@_builtins.property
|
|
470
663
|
@pulumi.getter(name="selectionCriteria")
|
|
471
664
|
def selection_criteria(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
665
|
+
"""
|
|
666
|
+
Criteria for selecting which resources the rule applies to, such as resource tags.
|
|
667
|
+
"""
|
|
472
668
|
return pulumi.get(self, "selection_criteria")
|
|
473
669
|
|
|
474
670
|
@selection_criteria.setter
|
|
@@ -558,9 +754,21 @@ if not MYPY:
|
|
|
558
754
|
The destination configuration for telemetry data
|
|
559
755
|
"""
|
|
560
756
|
destination_pattern: NotRequired[pulumi.Input[_builtins.str]]
|
|
757
|
+
"""
|
|
758
|
+
The pattern used to generate the destination path or name, supporting macros like <resourceId> and <accountId>.
|
|
759
|
+
"""
|
|
561
760
|
destination_type: NotRequired[pulumi.Input['TelemetryRuleDestinationType']]
|
|
761
|
+
"""
|
|
762
|
+
The type of destination for the telemetry data (e.g., "Amazon CloudWatch Logs", "S3").
|
|
763
|
+
"""
|
|
562
764
|
retention_in_days: NotRequired[pulumi.Input[_builtins.int]]
|
|
765
|
+
"""
|
|
766
|
+
The number of days to retain the telemetry data in the destination.
|
|
767
|
+
"""
|
|
563
768
|
vpc_flow_log_parameters: NotRequired[pulumi.Input['TelemetryRuleVpcFlowLogParametersArgsDict']]
|
|
769
|
+
"""
|
|
770
|
+
Configuration parameters specific to VPC Flow Logs when VPC is the resource type.
|
|
771
|
+
"""
|
|
564
772
|
elif False:
|
|
565
773
|
TelemetryRuleTelemetryDestinationConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
566
774
|
|
|
@@ -573,6 +781,10 @@ class TelemetryRuleTelemetryDestinationConfigurationArgs:
|
|
|
573
781
|
vpc_flow_log_parameters: Optional[pulumi.Input['TelemetryRuleVpcFlowLogParametersArgs']] = None):
|
|
574
782
|
"""
|
|
575
783
|
The destination configuration for telemetry data
|
|
784
|
+
:param pulumi.Input[_builtins.str] destination_pattern: The pattern used to generate the destination path or name, supporting macros like <resourceId> and <accountId>.
|
|
785
|
+
:param pulumi.Input['TelemetryRuleDestinationType'] destination_type: The type of destination for the telemetry data (e.g., "Amazon CloudWatch Logs", "S3").
|
|
786
|
+
:param pulumi.Input[_builtins.int] retention_in_days: The number of days to retain the telemetry data in the destination.
|
|
787
|
+
:param pulumi.Input['TelemetryRuleVpcFlowLogParametersArgs'] vpc_flow_log_parameters: Configuration parameters specific to VPC Flow Logs when VPC is the resource type.
|
|
576
788
|
"""
|
|
577
789
|
if destination_pattern is not None:
|
|
578
790
|
pulumi.set(__self__, "destination_pattern", destination_pattern)
|
|
@@ -586,6 +798,9 @@ class TelemetryRuleTelemetryDestinationConfigurationArgs:
|
|
|
586
798
|
@_builtins.property
|
|
587
799
|
@pulumi.getter(name="destinationPattern")
|
|
588
800
|
def destination_pattern(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
801
|
+
"""
|
|
802
|
+
The pattern used to generate the destination path or name, supporting macros like <resourceId> and <accountId>.
|
|
803
|
+
"""
|
|
589
804
|
return pulumi.get(self, "destination_pattern")
|
|
590
805
|
|
|
591
806
|
@destination_pattern.setter
|
|
@@ -595,6 +810,9 @@ class TelemetryRuleTelemetryDestinationConfigurationArgs:
|
|
|
595
810
|
@_builtins.property
|
|
596
811
|
@pulumi.getter(name="destinationType")
|
|
597
812
|
def destination_type(self) -> Optional[pulumi.Input['TelemetryRuleDestinationType']]:
|
|
813
|
+
"""
|
|
814
|
+
The type of destination for the telemetry data (e.g., "Amazon CloudWatch Logs", "S3").
|
|
815
|
+
"""
|
|
598
816
|
return pulumi.get(self, "destination_type")
|
|
599
817
|
|
|
600
818
|
@destination_type.setter
|
|
@@ -604,6 +822,9 @@ class TelemetryRuleTelemetryDestinationConfigurationArgs:
|
|
|
604
822
|
@_builtins.property
|
|
605
823
|
@pulumi.getter(name="retentionInDays")
|
|
606
824
|
def retention_in_days(self) -> Optional[pulumi.Input[_builtins.int]]:
|
|
825
|
+
"""
|
|
826
|
+
The number of days to retain the telemetry data in the destination.
|
|
827
|
+
"""
|
|
607
828
|
return pulumi.get(self, "retention_in_days")
|
|
608
829
|
|
|
609
830
|
@retention_in_days.setter
|
|
@@ -613,6 +834,9 @@ class TelemetryRuleTelemetryDestinationConfigurationArgs:
|
|
|
613
834
|
@_builtins.property
|
|
614
835
|
@pulumi.getter(name="vpcFlowLogParameters")
|
|
615
836
|
def vpc_flow_log_parameters(self) -> Optional[pulumi.Input['TelemetryRuleVpcFlowLogParametersArgs']]:
|
|
837
|
+
"""
|
|
838
|
+
Configuration parameters specific to VPC Flow Logs when VPC is the resource type.
|
|
839
|
+
"""
|
|
616
840
|
return pulumi.get(self, "vpc_flow_log_parameters")
|
|
617
841
|
|
|
618
842
|
@vpc_flow_log_parameters.setter
|
|
@@ -702,9 +926,21 @@ if not MYPY:
|
|
|
702
926
|
The telemetry rule
|
|
703
927
|
"""
|
|
704
928
|
resource_type: pulumi.Input['TelemetryRuleResourceType']
|
|
929
|
+
"""
|
|
930
|
+
The type of AWS resource to configure telemetry for (e.g., "AWS::EC2::VPC").
|
|
931
|
+
"""
|
|
705
932
|
telemetry_type: pulumi.Input['TelemetryRuleTelemetryType']
|
|
933
|
+
"""
|
|
934
|
+
The type of telemetry to collect (Logs, Metrics, or Traces).
|
|
935
|
+
"""
|
|
706
936
|
destination_configuration: NotRequired[pulumi.Input['TelemetryRuleTelemetryDestinationConfigurationArgsDict']]
|
|
937
|
+
"""
|
|
938
|
+
Configuration specifying where and how the telemetry data should be delivered.
|
|
939
|
+
"""
|
|
707
940
|
selection_criteria: NotRequired[pulumi.Input[_builtins.str]]
|
|
941
|
+
"""
|
|
942
|
+
Criteria for selecting which resources the rule applies to, such as resource tags.
|
|
943
|
+
"""
|
|
708
944
|
elif False:
|
|
709
945
|
TelemetryRuleArgsDict: TypeAlias = Mapping[str, Any]
|
|
710
946
|
|
|
@@ -717,6 +953,10 @@ class TelemetryRuleArgs:
|
|
|
717
953
|
selection_criteria: Optional[pulumi.Input[_builtins.str]] = None):
|
|
718
954
|
"""
|
|
719
955
|
The telemetry rule
|
|
956
|
+
:param pulumi.Input['TelemetryRuleResourceType'] resource_type: The type of AWS resource to configure telemetry for (e.g., "AWS::EC2::VPC").
|
|
957
|
+
:param pulumi.Input['TelemetryRuleTelemetryType'] telemetry_type: The type of telemetry to collect (Logs, Metrics, or Traces).
|
|
958
|
+
:param pulumi.Input['TelemetryRuleTelemetryDestinationConfigurationArgs'] destination_configuration: Configuration specifying where and how the telemetry data should be delivered.
|
|
959
|
+
:param pulumi.Input[_builtins.str] selection_criteria: Criteria for selecting which resources the rule applies to, such as resource tags.
|
|
720
960
|
"""
|
|
721
961
|
pulumi.set(__self__, "resource_type", resource_type)
|
|
722
962
|
pulumi.set(__self__, "telemetry_type", telemetry_type)
|
|
@@ -728,6 +968,9 @@ class TelemetryRuleArgs:
|
|
|
728
968
|
@_builtins.property
|
|
729
969
|
@pulumi.getter(name="resourceType")
|
|
730
970
|
def resource_type(self) -> pulumi.Input['TelemetryRuleResourceType']:
|
|
971
|
+
"""
|
|
972
|
+
The type of AWS resource to configure telemetry for (e.g., "AWS::EC2::VPC").
|
|
973
|
+
"""
|
|
731
974
|
return pulumi.get(self, "resource_type")
|
|
732
975
|
|
|
733
976
|
@resource_type.setter
|
|
@@ -737,6 +980,9 @@ class TelemetryRuleArgs:
|
|
|
737
980
|
@_builtins.property
|
|
738
981
|
@pulumi.getter(name="telemetryType")
|
|
739
982
|
def telemetry_type(self) -> pulumi.Input['TelemetryRuleTelemetryType']:
|
|
983
|
+
"""
|
|
984
|
+
The type of telemetry to collect (Logs, Metrics, or Traces).
|
|
985
|
+
"""
|
|
740
986
|
return pulumi.get(self, "telemetry_type")
|
|
741
987
|
|
|
742
988
|
@telemetry_type.setter
|
|
@@ -746,6 +992,9 @@ class TelemetryRuleArgs:
|
|
|
746
992
|
@_builtins.property
|
|
747
993
|
@pulumi.getter(name="destinationConfiguration")
|
|
748
994
|
def destination_configuration(self) -> Optional[pulumi.Input['TelemetryRuleTelemetryDestinationConfigurationArgs']]:
|
|
995
|
+
"""
|
|
996
|
+
Configuration specifying where and how the telemetry data should be delivered.
|
|
997
|
+
"""
|
|
749
998
|
return pulumi.get(self, "destination_configuration")
|
|
750
999
|
|
|
751
1000
|
@destination_configuration.setter
|
|
@@ -755,6 +1004,9 @@ class TelemetryRuleArgs:
|
|
|
755
1004
|
@_builtins.property
|
|
756
1005
|
@pulumi.getter(name="selectionCriteria")
|
|
757
1006
|
def selection_criteria(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
1007
|
+
"""
|
|
1008
|
+
Criteria for selecting which resources the rule applies to, such as resource tags.
|
|
1009
|
+
"""
|
|
758
1010
|
return pulumi.get(self, "selection_criteria")
|
|
759
1011
|
|
|
760
1012
|
@selection_criteria.setter
|