pulumi-aws 7.15.0__py3-none-any.whl → 7.16.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.
- pulumi_aws/__init__.py +80 -0
- pulumi_aws/alb/listener.py +7 -7
- pulumi_aws/alb/target_group.py +7 -7
- pulumi_aws/alb/target_group_attachment.py +83 -0
- pulumi_aws/apigateway/domain_name.py +86 -7
- pulumi_aws/apigateway/get_domain_name.py +15 -1
- pulumi_aws/apigateway/integration.py +48 -8
- pulumi_aws/athena/_inputs.py +412 -5
- pulumi_aws/athena/outputs.py +342 -2
- pulumi_aws/backup/global_settings.py +15 -7
- pulumi_aws/bedrock/agentcore_memory_strategy.py +8 -0
- pulumi_aws/cleanrooms/collaboration.py +26 -6
- pulumi_aws/cloudfront/__init__.py +6 -0
- pulumi_aws/cloudfront/_inputs.py +3601 -478
- pulumi_aws/cloudfront/connection_function.py +658 -0
- pulumi_aws/cloudfront/connection_group.py +649 -0
- pulumi_aws/cloudfront/distribution.py +142 -0
- pulumi_aws/cloudfront/distribution_tenant.py +857 -0
- pulumi_aws/cloudfront/get_connection_group.py +249 -0
- pulumi_aws/cloudfront/get_distribution_tenant.py +279 -0
- pulumi_aws/cloudfront/multitenant_distribution.py +1181 -0
- pulumi_aws/cloudfront/outputs.py +3034 -376
- pulumi_aws/cloudwatch/log_subscription_filter.py +136 -42
- pulumi_aws/directconnect/gateway.py +78 -3
- pulumi_aws/directconnect/get_gateway.py +24 -4
- pulumi_aws/dlm/_inputs.py +3 -3
- pulumi_aws/dlm/outputs.py +2 -2
- pulumi_aws/dynamodb/__init__.py +1 -0
- pulumi_aws/dynamodb/_inputs.py +370 -0
- pulumi_aws/dynamodb/global_secondary_index.py +666 -0
- pulumi_aws/dynamodb/outputs.py +315 -0
- pulumi_aws/dynamodb/table.py +9 -1
- pulumi_aws/ec2/_inputs.py +44 -4
- pulumi_aws/ec2/get_vpc_endpoint.py +24 -4
- pulumi_aws/ec2/outputs.py +54 -4
- pulumi_aws/ecr/__init__.py +1 -0
- pulumi_aws/ecr/_inputs.py +58 -22
- pulumi_aws/ecr/get_repository_creation_template.py +1 -1
- pulumi_aws/ecr/lifecycle_policy.py +152 -64
- pulumi_aws/ecr/outputs.py +37 -15
- pulumi_aws/ecr/pull_time_update_exclusion.py +363 -0
- pulumi_aws/ecr/repository_creation_template.py +7 -7
- pulumi_aws/ecs/_inputs.py +20 -0
- pulumi_aws/ecs/outputs.py +14 -0
- pulumi_aws/ecs/task_definition.py +28 -28
- pulumi_aws/elasticache/replication_group.py +7 -7
- pulumi_aws/fsx/ontap_file_system.py +14 -0
- pulumi_aws/glue/resource_policy.py +4 -4
- pulumi_aws/guardduty/_inputs.py +41 -1
- pulumi_aws/guardduty/outputs.py +27 -1
- pulumi_aws/iam/get_saml_provider.py +15 -1
- pulumi_aws/iam/outbound_web_identity_federation.py +0 -4
- pulumi_aws/iam/policy.py +47 -0
- pulumi_aws/iam/saml_provider.py +28 -0
- pulumi_aws/iam/virtual_mfa_device.py +66 -38
- pulumi_aws/imagebuilder/_inputs.py +87 -0
- pulumi_aws/imagebuilder/image.py +47 -0
- pulumi_aws/imagebuilder/image_pipeline.py +47 -0
- pulumi_aws/imagebuilder/outputs.py +87 -0
- pulumi_aws/kms/grant.py +18 -18
- pulumi_aws/lambda_/_inputs.py +24 -4
- pulumi_aws/lambda_/event_source_mapping.py +2 -0
- pulumi_aws/lambda_/function.py +28 -0
- pulumi_aws/lambda_/function_url.py +4 -0
- pulumi_aws/lambda_/get_function.py +15 -1
- pulumi_aws/lambda_/outputs.py +17 -3
- pulumi_aws/lambda_/permission.py +47 -0
- pulumi_aws/lb/listener.py +7 -7
- pulumi_aws/lb/target_group.py +7 -7
- pulumi_aws/lb/target_group_attachment.py +83 -0
- pulumi_aws/networkfirewall/_inputs.py +3 -3
- pulumi_aws/networkfirewall/outputs.py +2 -2
- pulumi_aws/networkfirewall/vpc_endpoint_association.py +2 -2
- pulumi_aws/networkmanager/vpc_attachment.py +7 -7
- pulumi_aws/opensearchingest/pipeline.py +47 -0
- pulumi_aws/organizations/__init__.py +1 -0
- pulumi_aws/organizations/tag.py +292 -0
- pulumi_aws/pulumi-plugin.json +1 -1
- pulumi_aws/rds/cluster.py +21 -21
- pulumi_aws/rds/get_proxy.py +29 -1
- pulumi_aws/rds/proxy.py +94 -0
- pulumi_aws/rds/proxy_default_target_group.py +0 -76
- pulumi_aws/rds/proxy_target.py +0 -80
- pulumi_aws/redshift/__init__.py +1 -0
- pulumi_aws/redshift/_inputs.py +329 -0
- pulumi_aws/redshift/idc_application.py +687 -0
- pulumi_aws/redshift/outputs.py +265 -0
- pulumi_aws/route53/get_resolver_firewall_rules.py +9 -0
- pulumi_aws/route53/get_resolver_rule.py +19 -4
- pulumi_aws/route53/outputs.py +108 -1
- pulumi_aws/route53/resolver_firewall_rule.py +199 -32
- pulumi_aws/secretsmanager/__init__.py +1 -0
- pulumi_aws/secretsmanager/tag.py +333 -0
- pulumi_aws/sesv2/__init__.py +1 -0
- pulumi_aws/sesv2/tenant.py +418 -0
- pulumi_aws/sfn/activity.py +0 -4
- pulumi_aws/sfn/alias.py +0 -4
- pulumi_aws/transfer/_inputs.py +126 -0
- pulumi_aws/transfer/outputs.py +97 -0
- pulumi_aws/transfer/web_app.py +54 -7
- pulumi_aws/vpclattice/service_network_resource_association.py +47 -0
- {pulumi_aws-7.15.0.dist-info → pulumi_aws-7.16.0.dist-info}/METADATA +1 -1
- {pulumi_aws-7.15.0.dist-info → pulumi_aws-7.16.0.dist-info}/RECORD +105 -93
- {pulumi_aws-7.15.0.dist-info → pulumi_aws-7.16.0.dist-info}/WHEEL +0 -0
- {pulumi_aws-7.15.0.dist-info → pulumi_aws-7.16.0.dist-info}/top_level.txt +0 -0
pulumi_aws/athena/_inputs.py
CHANGED
|
@@ -23,6 +23,8 @@ __all__ = [
|
|
|
23
23
|
'DatabaseEncryptionConfigurationArgsDict',
|
|
24
24
|
'WorkgroupConfigurationArgs',
|
|
25
25
|
'WorkgroupConfigurationArgsDict',
|
|
26
|
+
'WorkgroupConfigurationCustomerContentEncryptionConfigurationArgs',
|
|
27
|
+
'WorkgroupConfigurationCustomerContentEncryptionConfigurationArgsDict',
|
|
26
28
|
'WorkgroupConfigurationEngineVersionArgs',
|
|
27
29
|
'WorkgroupConfigurationEngineVersionArgsDict',
|
|
28
30
|
'WorkgroupConfigurationIdentityCenterConfigurationArgs',
|
|
@@ -31,6 +33,16 @@ __all__ = [
|
|
|
31
33
|
'WorkgroupConfigurationManagedQueryResultsConfigurationArgsDict',
|
|
32
34
|
'WorkgroupConfigurationManagedQueryResultsConfigurationEncryptionConfigurationArgs',
|
|
33
35
|
'WorkgroupConfigurationManagedQueryResultsConfigurationEncryptionConfigurationArgsDict',
|
|
36
|
+
'WorkgroupConfigurationMonitoringConfigurationArgs',
|
|
37
|
+
'WorkgroupConfigurationMonitoringConfigurationArgsDict',
|
|
38
|
+
'WorkgroupConfigurationMonitoringConfigurationCloudWatchLoggingConfigurationArgs',
|
|
39
|
+
'WorkgroupConfigurationMonitoringConfigurationCloudWatchLoggingConfigurationArgsDict',
|
|
40
|
+
'WorkgroupConfigurationMonitoringConfigurationCloudWatchLoggingConfigurationLogTypeArgs',
|
|
41
|
+
'WorkgroupConfigurationMonitoringConfigurationCloudWatchLoggingConfigurationLogTypeArgsDict',
|
|
42
|
+
'WorkgroupConfigurationMonitoringConfigurationManagedLoggingConfigurationArgs',
|
|
43
|
+
'WorkgroupConfigurationMonitoringConfigurationManagedLoggingConfigurationArgsDict',
|
|
44
|
+
'WorkgroupConfigurationMonitoringConfigurationS3LoggingConfigurationArgs',
|
|
45
|
+
'WorkgroupConfigurationMonitoringConfigurationS3LoggingConfigurationArgsDict',
|
|
34
46
|
'WorkgroupConfigurationResultConfigurationArgs',
|
|
35
47
|
'WorkgroupConfigurationResultConfigurationArgsDict',
|
|
36
48
|
'WorkgroupConfigurationResultConfigurationAclConfigurationArgs',
|
|
@@ -207,6 +219,14 @@ if not MYPY:
|
|
|
207
219
|
"""
|
|
208
220
|
Integer for the upper data usage limit (cutoff) for the amount of bytes a single query in a workgroup is allowed to scan. Must be at least `10485760`.
|
|
209
221
|
"""
|
|
222
|
+
customer_content_encryption_configuration: NotRequired[pulumi.Input['WorkgroupConfigurationCustomerContentEncryptionConfigurationArgsDict']]
|
|
223
|
+
"""
|
|
224
|
+
Configuration block to specify the KMS key that is used to encrypt the user's data stores in Athena. This setting applies to the PySpark engine for Athena notebooks. See Customer Content Encryption Configuration below.
|
|
225
|
+
"""
|
|
226
|
+
enable_minimum_encryption_configuration: NotRequired[pulumi.Input[_builtins.bool]]
|
|
227
|
+
"""
|
|
228
|
+
Boolean indicating whether a minimum level of encryption is enforced for the workgroup for query and calculation results written to Amazon S3.
|
|
229
|
+
"""
|
|
210
230
|
enforce_workgroup_configuration: NotRequired[pulumi.Input[_builtins.bool]]
|
|
211
231
|
"""
|
|
212
232
|
Boolean whether the settings for the workgroup override client-side settings. For more information, see [Workgroup Settings Override Client-Side Settings](https://docs.aws.amazon.com/athena/latest/ug/workgroups-settings-override.html). Defaults to `true`.
|
|
@@ -227,6 +247,10 @@ if not MYPY:
|
|
|
227
247
|
"""
|
|
228
248
|
Configuration block for storing results in Athena owned storage. See Managed Query Results Configuration below.
|
|
229
249
|
"""
|
|
250
|
+
monitoring_configuration: NotRequired[pulumi.Input['WorkgroupConfigurationMonitoringConfigurationArgsDict']]
|
|
251
|
+
"""
|
|
252
|
+
Configuration block for managed log persistence, delivering logs to Amazon S3 buckets, Amazon CloudWatch log groups etc. Only applicable to Apache Spark engine. See Monitoring Configuration below.
|
|
253
|
+
"""
|
|
230
254
|
publish_cloudwatch_metrics_enabled: NotRequired[pulumi.Input[_builtins.bool]]
|
|
231
255
|
"""
|
|
232
256
|
Boolean whether Amazon CloudWatch metrics are enabled for the workgroup. Defaults to `true`.
|
|
@@ -246,27 +270,37 @@ elif False:
|
|
|
246
270
|
class WorkgroupConfigurationArgs:
|
|
247
271
|
def __init__(__self__, *,
|
|
248
272
|
bytes_scanned_cutoff_per_query: Optional[pulumi.Input[_builtins.int]] = None,
|
|
273
|
+
customer_content_encryption_configuration: Optional[pulumi.Input['WorkgroupConfigurationCustomerContentEncryptionConfigurationArgs']] = None,
|
|
274
|
+
enable_minimum_encryption_configuration: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
249
275
|
enforce_workgroup_configuration: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
250
276
|
engine_version: Optional[pulumi.Input['WorkgroupConfigurationEngineVersionArgs']] = None,
|
|
251
277
|
execution_role: Optional[pulumi.Input[_builtins.str]] = None,
|
|
252
278
|
identity_center_configuration: Optional[pulumi.Input['WorkgroupConfigurationIdentityCenterConfigurationArgs']] = None,
|
|
253
279
|
managed_query_results_configuration: Optional[pulumi.Input['WorkgroupConfigurationManagedQueryResultsConfigurationArgs']] = None,
|
|
280
|
+
monitoring_configuration: Optional[pulumi.Input['WorkgroupConfigurationMonitoringConfigurationArgs']] = None,
|
|
254
281
|
publish_cloudwatch_metrics_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
255
282
|
requester_pays_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
256
283
|
result_configuration: Optional[pulumi.Input['WorkgroupConfigurationResultConfigurationArgs']] = None):
|
|
257
284
|
"""
|
|
258
285
|
:param pulumi.Input[_builtins.int] bytes_scanned_cutoff_per_query: Integer for the upper data usage limit (cutoff) for the amount of bytes a single query in a workgroup is allowed to scan. Must be at least `10485760`.
|
|
286
|
+
:param pulumi.Input['WorkgroupConfigurationCustomerContentEncryptionConfigurationArgs'] customer_content_encryption_configuration: Configuration block to specify the KMS key that is used to encrypt the user's data stores in Athena. This setting applies to the PySpark engine for Athena notebooks. See Customer Content Encryption Configuration below.
|
|
287
|
+
:param pulumi.Input[_builtins.bool] enable_minimum_encryption_configuration: Boolean indicating whether a minimum level of encryption is enforced for the workgroup for query and calculation results written to Amazon S3.
|
|
259
288
|
:param pulumi.Input[_builtins.bool] enforce_workgroup_configuration: Boolean whether the settings for the workgroup override client-side settings. For more information, see [Workgroup Settings Override Client-Side Settings](https://docs.aws.amazon.com/athena/latest/ug/workgroups-settings-override.html). Defaults to `true`.
|
|
260
289
|
:param pulumi.Input['WorkgroupConfigurationEngineVersionArgs'] engine_version: Configuration block for the Athena Engine Versioning. For more information, see [Athena Engine Versioning](https://docs.aws.amazon.com/athena/latest/ug/engine-versions.html). See Engine Version below.
|
|
261
290
|
:param pulumi.Input[_builtins.str] execution_role: Role used to access user resources in notebook sessions and IAM Identity Center enabled workgroups. The property is required for IAM Identity Center enabled workgroups.
|
|
262
291
|
:param pulumi.Input['WorkgroupConfigurationIdentityCenterConfigurationArgs'] identity_center_configuration: Configuration block to set up an IAM Identity Center enabled workgroup. See Identity Center Configuration below.
|
|
263
292
|
:param pulumi.Input['WorkgroupConfigurationManagedQueryResultsConfigurationArgs'] managed_query_results_configuration: Configuration block for storing results in Athena owned storage. See Managed Query Results Configuration below.
|
|
293
|
+
:param pulumi.Input['WorkgroupConfigurationMonitoringConfigurationArgs'] monitoring_configuration: Configuration block for managed log persistence, delivering logs to Amazon S3 buckets, Amazon CloudWatch log groups etc. Only applicable to Apache Spark engine. See Monitoring Configuration below.
|
|
264
294
|
:param pulumi.Input[_builtins.bool] publish_cloudwatch_metrics_enabled: Boolean whether Amazon CloudWatch metrics are enabled for the workgroup. Defaults to `true`.
|
|
265
295
|
:param pulumi.Input[_builtins.bool] requester_pays_enabled: If set to true , allows members assigned to a workgroup to reference Amazon S3 Requester Pays buckets in queries. If set to false , workgroup members cannot query data from Requester Pays buckets, and queries that retrieve data from Requester Pays buckets cause an error. The default is false . For more information about Requester Pays buckets, see [Requester Pays Buckets](https://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html) in the Amazon Simple Storage Service Developer Guide.
|
|
266
296
|
:param pulumi.Input['WorkgroupConfigurationResultConfigurationArgs'] result_configuration: Configuration block with result settings. See Result Configuration below.
|
|
267
297
|
"""
|
|
268
298
|
if bytes_scanned_cutoff_per_query is not None:
|
|
269
299
|
pulumi.set(__self__, "bytes_scanned_cutoff_per_query", bytes_scanned_cutoff_per_query)
|
|
300
|
+
if customer_content_encryption_configuration is not None:
|
|
301
|
+
pulumi.set(__self__, "customer_content_encryption_configuration", customer_content_encryption_configuration)
|
|
302
|
+
if enable_minimum_encryption_configuration is not None:
|
|
303
|
+
pulumi.set(__self__, "enable_minimum_encryption_configuration", enable_minimum_encryption_configuration)
|
|
270
304
|
if enforce_workgroup_configuration is not None:
|
|
271
305
|
pulumi.set(__self__, "enforce_workgroup_configuration", enforce_workgroup_configuration)
|
|
272
306
|
if engine_version is not None:
|
|
@@ -277,6 +311,8 @@ class WorkgroupConfigurationArgs:
|
|
|
277
311
|
pulumi.set(__self__, "identity_center_configuration", identity_center_configuration)
|
|
278
312
|
if managed_query_results_configuration is not None:
|
|
279
313
|
pulumi.set(__self__, "managed_query_results_configuration", managed_query_results_configuration)
|
|
314
|
+
if monitoring_configuration is not None:
|
|
315
|
+
pulumi.set(__self__, "monitoring_configuration", monitoring_configuration)
|
|
280
316
|
if publish_cloudwatch_metrics_enabled is not None:
|
|
281
317
|
pulumi.set(__self__, "publish_cloudwatch_metrics_enabled", publish_cloudwatch_metrics_enabled)
|
|
282
318
|
if requester_pays_enabled is not None:
|
|
@@ -296,6 +332,30 @@ class WorkgroupConfigurationArgs:
|
|
|
296
332
|
def bytes_scanned_cutoff_per_query(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
297
333
|
pulumi.set(self, "bytes_scanned_cutoff_per_query", value)
|
|
298
334
|
|
|
335
|
+
@_builtins.property
|
|
336
|
+
@pulumi.getter(name="customerContentEncryptionConfiguration")
|
|
337
|
+
def customer_content_encryption_configuration(self) -> Optional[pulumi.Input['WorkgroupConfigurationCustomerContentEncryptionConfigurationArgs']]:
|
|
338
|
+
"""
|
|
339
|
+
Configuration block to specify the KMS key that is used to encrypt the user's data stores in Athena. This setting applies to the PySpark engine for Athena notebooks. See Customer Content Encryption Configuration below.
|
|
340
|
+
"""
|
|
341
|
+
return pulumi.get(self, "customer_content_encryption_configuration")
|
|
342
|
+
|
|
343
|
+
@customer_content_encryption_configuration.setter
|
|
344
|
+
def customer_content_encryption_configuration(self, value: Optional[pulumi.Input['WorkgroupConfigurationCustomerContentEncryptionConfigurationArgs']]):
|
|
345
|
+
pulumi.set(self, "customer_content_encryption_configuration", value)
|
|
346
|
+
|
|
347
|
+
@_builtins.property
|
|
348
|
+
@pulumi.getter(name="enableMinimumEncryptionConfiguration")
|
|
349
|
+
def enable_minimum_encryption_configuration(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
350
|
+
"""
|
|
351
|
+
Boolean indicating whether a minimum level of encryption is enforced for the workgroup for query and calculation results written to Amazon S3.
|
|
352
|
+
"""
|
|
353
|
+
return pulumi.get(self, "enable_minimum_encryption_configuration")
|
|
354
|
+
|
|
355
|
+
@enable_minimum_encryption_configuration.setter
|
|
356
|
+
def enable_minimum_encryption_configuration(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
357
|
+
pulumi.set(self, "enable_minimum_encryption_configuration", value)
|
|
358
|
+
|
|
299
359
|
@_builtins.property
|
|
300
360
|
@pulumi.getter(name="enforceWorkgroupConfiguration")
|
|
301
361
|
def enforce_workgroup_configuration(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
@@ -356,6 +416,18 @@ class WorkgroupConfigurationArgs:
|
|
|
356
416
|
def managed_query_results_configuration(self, value: Optional[pulumi.Input['WorkgroupConfigurationManagedQueryResultsConfigurationArgs']]):
|
|
357
417
|
pulumi.set(self, "managed_query_results_configuration", value)
|
|
358
418
|
|
|
419
|
+
@_builtins.property
|
|
420
|
+
@pulumi.getter(name="monitoringConfiguration")
|
|
421
|
+
def monitoring_configuration(self) -> Optional[pulumi.Input['WorkgroupConfigurationMonitoringConfigurationArgs']]:
|
|
422
|
+
"""
|
|
423
|
+
Configuration block for managed log persistence, delivering logs to Amazon S3 buckets, Amazon CloudWatch log groups etc. Only applicable to Apache Spark engine. See Monitoring Configuration below.
|
|
424
|
+
"""
|
|
425
|
+
return pulumi.get(self, "monitoring_configuration")
|
|
426
|
+
|
|
427
|
+
@monitoring_configuration.setter
|
|
428
|
+
def monitoring_configuration(self, value: Optional[pulumi.Input['WorkgroupConfigurationMonitoringConfigurationArgs']]):
|
|
429
|
+
pulumi.set(self, "monitoring_configuration", value)
|
|
430
|
+
|
|
359
431
|
@_builtins.property
|
|
360
432
|
@pulumi.getter(name="publishCloudwatchMetricsEnabled")
|
|
361
433
|
def publish_cloudwatch_metrics_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
@@ -393,6 +465,29 @@ class WorkgroupConfigurationArgs:
|
|
|
393
465
|
pulumi.set(self, "result_configuration", value)
|
|
394
466
|
|
|
395
467
|
|
|
468
|
+
if not MYPY:
|
|
469
|
+
class WorkgroupConfigurationCustomerContentEncryptionConfigurationArgsDict(TypedDict):
|
|
470
|
+
kms_key: NotRequired[pulumi.Input[_builtins.str]]
|
|
471
|
+
elif False:
|
|
472
|
+
WorkgroupConfigurationCustomerContentEncryptionConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
473
|
+
|
|
474
|
+
@pulumi.input_type
|
|
475
|
+
class WorkgroupConfigurationCustomerContentEncryptionConfigurationArgs:
|
|
476
|
+
def __init__(__self__, *,
|
|
477
|
+
kms_key: Optional[pulumi.Input[_builtins.str]] = None):
|
|
478
|
+
if kms_key is not None:
|
|
479
|
+
pulumi.set(__self__, "kms_key", kms_key)
|
|
480
|
+
|
|
481
|
+
@_builtins.property
|
|
482
|
+
@pulumi.getter(name="kmsKey")
|
|
483
|
+
def kms_key(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
484
|
+
return pulumi.get(self, "kms_key")
|
|
485
|
+
|
|
486
|
+
@kms_key.setter
|
|
487
|
+
def kms_key(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
488
|
+
pulumi.set(self, "kms_key", value)
|
|
489
|
+
|
|
490
|
+
|
|
396
491
|
if not MYPY:
|
|
397
492
|
class WorkgroupConfigurationEngineVersionArgsDict(TypedDict):
|
|
398
493
|
effective_engine_version: NotRequired[pulumi.Input[_builtins.str]]
|
|
@@ -552,9 +647,6 @@ class WorkgroupConfigurationManagedQueryResultsConfigurationArgs:
|
|
|
552
647
|
if not MYPY:
|
|
553
648
|
class WorkgroupConfigurationManagedQueryResultsConfigurationEncryptionConfigurationArgsDict(TypedDict):
|
|
554
649
|
kms_key: NotRequired[pulumi.Input[_builtins.str]]
|
|
555
|
-
"""
|
|
556
|
-
KMS key ARN for encrypting managed query results.
|
|
557
|
-
"""
|
|
558
650
|
elif False:
|
|
559
651
|
WorkgroupConfigurationManagedQueryResultsConfigurationEncryptionConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
560
652
|
|
|
@@ -562,17 +654,320 @@ elif False:
|
|
|
562
654
|
class WorkgroupConfigurationManagedQueryResultsConfigurationEncryptionConfigurationArgs:
|
|
563
655
|
def __init__(__self__, *,
|
|
564
656
|
kms_key: Optional[pulumi.Input[_builtins.str]] = None):
|
|
657
|
+
if kms_key is not None:
|
|
658
|
+
pulumi.set(__self__, "kms_key", kms_key)
|
|
659
|
+
|
|
660
|
+
@_builtins.property
|
|
661
|
+
@pulumi.getter(name="kmsKey")
|
|
662
|
+
def kms_key(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
663
|
+
return pulumi.get(self, "kms_key")
|
|
664
|
+
|
|
665
|
+
@kms_key.setter
|
|
666
|
+
def kms_key(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
667
|
+
pulumi.set(self, "kms_key", value)
|
|
668
|
+
|
|
669
|
+
|
|
670
|
+
if not MYPY:
|
|
671
|
+
class WorkgroupConfigurationMonitoringConfigurationArgsDict(TypedDict):
|
|
672
|
+
cloud_watch_logging_configuration: NotRequired[pulumi.Input['WorkgroupConfigurationMonitoringConfigurationCloudWatchLoggingConfigurationArgsDict']]
|
|
673
|
+
"""
|
|
674
|
+
Configuration block for delivering logs to Amazon CloudWatch log groups. See CloudWatch Logging Configuration below.
|
|
675
|
+
"""
|
|
676
|
+
managed_logging_configuration: NotRequired[pulumi.Input['WorkgroupConfigurationMonitoringConfigurationManagedLoggingConfigurationArgsDict']]
|
|
677
|
+
"""
|
|
678
|
+
Configuration block for managed log persistence. See Managed Logging Configuration below.
|
|
679
|
+
"""
|
|
680
|
+
s3_logging_configuration: NotRequired[pulumi.Input['WorkgroupConfigurationMonitoringConfigurationS3LoggingConfigurationArgsDict']]
|
|
681
|
+
"""
|
|
682
|
+
Configuration block for delivering logs to Amazon S3 buckets. See S3 Logging Configuration below.
|
|
683
|
+
"""
|
|
684
|
+
elif False:
|
|
685
|
+
WorkgroupConfigurationMonitoringConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
686
|
+
|
|
687
|
+
@pulumi.input_type
|
|
688
|
+
class WorkgroupConfigurationMonitoringConfigurationArgs:
|
|
689
|
+
def __init__(__self__, *,
|
|
690
|
+
cloud_watch_logging_configuration: Optional[pulumi.Input['WorkgroupConfigurationMonitoringConfigurationCloudWatchLoggingConfigurationArgs']] = None,
|
|
691
|
+
managed_logging_configuration: Optional[pulumi.Input['WorkgroupConfigurationMonitoringConfigurationManagedLoggingConfigurationArgs']] = None,
|
|
692
|
+
s3_logging_configuration: Optional[pulumi.Input['WorkgroupConfigurationMonitoringConfigurationS3LoggingConfigurationArgs']] = None):
|
|
565
693
|
"""
|
|
566
|
-
:param pulumi.Input[
|
|
694
|
+
:param pulumi.Input['WorkgroupConfigurationMonitoringConfigurationCloudWatchLoggingConfigurationArgs'] cloud_watch_logging_configuration: Configuration block for delivering logs to Amazon CloudWatch log groups. See CloudWatch Logging Configuration below.
|
|
695
|
+
:param pulumi.Input['WorkgroupConfigurationMonitoringConfigurationManagedLoggingConfigurationArgs'] managed_logging_configuration: Configuration block for managed log persistence. See Managed Logging Configuration below.
|
|
696
|
+
:param pulumi.Input['WorkgroupConfigurationMonitoringConfigurationS3LoggingConfigurationArgs'] s3_logging_configuration: Configuration block for delivering logs to Amazon S3 buckets. See S3 Logging Configuration below.
|
|
567
697
|
"""
|
|
698
|
+
if cloud_watch_logging_configuration is not None:
|
|
699
|
+
pulumi.set(__self__, "cloud_watch_logging_configuration", cloud_watch_logging_configuration)
|
|
700
|
+
if managed_logging_configuration is not None:
|
|
701
|
+
pulumi.set(__self__, "managed_logging_configuration", managed_logging_configuration)
|
|
702
|
+
if s3_logging_configuration is not None:
|
|
703
|
+
pulumi.set(__self__, "s3_logging_configuration", s3_logging_configuration)
|
|
704
|
+
|
|
705
|
+
@_builtins.property
|
|
706
|
+
@pulumi.getter(name="cloudWatchLoggingConfiguration")
|
|
707
|
+
def cloud_watch_logging_configuration(self) -> Optional[pulumi.Input['WorkgroupConfigurationMonitoringConfigurationCloudWatchLoggingConfigurationArgs']]:
|
|
708
|
+
"""
|
|
709
|
+
Configuration block for delivering logs to Amazon CloudWatch log groups. See CloudWatch Logging Configuration below.
|
|
710
|
+
"""
|
|
711
|
+
return pulumi.get(self, "cloud_watch_logging_configuration")
|
|
712
|
+
|
|
713
|
+
@cloud_watch_logging_configuration.setter
|
|
714
|
+
def cloud_watch_logging_configuration(self, value: Optional[pulumi.Input['WorkgroupConfigurationMonitoringConfigurationCloudWatchLoggingConfigurationArgs']]):
|
|
715
|
+
pulumi.set(self, "cloud_watch_logging_configuration", value)
|
|
716
|
+
|
|
717
|
+
@_builtins.property
|
|
718
|
+
@pulumi.getter(name="managedLoggingConfiguration")
|
|
719
|
+
def managed_logging_configuration(self) -> Optional[pulumi.Input['WorkgroupConfigurationMonitoringConfigurationManagedLoggingConfigurationArgs']]:
|
|
720
|
+
"""
|
|
721
|
+
Configuration block for managed log persistence. See Managed Logging Configuration below.
|
|
722
|
+
"""
|
|
723
|
+
return pulumi.get(self, "managed_logging_configuration")
|
|
724
|
+
|
|
725
|
+
@managed_logging_configuration.setter
|
|
726
|
+
def managed_logging_configuration(self, value: Optional[pulumi.Input['WorkgroupConfigurationMonitoringConfigurationManagedLoggingConfigurationArgs']]):
|
|
727
|
+
pulumi.set(self, "managed_logging_configuration", value)
|
|
728
|
+
|
|
729
|
+
@_builtins.property
|
|
730
|
+
@pulumi.getter(name="s3LoggingConfiguration")
|
|
731
|
+
def s3_logging_configuration(self) -> Optional[pulumi.Input['WorkgroupConfigurationMonitoringConfigurationS3LoggingConfigurationArgs']]:
|
|
732
|
+
"""
|
|
733
|
+
Configuration block for delivering logs to Amazon S3 buckets. See S3 Logging Configuration below.
|
|
734
|
+
"""
|
|
735
|
+
return pulumi.get(self, "s3_logging_configuration")
|
|
736
|
+
|
|
737
|
+
@s3_logging_configuration.setter
|
|
738
|
+
def s3_logging_configuration(self, value: Optional[pulumi.Input['WorkgroupConfigurationMonitoringConfigurationS3LoggingConfigurationArgs']]):
|
|
739
|
+
pulumi.set(self, "s3_logging_configuration", value)
|
|
740
|
+
|
|
741
|
+
|
|
742
|
+
if not MYPY:
|
|
743
|
+
class WorkgroupConfigurationMonitoringConfigurationCloudWatchLoggingConfigurationArgsDict(TypedDict):
|
|
744
|
+
enabled: pulumi.Input[_builtins.bool]
|
|
745
|
+
log_group: NotRequired[pulumi.Input[_builtins.str]]
|
|
746
|
+
"""
|
|
747
|
+
Name of the log group in Amazon CloudWatch Logs where you want to publish your logs.
|
|
748
|
+
"""
|
|
749
|
+
log_stream_name_prefix: NotRequired[pulumi.Input[_builtins.str]]
|
|
750
|
+
"""
|
|
751
|
+
Prefix for the CloudWatch log stream name.
|
|
752
|
+
"""
|
|
753
|
+
log_types: NotRequired[pulumi.Input[Sequence[pulumi.Input['WorkgroupConfigurationMonitoringConfigurationCloudWatchLoggingConfigurationLogTypeArgsDict']]]]
|
|
754
|
+
"""
|
|
755
|
+
Repeatable block defining log types to be delivered to CloudWatch.
|
|
756
|
+
"""
|
|
757
|
+
elif False:
|
|
758
|
+
WorkgroupConfigurationMonitoringConfigurationCloudWatchLoggingConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
759
|
+
|
|
760
|
+
@pulumi.input_type
|
|
761
|
+
class WorkgroupConfigurationMonitoringConfigurationCloudWatchLoggingConfigurationArgs:
|
|
762
|
+
def __init__(__self__, *,
|
|
763
|
+
enabled: pulumi.Input[_builtins.bool],
|
|
764
|
+
log_group: Optional[pulumi.Input[_builtins.str]] = None,
|
|
765
|
+
log_stream_name_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
|
766
|
+
log_types: Optional[pulumi.Input[Sequence[pulumi.Input['WorkgroupConfigurationMonitoringConfigurationCloudWatchLoggingConfigurationLogTypeArgs']]]] = None):
|
|
767
|
+
"""
|
|
768
|
+
:param pulumi.Input[_builtins.str] log_group: Name of the log group in Amazon CloudWatch Logs where you want to publish your logs.
|
|
769
|
+
:param pulumi.Input[_builtins.str] log_stream_name_prefix: Prefix for the CloudWatch log stream name.
|
|
770
|
+
:param pulumi.Input[Sequence[pulumi.Input['WorkgroupConfigurationMonitoringConfigurationCloudWatchLoggingConfigurationLogTypeArgs']]] log_types: Repeatable block defining log types to be delivered to CloudWatch.
|
|
771
|
+
"""
|
|
772
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
773
|
+
if log_group is not None:
|
|
774
|
+
pulumi.set(__self__, "log_group", log_group)
|
|
775
|
+
if log_stream_name_prefix is not None:
|
|
776
|
+
pulumi.set(__self__, "log_stream_name_prefix", log_stream_name_prefix)
|
|
777
|
+
if log_types is not None:
|
|
778
|
+
pulumi.set(__self__, "log_types", log_types)
|
|
779
|
+
|
|
780
|
+
@_builtins.property
|
|
781
|
+
@pulumi.getter
|
|
782
|
+
def enabled(self) -> pulumi.Input[_builtins.bool]:
|
|
783
|
+
return pulumi.get(self, "enabled")
|
|
784
|
+
|
|
785
|
+
@enabled.setter
|
|
786
|
+
def enabled(self, value: pulumi.Input[_builtins.bool]):
|
|
787
|
+
pulumi.set(self, "enabled", value)
|
|
788
|
+
|
|
789
|
+
@_builtins.property
|
|
790
|
+
@pulumi.getter(name="logGroup")
|
|
791
|
+
def log_group(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
792
|
+
"""
|
|
793
|
+
Name of the log group in Amazon CloudWatch Logs where you want to publish your logs.
|
|
794
|
+
"""
|
|
795
|
+
return pulumi.get(self, "log_group")
|
|
796
|
+
|
|
797
|
+
@log_group.setter
|
|
798
|
+
def log_group(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
799
|
+
pulumi.set(self, "log_group", value)
|
|
800
|
+
|
|
801
|
+
@_builtins.property
|
|
802
|
+
@pulumi.getter(name="logStreamNamePrefix")
|
|
803
|
+
def log_stream_name_prefix(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
804
|
+
"""
|
|
805
|
+
Prefix for the CloudWatch log stream name.
|
|
806
|
+
"""
|
|
807
|
+
return pulumi.get(self, "log_stream_name_prefix")
|
|
808
|
+
|
|
809
|
+
@log_stream_name_prefix.setter
|
|
810
|
+
def log_stream_name_prefix(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
811
|
+
pulumi.set(self, "log_stream_name_prefix", value)
|
|
812
|
+
|
|
813
|
+
@_builtins.property
|
|
814
|
+
@pulumi.getter(name="logTypes")
|
|
815
|
+
def log_types(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['WorkgroupConfigurationMonitoringConfigurationCloudWatchLoggingConfigurationLogTypeArgs']]]]:
|
|
816
|
+
"""
|
|
817
|
+
Repeatable block defining log types to be delivered to CloudWatch.
|
|
818
|
+
"""
|
|
819
|
+
return pulumi.get(self, "log_types")
|
|
820
|
+
|
|
821
|
+
@log_types.setter
|
|
822
|
+
def log_types(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['WorkgroupConfigurationMonitoringConfigurationCloudWatchLoggingConfigurationLogTypeArgs']]]]):
|
|
823
|
+
pulumi.set(self, "log_types", value)
|
|
824
|
+
|
|
825
|
+
|
|
826
|
+
if not MYPY:
|
|
827
|
+
class WorkgroupConfigurationMonitoringConfigurationCloudWatchLoggingConfigurationLogTypeArgsDict(TypedDict):
|
|
828
|
+
key: pulumi.Input[_builtins.str]
|
|
829
|
+
"""
|
|
830
|
+
Type of worker to deliver logs to CloudWatch (for example, `SPARK_DRIVER` and `SPARK_EXECUTOR`).
|
|
831
|
+
"""
|
|
832
|
+
values: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]
|
|
833
|
+
"""
|
|
834
|
+
List of log types to be delivered to CloudWatch (for example, `STDOUT` and `STDERR`).
|
|
835
|
+
"""
|
|
836
|
+
elif False:
|
|
837
|
+
WorkgroupConfigurationMonitoringConfigurationCloudWatchLoggingConfigurationLogTypeArgsDict: TypeAlias = Mapping[str, Any]
|
|
838
|
+
|
|
839
|
+
@pulumi.input_type
|
|
840
|
+
class WorkgroupConfigurationMonitoringConfigurationCloudWatchLoggingConfigurationLogTypeArgs:
|
|
841
|
+
def __init__(__self__, *,
|
|
842
|
+
key: pulumi.Input[_builtins.str],
|
|
843
|
+
values: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
|
844
|
+
"""
|
|
845
|
+
:param pulumi.Input[_builtins.str] key: Type of worker to deliver logs to CloudWatch (for example, `SPARK_DRIVER` and `SPARK_EXECUTOR`).
|
|
846
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] values: List of log types to be delivered to CloudWatch (for example, `STDOUT` and `STDERR`).
|
|
847
|
+
"""
|
|
848
|
+
pulumi.set(__self__, "key", key)
|
|
849
|
+
pulumi.set(__self__, "values", values)
|
|
850
|
+
|
|
851
|
+
@_builtins.property
|
|
852
|
+
@pulumi.getter
|
|
853
|
+
def key(self) -> pulumi.Input[_builtins.str]:
|
|
854
|
+
"""
|
|
855
|
+
Type of worker to deliver logs to CloudWatch (for example, `SPARK_DRIVER` and `SPARK_EXECUTOR`).
|
|
856
|
+
"""
|
|
857
|
+
return pulumi.get(self, "key")
|
|
858
|
+
|
|
859
|
+
@key.setter
|
|
860
|
+
def key(self, value: pulumi.Input[_builtins.str]):
|
|
861
|
+
pulumi.set(self, "key", value)
|
|
862
|
+
|
|
863
|
+
@_builtins.property
|
|
864
|
+
@pulumi.getter
|
|
865
|
+
def values(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
|
866
|
+
"""
|
|
867
|
+
List of log types to be delivered to CloudWatch (for example, `STDOUT` and `STDERR`).
|
|
868
|
+
"""
|
|
869
|
+
return pulumi.get(self, "values")
|
|
870
|
+
|
|
871
|
+
@values.setter
|
|
872
|
+
def values(self, value: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
|
873
|
+
pulumi.set(self, "values", value)
|
|
874
|
+
|
|
875
|
+
|
|
876
|
+
if not MYPY:
|
|
877
|
+
class WorkgroupConfigurationMonitoringConfigurationManagedLoggingConfigurationArgsDict(TypedDict):
|
|
878
|
+
enabled: pulumi.Input[_builtins.bool]
|
|
879
|
+
"""
|
|
880
|
+
Boolean whether managed log persistence is enabled for the workgroup.
|
|
881
|
+
"""
|
|
882
|
+
kms_key: NotRequired[pulumi.Input[_builtins.str]]
|
|
883
|
+
elif False:
|
|
884
|
+
WorkgroupConfigurationMonitoringConfigurationManagedLoggingConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
885
|
+
|
|
886
|
+
@pulumi.input_type
|
|
887
|
+
class WorkgroupConfigurationMonitoringConfigurationManagedLoggingConfigurationArgs:
|
|
888
|
+
def __init__(__self__, *,
|
|
889
|
+
enabled: pulumi.Input[_builtins.bool],
|
|
890
|
+
kms_key: Optional[pulumi.Input[_builtins.str]] = None):
|
|
891
|
+
"""
|
|
892
|
+
:param pulumi.Input[_builtins.bool] enabled: Boolean whether managed log persistence is enabled for the workgroup.
|
|
893
|
+
"""
|
|
894
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
568
895
|
if kms_key is not None:
|
|
569
896
|
pulumi.set(__self__, "kms_key", kms_key)
|
|
570
897
|
|
|
898
|
+
@_builtins.property
|
|
899
|
+
@pulumi.getter
|
|
900
|
+
def enabled(self) -> pulumi.Input[_builtins.bool]:
|
|
901
|
+
"""
|
|
902
|
+
Boolean whether managed log persistence is enabled for the workgroup.
|
|
903
|
+
"""
|
|
904
|
+
return pulumi.get(self, "enabled")
|
|
905
|
+
|
|
906
|
+
@enabled.setter
|
|
907
|
+
def enabled(self, value: pulumi.Input[_builtins.bool]):
|
|
908
|
+
pulumi.set(self, "enabled", value)
|
|
909
|
+
|
|
571
910
|
@_builtins.property
|
|
572
911
|
@pulumi.getter(name="kmsKey")
|
|
573
912
|
def kms_key(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
913
|
+
return pulumi.get(self, "kms_key")
|
|
914
|
+
|
|
915
|
+
@kms_key.setter
|
|
916
|
+
def kms_key(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
917
|
+
pulumi.set(self, "kms_key", value)
|
|
918
|
+
|
|
919
|
+
|
|
920
|
+
if not MYPY:
|
|
921
|
+
class WorkgroupConfigurationMonitoringConfigurationS3LoggingConfigurationArgsDict(TypedDict):
|
|
922
|
+
enabled: pulumi.Input[_builtins.bool]
|
|
923
|
+
"""
|
|
924
|
+
Boolean whether Amazon S3 logging is enabled for the workgroup.
|
|
574
925
|
"""
|
|
575
|
-
|
|
926
|
+
kms_key: NotRequired[pulumi.Input[_builtins.str]]
|
|
927
|
+
"""
|
|
928
|
+
KMS key ARN to encrypt the logs published to the given Amazon S3 destination.
|
|
929
|
+
"""
|
|
930
|
+
log_location: NotRequired[pulumi.Input[_builtins.str]]
|
|
931
|
+
"""
|
|
932
|
+
Amazon S3 destination URI (`s3://bucket/prefix`) for log publishing.
|
|
933
|
+
"""
|
|
934
|
+
elif False:
|
|
935
|
+
WorkgroupConfigurationMonitoringConfigurationS3LoggingConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
|
936
|
+
|
|
937
|
+
@pulumi.input_type
|
|
938
|
+
class WorkgroupConfigurationMonitoringConfigurationS3LoggingConfigurationArgs:
|
|
939
|
+
def __init__(__self__, *,
|
|
940
|
+
enabled: pulumi.Input[_builtins.bool],
|
|
941
|
+
kms_key: Optional[pulumi.Input[_builtins.str]] = None,
|
|
942
|
+
log_location: Optional[pulumi.Input[_builtins.str]] = None):
|
|
943
|
+
"""
|
|
944
|
+
:param pulumi.Input[_builtins.bool] enabled: Boolean whether Amazon S3 logging is enabled for the workgroup.
|
|
945
|
+
:param pulumi.Input[_builtins.str] kms_key: KMS key ARN to encrypt the logs published to the given Amazon S3 destination.
|
|
946
|
+
:param pulumi.Input[_builtins.str] log_location: Amazon S3 destination URI (`s3://bucket/prefix`) for log publishing.
|
|
947
|
+
"""
|
|
948
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
949
|
+
if kms_key is not None:
|
|
950
|
+
pulumi.set(__self__, "kms_key", kms_key)
|
|
951
|
+
if log_location is not None:
|
|
952
|
+
pulumi.set(__self__, "log_location", log_location)
|
|
953
|
+
|
|
954
|
+
@_builtins.property
|
|
955
|
+
@pulumi.getter
|
|
956
|
+
def enabled(self) -> pulumi.Input[_builtins.bool]:
|
|
957
|
+
"""
|
|
958
|
+
Boolean whether Amazon S3 logging is enabled for the workgroup.
|
|
959
|
+
"""
|
|
960
|
+
return pulumi.get(self, "enabled")
|
|
961
|
+
|
|
962
|
+
@enabled.setter
|
|
963
|
+
def enabled(self, value: pulumi.Input[_builtins.bool]):
|
|
964
|
+
pulumi.set(self, "enabled", value)
|
|
965
|
+
|
|
966
|
+
@_builtins.property
|
|
967
|
+
@pulumi.getter(name="kmsKey")
|
|
968
|
+
def kms_key(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
969
|
+
"""
|
|
970
|
+
KMS key ARN to encrypt the logs published to the given Amazon S3 destination.
|
|
576
971
|
"""
|
|
577
972
|
return pulumi.get(self, "kms_key")
|
|
578
973
|
|
|
@@ -580,6 +975,18 @@ class WorkgroupConfigurationManagedQueryResultsConfigurationEncryptionConfigurat
|
|
|
580
975
|
def kms_key(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
581
976
|
pulumi.set(self, "kms_key", value)
|
|
582
977
|
|
|
978
|
+
@_builtins.property
|
|
979
|
+
@pulumi.getter(name="logLocation")
|
|
980
|
+
def log_location(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
981
|
+
"""
|
|
982
|
+
Amazon S3 destination URI (`s3://bucket/prefix`) for log publishing.
|
|
983
|
+
"""
|
|
984
|
+
return pulumi.get(self, "log_location")
|
|
985
|
+
|
|
986
|
+
@log_location.setter
|
|
987
|
+
def log_location(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
988
|
+
pulumi.set(self, "log_location", value)
|
|
989
|
+
|
|
583
990
|
|
|
584
991
|
if not MYPY:
|
|
585
992
|
class WorkgroupConfigurationResultConfigurationArgsDict(TypedDict):
|