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/redshift/_inputs.py
CHANGED
|
@@ -21,6 +21,22 @@ __all__ = [
|
|
|
21
21
|
'EndpointAccessVpcEndpointArgsDict',
|
|
22
22
|
'EndpointAccessVpcEndpointNetworkInterfaceArgs',
|
|
23
23
|
'EndpointAccessVpcEndpointNetworkInterfaceArgsDict',
|
|
24
|
+
'IdcApplicationAuthorizedTokenIssuerArgs',
|
|
25
|
+
'IdcApplicationAuthorizedTokenIssuerArgsDict',
|
|
26
|
+
'IdcApplicationServiceIntegrationArgs',
|
|
27
|
+
'IdcApplicationServiceIntegrationArgsDict',
|
|
28
|
+
'IdcApplicationServiceIntegrationLakeFormationArgs',
|
|
29
|
+
'IdcApplicationServiceIntegrationLakeFormationArgsDict',
|
|
30
|
+
'IdcApplicationServiceIntegrationLakeFormationLakeFormationQueryArgs',
|
|
31
|
+
'IdcApplicationServiceIntegrationLakeFormationLakeFormationQueryArgsDict',
|
|
32
|
+
'IdcApplicationServiceIntegrationRedshiftArgs',
|
|
33
|
+
'IdcApplicationServiceIntegrationRedshiftArgsDict',
|
|
34
|
+
'IdcApplicationServiceIntegrationRedshiftConnectArgs',
|
|
35
|
+
'IdcApplicationServiceIntegrationRedshiftConnectArgsDict',
|
|
36
|
+
'IdcApplicationServiceIntegrationS3AccessGrantsArgs',
|
|
37
|
+
'IdcApplicationServiceIntegrationS3AccessGrantsArgsDict',
|
|
38
|
+
'IdcApplicationServiceIntegrationS3AccessGrantsReadWriteAccessArgs',
|
|
39
|
+
'IdcApplicationServiceIntegrationS3AccessGrantsReadWriteAccessArgsDict',
|
|
24
40
|
'IntegrationTimeoutsArgs',
|
|
25
41
|
'IntegrationTimeoutsArgsDict',
|
|
26
42
|
'ParameterGroupParameterArgs',
|
|
@@ -273,6 +289,319 @@ class EndpointAccessVpcEndpointNetworkInterfaceArgs:
|
|
|
273
289
|
pulumi.set(self, "subnet_id", value)
|
|
274
290
|
|
|
275
291
|
|
|
292
|
+
if not MYPY:
|
|
293
|
+
class IdcApplicationAuthorizedTokenIssuerArgsDict(TypedDict):
|
|
294
|
+
authorized_audiences_lists: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
295
|
+
"""
|
|
296
|
+
List of audiences for the authorized token issuer for integrating Amazon Redshift with IDC Identity Center.
|
|
297
|
+
"""
|
|
298
|
+
trusted_token_issuer_arn: NotRequired[pulumi.Input[_builtins.str]]
|
|
299
|
+
"""
|
|
300
|
+
ARN for the authorized token issuer for integrating Amazon Redshift with IDC Identity Center.
|
|
301
|
+
"""
|
|
302
|
+
elif False:
|
|
303
|
+
IdcApplicationAuthorizedTokenIssuerArgsDict: TypeAlias = Mapping[str, Any]
|
|
304
|
+
|
|
305
|
+
@pulumi.input_type
|
|
306
|
+
class IdcApplicationAuthorizedTokenIssuerArgs:
|
|
307
|
+
def __init__(__self__, *,
|
|
308
|
+
authorized_audiences_lists: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
309
|
+
trusted_token_issuer_arn: Optional[pulumi.Input[_builtins.str]] = None):
|
|
310
|
+
"""
|
|
311
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] authorized_audiences_lists: List of audiences for the authorized token issuer for integrating Amazon Redshift with IDC Identity Center.
|
|
312
|
+
:param pulumi.Input[_builtins.str] trusted_token_issuer_arn: ARN for the authorized token issuer for integrating Amazon Redshift with IDC Identity Center.
|
|
313
|
+
"""
|
|
314
|
+
if authorized_audiences_lists is not None:
|
|
315
|
+
pulumi.set(__self__, "authorized_audiences_lists", authorized_audiences_lists)
|
|
316
|
+
if trusted_token_issuer_arn is not None:
|
|
317
|
+
pulumi.set(__self__, "trusted_token_issuer_arn", trusted_token_issuer_arn)
|
|
318
|
+
|
|
319
|
+
@_builtins.property
|
|
320
|
+
@pulumi.getter(name="authorizedAudiencesLists")
|
|
321
|
+
def authorized_audiences_lists(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
322
|
+
"""
|
|
323
|
+
List of audiences for the authorized token issuer for integrating Amazon Redshift with IDC Identity Center.
|
|
324
|
+
"""
|
|
325
|
+
return pulumi.get(self, "authorized_audiences_lists")
|
|
326
|
+
|
|
327
|
+
@authorized_audiences_lists.setter
|
|
328
|
+
def authorized_audiences_lists(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
329
|
+
pulumi.set(self, "authorized_audiences_lists", value)
|
|
330
|
+
|
|
331
|
+
@_builtins.property
|
|
332
|
+
@pulumi.getter(name="trustedTokenIssuerArn")
|
|
333
|
+
def trusted_token_issuer_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
334
|
+
"""
|
|
335
|
+
ARN for the authorized token issuer for integrating Amazon Redshift with IDC Identity Center.
|
|
336
|
+
"""
|
|
337
|
+
return pulumi.get(self, "trusted_token_issuer_arn")
|
|
338
|
+
|
|
339
|
+
@trusted_token_issuer_arn.setter
|
|
340
|
+
def trusted_token_issuer_arn(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
341
|
+
pulumi.set(self, "trusted_token_issuer_arn", value)
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
if not MYPY:
|
|
345
|
+
class IdcApplicationServiceIntegrationArgsDict(TypedDict):
|
|
346
|
+
lake_formation: NotRequired[pulumi.Input['IdcApplicationServiceIntegrationLakeFormationArgsDict']]
|
|
347
|
+
"""
|
|
348
|
+
List of scopes set up for Lake Formation integration. Refer to the lake_formation documentation for more details.
|
|
349
|
+
"""
|
|
350
|
+
redshift: NotRequired[pulumi.Input['IdcApplicationServiceIntegrationRedshiftArgsDict']]
|
|
351
|
+
"""
|
|
352
|
+
List of scopes set up for Redshift integration. Refer to the redshift documentation for more details.
|
|
353
|
+
"""
|
|
354
|
+
s3_access_grants: NotRequired[pulumi.Input['IdcApplicationServiceIntegrationS3AccessGrantsArgsDict']]
|
|
355
|
+
"""
|
|
356
|
+
List of scopes set up for S3 Access Grants integration. Refer to the s3_access_grants documentation for more details.
|
|
357
|
+
"""
|
|
358
|
+
elif False:
|
|
359
|
+
IdcApplicationServiceIntegrationArgsDict: TypeAlias = Mapping[str, Any]
|
|
360
|
+
|
|
361
|
+
@pulumi.input_type
|
|
362
|
+
class IdcApplicationServiceIntegrationArgs:
|
|
363
|
+
def __init__(__self__, *,
|
|
364
|
+
lake_formation: Optional[pulumi.Input['IdcApplicationServiceIntegrationLakeFormationArgs']] = None,
|
|
365
|
+
redshift: Optional[pulumi.Input['IdcApplicationServiceIntegrationRedshiftArgs']] = None,
|
|
366
|
+
s3_access_grants: Optional[pulumi.Input['IdcApplicationServiceIntegrationS3AccessGrantsArgs']] = None):
|
|
367
|
+
"""
|
|
368
|
+
:param pulumi.Input['IdcApplicationServiceIntegrationLakeFormationArgs'] lake_formation: List of scopes set up for Lake Formation integration. Refer to the lake_formation documentation for more details.
|
|
369
|
+
:param pulumi.Input['IdcApplicationServiceIntegrationRedshiftArgs'] redshift: List of scopes set up for Redshift integration. Refer to the redshift documentation for more details.
|
|
370
|
+
:param pulumi.Input['IdcApplicationServiceIntegrationS3AccessGrantsArgs'] s3_access_grants: List of scopes set up for S3 Access Grants integration. Refer to the s3_access_grants documentation for more details.
|
|
371
|
+
"""
|
|
372
|
+
if lake_formation is not None:
|
|
373
|
+
pulumi.set(__self__, "lake_formation", lake_formation)
|
|
374
|
+
if redshift is not None:
|
|
375
|
+
pulumi.set(__self__, "redshift", redshift)
|
|
376
|
+
if s3_access_grants is not None:
|
|
377
|
+
pulumi.set(__self__, "s3_access_grants", s3_access_grants)
|
|
378
|
+
|
|
379
|
+
@_builtins.property
|
|
380
|
+
@pulumi.getter(name="lakeFormation")
|
|
381
|
+
def lake_formation(self) -> Optional[pulumi.Input['IdcApplicationServiceIntegrationLakeFormationArgs']]:
|
|
382
|
+
"""
|
|
383
|
+
List of scopes set up for Lake Formation integration. Refer to the lake_formation documentation for more details.
|
|
384
|
+
"""
|
|
385
|
+
return pulumi.get(self, "lake_formation")
|
|
386
|
+
|
|
387
|
+
@lake_formation.setter
|
|
388
|
+
def lake_formation(self, value: Optional[pulumi.Input['IdcApplicationServiceIntegrationLakeFormationArgs']]):
|
|
389
|
+
pulumi.set(self, "lake_formation", value)
|
|
390
|
+
|
|
391
|
+
@_builtins.property
|
|
392
|
+
@pulumi.getter
|
|
393
|
+
def redshift(self) -> Optional[pulumi.Input['IdcApplicationServiceIntegrationRedshiftArgs']]:
|
|
394
|
+
"""
|
|
395
|
+
List of scopes set up for Redshift integration. Refer to the redshift documentation for more details.
|
|
396
|
+
"""
|
|
397
|
+
return pulumi.get(self, "redshift")
|
|
398
|
+
|
|
399
|
+
@redshift.setter
|
|
400
|
+
def redshift(self, value: Optional[pulumi.Input['IdcApplicationServiceIntegrationRedshiftArgs']]):
|
|
401
|
+
pulumi.set(self, "redshift", value)
|
|
402
|
+
|
|
403
|
+
@_builtins.property
|
|
404
|
+
@pulumi.getter(name="s3AccessGrants")
|
|
405
|
+
def s3_access_grants(self) -> Optional[pulumi.Input['IdcApplicationServiceIntegrationS3AccessGrantsArgs']]:
|
|
406
|
+
"""
|
|
407
|
+
List of scopes set up for S3 Access Grants integration. Refer to the s3_access_grants documentation for more details.
|
|
408
|
+
"""
|
|
409
|
+
return pulumi.get(self, "s3_access_grants")
|
|
410
|
+
|
|
411
|
+
@s3_access_grants.setter
|
|
412
|
+
def s3_access_grants(self, value: Optional[pulumi.Input['IdcApplicationServiceIntegrationS3AccessGrantsArgs']]):
|
|
413
|
+
pulumi.set(self, "s3_access_grants", value)
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
if not MYPY:
|
|
417
|
+
class IdcApplicationServiceIntegrationLakeFormationArgsDict(TypedDict):
|
|
418
|
+
lake_formation_query: NotRequired[pulumi.Input['IdcApplicationServiceIntegrationLakeFormationLakeFormationQueryArgsDict']]
|
|
419
|
+
"""
|
|
420
|
+
Lake formation scope.
|
|
421
|
+
"""
|
|
422
|
+
elif False:
|
|
423
|
+
IdcApplicationServiceIntegrationLakeFormationArgsDict: TypeAlias = Mapping[str, Any]
|
|
424
|
+
|
|
425
|
+
@pulumi.input_type
|
|
426
|
+
class IdcApplicationServiceIntegrationLakeFormationArgs:
|
|
427
|
+
def __init__(__self__, *,
|
|
428
|
+
lake_formation_query: Optional[pulumi.Input['IdcApplicationServiceIntegrationLakeFormationLakeFormationQueryArgs']] = None):
|
|
429
|
+
"""
|
|
430
|
+
:param pulumi.Input['IdcApplicationServiceIntegrationLakeFormationLakeFormationQueryArgs'] lake_formation_query: Lake formation scope.
|
|
431
|
+
"""
|
|
432
|
+
if lake_formation_query is not None:
|
|
433
|
+
pulumi.set(__self__, "lake_formation_query", lake_formation_query)
|
|
434
|
+
|
|
435
|
+
@_builtins.property
|
|
436
|
+
@pulumi.getter(name="lakeFormationQuery")
|
|
437
|
+
def lake_formation_query(self) -> Optional[pulumi.Input['IdcApplicationServiceIntegrationLakeFormationLakeFormationQueryArgs']]:
|
|
438
|
+
"""
|
|
439
|
+
Lake formation scope.
|
|
440
|
+
"""
|
|
441
|
+
return pulumi.get(self, "lake_formation_query")
|
|
442
|
+
|
|
443
|
+
@lake_formation_query.setter
|
|
444
|
+
def lake_formation_query(self, value: Optional[pulumi.Input['IdcApplicationServiceIntegrationLakeFormationLakeFormationQueryArgs']]):
|
|
445
|
+
pulumi.set(self, "lake_formation_query", value)
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
if not MYPY:
|
|
449
|
+
class IdcApplicationServiceIntegrationLakeFormationLakeFormationQueryArgsDict(TypedDict):
|
|
450
|
+
authorization: pulumi.Input[_builtins.str]
|
|
451
|
+
"""
|
|
452
|
+
Determines whether the query scope is enabled or disabled.
|
|
453
|
+
"""
|
|
454
|
+
elif False:
|
|
455
|
+
IdcApplicationServiceIntegrationLakeFormationLakeFormationQueryArgsDict: TypeAlias = Mapping[str, Any]
|
|
456
|
+
|
|
457
|
+
@pulumi.input_type
|
|
458
|
+
class IdcApplicationServiceIntegrationLakeFormationLakeFormationQueryArgs:
|
|
459
|
+
def __init__(__self__, *,
|
|
460
|
+
authorization: pulumi.Input[_builtins.str]):
|
|
461
|
+
"""
|
|
462
|
+
:param pulumi.Input[_builtins.str] authorization: Determines whether the query scope is enabled or disabled.
|
|
463
|
+
"""
|
|
464
|
+
pulumi.set(__self__, "authorization", authorization)
|
|
465
|
+
|
|
466
|
+
@_builtins.property
|
|
467
|
+
@pulumi.getter
|
|
468
|
+
def authorization(self) -> pulumi.Input[_builtins.str]:
|
|
469
|
+
"""
|
|
470
|
+
Determines whether the query scope is enabled or disabled.
|
|
471
|
+
"""
|
|
472
|
+
return pulumi.get(self, "authorization")
|
|
473
|
+
|
|
474
|
+
@authorization.setter
|
|
475
|
+
def authorization(self, value: pulumi.Input[_builtins.str]):
|
|
476
|
+
pulumi.set(self, "authorization", value)
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
if not MYPY:
|
|
480
|
+
class IdcApplicationServiceIntegrationRedshiftArgsDict(TypedDict):
|
|
481
|
+
connect: NotRequired[pulumi.Input['IdcApplicationServiceIntegrationRedshiftConnectArgsDict']]
|
|
482
|
+
"""
|
|
483
|
+
Amazon Redshift connect service integration scope.
|
|
484
|
+
"""
|
|
485
|
+
elif False:
|
|
486
|
+
IdcApplicationServiceIntegrationRedshiftArgsDict: TypeAlias = Mapping[str, Any]
|
|
487
|
+
|
|
488
|
+
@pulumi.input_type
|
|
489
|
+
class IdcApplicationServiceIntegrationRedshiftArgs:
|
|
490
|
+
def __init__(__self__, *,
|
|
491
|
+
connect: Optional[pulumi.Input['IdcApplicationServiceIntegrationRedshiftConnectArgs']] = None):
|
|
492
|
+
"""
|
|
493
|
+
:param pulumi.Input['IdcApplicationServiceIntegrationRedshiftConnectArgs'] connect: Amazon Redshift connect service integration scope.
|
|
494
|
+
"""
|
|
495
|
+
if connect is not None:
|
|
496
|
+
pulumi.set(__self__, "connect", connect)
|
|
497
|
+
|
|
498
|
+
@_builtins.property
|
|
499
|
+
@pulumi.getter
|
|
500
|
+
def connect(self) -> Optional[pulumi.Input['IdcApplicationServiceIntegrationRedshiftConnectArgs']]:
|
|
501
|
+
"""
|
|
502
|
+
Amazon Redshift connect service integration scope.
|
|
503
|
+
"""
|
|
504
|
+
return pulumi.get(self, "connect")
|
|
505
|
+
|
|
506
|
+
@connect.setter
|
|
507
|
+
def connect(self, value: Optional[pulumi.Input['IdcApplicationServiceIntegrationRedshiftConnectArgs']]):
|
|
508
|
+
pulumi.set(self, "connect", value)
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
if not MYPY:
|
|
512
|
+
class IdcApplicationServiceIntegrationRedshiftConnectArgsDict(TypedDict):
|
|
513
|
+
authorization: pulumi.Input[_builtins.str]
|
|
514
|
+
"""
|
|
515
|
+
Determines whether the connect integration is enabled or disabled.
|
|
516
|
+
"""
|
|
517
|
+
elif False:
|
|
518
|
+
IdcApplicationServiceIntegrationRedshiftConnectArgsDict: TypeAlias = Mapping[str, Any]
|
|
519
|
+
|
|
520
|
+
@pulumi.input_type
|
|
521
|
+
class IdcApplicationServiceIntegrationRedshiftConnectArgs:
|
|
522
|
+
def __init__(__self__, *,
|
|
523
|
+
authorization: pulumi.Input[_builtins.str]):
|
|
524
|
+
"""
|
|
525
|
+
:param pulumi.Input[_builtins.str] authorization: Determines whether the connect integration is enabled or disabled.
|
|
526
|
+
"""
|
|
527
|
+
pulumi.set(__self__, "authorization", authorization)
|
|
528
|
+
|
|
529
|
+
@_builtins.property
|
|
530
|
+
@pulumi.getter
|
|
531
|
+
def authorization(self) -> pulumi.Input[_builtins.str]:
|
|
532
|
+
"""
|
|
533
|
+
Determines whether the connect integration is enabled or disabled.
|
|
534
|
+
"""
|
|
535
|
+
return pulumi.get(self, "authorization")
|
|
536
|
+
|
|
537
|
+
@authorization.setter
|
|
538
|
+
def authorization(self, value: pulumi.Input[_builtins.str]):
|
|
539
|
+
pulumi.set(self, "authorization", value)
|
|
540
|
+
|
|
541
|
+
|
|
542
|
+
if not MYPY:
|
|
543
|
+
class IdcApplicationServiceIntegrationS3AccessGrantsArgsDict(TypedDict):
|
|
544
|
+
read_write_access: NotRequired[pulumi.Input['IdcApplicationServiceIntegrationS3AccessGrantsReadWriteAccessArgsDict']]
|
|
545
|
+
"""
|
|
546
|
+
S3 Access grants integration scope.
|
|
547
|
+
"""
|
|
548
|
+
elif False:
|
|
549
|
+
IdcApplicationServiceIntegrationS3AccessGrantsArgsDict: TypeAlias = Mapping[str, Any]
|
|
550
|
+
|
|
551
|
+
@pulumi.input_type
|
|
552
|
+
class IdcApplicationServiceIntegrationS3AccessGrantsArgs:
|
|
553
|
+
def __init__(__self__, *,
|
|
554
|
+
read_write_access: Optional[pulumi.Input['IdcApplicationServiceIntegrationS3AccessGrantsReadWriteAccessArgs']] = None):
|
|
555
|
+
"""
|
|
556
|
+
:param pulumi.Input['IdcApplicationServiceIntegrationS3AccessGrantsReadWriteAccessArgs'] read_write_access: S3 Access grants integration scope.
|
|
557
|
+
"""
|
|
558
|
+
if read_write_access is not None:
|
|
559
|
+
pulumi.set(__self__, "read_write_access", read_write_access)
|
|
560
|
+
|
|
561
|
+
@_builtins.property
|
|
562
|
+
@pulumi.getter(name="readWriteAccess")
|
|
563
|
+
def read_write_access(self) -> Optional[pulumi.Input['IdcApplicationServiceIntegrationS3AccessGrantsReadWriteAccessArgs']]:
|
|
564
|
+
"""
|
|
565
|
+
S3 Access grants integration scope.
|
|
566
|
+
"""
|
|
567
|
+
return pulumi.get(self, "read_write_access")
|
|
568
|
+
|
|
569
|
+
@read_write_access.setter
|
|
570
|
+
def read_write_access(self, value: Optional[pulumi.Input['IdcApplicationServiceIntegrationS3AccessGrantsReadWriteAccessArgs']]):
|
|
571
|
+
pulumi.set(self, "read_write_access", value)
|
|
572
|
+
|
|
573
|
+
|
|
574
|
+
if not MYPY:
|
|
575
|
+
class IdcApplicationServiceIntegrationS3AccessGrantsReadWriteAccessArgsDict(TypedDict):
|
|
576
|
+
authorization: pulumi.Input[_builtins.str]
|
|
577
|
+
"""
|
|
578
|
+
Determines whether read/write scope is enabled or disabled.
|
|
579
|
+
"""
|
|
580
|
+
elif False:
|
|
581
|
+
IdcApplicationServiceIntegrationS3AccessGrantsReadWriteAccessArgsDict: TypeAlias = Mapping[str, Any]
|
|
582
|
+
|
|
583
|
+
@pulumi.input_type
|
|
584
|
+
class IdcApplicationServiceIntegrationS3AccessGrantsReadWriteAccessArgs:
|
|
585
|
+
def __init__(__self__, *,
|
|
586
|
+
authorization: pulumi.Input[_builtins.str]):
|
|
587
|
+
"""
|
|
588
|
+
:param pulumi.Input[_builtins.str] authorization: Determines whether read/write scope is enabled or disabled.
|
|
589
|
+
"""
|
|
590
|
+
pulumi.set(__self__, "authorization", authorization)
|
|
591
|
+
|
|
592
|
+
@_builtins.property
|
|
593
|
+
@pulumi.getter
|
|
594
|
+
def authorization(self) -> pulumi.Input[_builtins.str]:
|
|
595
|
+
"""
|
|
596
|
+
Determines whether read/write scope is enabled or disabled.
|
|
597
|
+
"""
|
|
598
|
+
return pulumi.get(self, "authorization")
|
|
599
|
+
|
|
600
|
+
@authorization.setter
|
|
601
|
+
def authorization(self, value: pulumi.Input[_builtins.str]):
|
|
602
|
+
pulumi.set(self, "authorization", value)
|
|
603
|
+
|
|
604
|
+
|
|
276
605
|
if not MYPY:
|
|
277
606
|
class IntegrationTimeoutsArgsDict(TypedDict):
|
|
278
607
|
create: NotRequired[pulumi.Input[_builtins.str]]
|