aws-cdk-lib 2.159.1__py3-none-any.whl → 2.161.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.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/__init__.py +281 -33
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.159.1.jsii.tgz → aws-cdk-lib@2.161.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigatewayv2/__init__.py +13 -14
- aws_cdk/aws_autoscaling/__init__.py +2 -2
- aws_cdk/aws_b2bi/__init__.py +2283 -672
- aws_cdk/aws_batch/__init__.py +9 -5
- aws_cdk/aws_bedrock/__init__.py +52 -20
- aws_cdk/aws_cloudformation/__init__.py +9 -9
- aws_cdk/aws_cloudtrail/__init__.py +97 -183
- aws_cdk/aws_cloudwatch/__init__.py +38 -42
- aws_cdk/aws_codepipeline_actions/__init__.py +4 -4
- aws_cdk/aws_cognito/__init__.py +18 -0
- aws_cdk/aws_datasync/__init__.py +1 -1
- aws_cdk/aws_dynamodb/__init__.py +4 -4
- aws_cdk/aws_ec2/__init__.py +138 -12
- aws_cdk/aws_ecs/__init__.py +517 -6
- aws_cdk/aws_eks/__init__.py +118 -2
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +5 -3
- aws_cdk/aws_glue/__init__.py +386 -0
- aws_cdk/aws_iotfleetwise/__init__.py +49 -49
- aws_cdk/aws_iottwinmaker/__init__.py +4 -4
- aws_cdk/aws_iotwireless/__init__.py +2 -1
- aws_cdk/aws_kinesisfirehose/__init__.py +52 -76
- aws_cdk/aws_kms/__init__.py +4 -4
- aws_cdk/aws_lambda/__init__.py +385 -244
- aws_cdk/aws_logs/__init__.py +455 -24
- aws_cdk/aws_mediaconnect/__init__.py +6 -4
- aws_cdk/aws_medialive/__init__.py +36 -0
- aws_cdk/aws_organizations/__init__.py +4 -3
- aws_cdk/aws_pipes/__init__.py +2 -2
- aws_cdk/aws_quicksight/__init__.py +1086 -6
- aws_cdk/aws_rds/__init__.py +182 -3
- aws_cdk/aws_route53resolver/__init__.py +3 -17
- aws_cdk/aws_s3/__init__.py +24 -15
- aws_cdk/aws_s3_deployment/__init__.py +45 -0
- aws_cdk/aws_s3express/__init__.py +314 -4
- aws_cdk/aws_sagemaker/__init__.py +44 -4
- aws_cdk/aws_secretsmanager/__init__.py +14 -7
- aws_cdk/aws_securityhub/__init__.py +16 -14
- aws_cdk/aws_ses/__init__.py +52 -18
- aws_cdk/aws_sqs/__init__.py +16 -14
- aws_cdk/aws_ssm/__init__.py +6 -2
- aws_cdk/aws_stepfunctions/__init__.py +412 -32
- aws_cdk/aws_synthetics/__init__.py +46 -0
- aws_cdk/aws_waf/__init__.py +33 -22
- aws_cdk/aws_wafregional/__init__.py +36 -24
- aws_cdk/aws_workspacesweb/__init__.py +54 -3
- aws_cdk/cloud_assembly_schema/__init__.py +1304 -417
- aws_cdk/cloudformation_include/__init__.py +28 -0
- aws_cdk/cx_api/__init__.py +129 -0
- aws_cdk/pipelines/__init__.py +4 -4
- {aws_cdk_lib-2.159.1.dist-info → aws_cdk_lib-2.161.0.dist-info}/METADATA +4 -4
- {aws_cdk_lib-2.159.1.dist-info → aws_cdk_lib-2.161.0.dist-info}/RECORD +58 -58
- {aws_cdk_lib-2.159.1.dist-info → aws_cdk_lib-2.161.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.159.1.dist-info → aws_cdk_lib-2.161.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.159.1.dist-info → aws_cdk_lib-2.161.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.159.1.dist-info → aws_cdk_lib-2.161.0.dist-info}/top_level.txt +0 -0
|
@@ -377,7 +377,7 @@ class CfnBrowserSettingsProps:
|
|
|
377
377
|
)
|
|
378
378
|
|
|
379
379
|
|
|
380
|
-
@jsii.implements(_IInspectable_c2943556)
|
|
380
|
+
@jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
|
|
381
381
|
class CfnIdentityProvider(
|
|
382
382
|
_CfnResource_9df397a6,
|
|
383
383
|
metaclass=jsii.JSIIMeta,
|
|
@@ -405,7 +405,11 @@ class CfnIdentityProvider(
|
|
|
405
405
|
identity_provider_type="identityProviderType",
|
|
406
406
|
|
|
407
407
|
# the properties below are optional
|
|
408
|
-
portal_arn="portalArn"
|
|
408
|
+
portal_arn="portalArn",
|
|
409
|
+
tags=[CfnTag(
|
|
410
|
+
key="key",
|
|
411
|
+
value="value"
|
|
412
|
+
)]
|
|
409
413
|
)
|
|
410
414
|
'''
|
|
411
415
|
|
|
@@ -418,6 +422,7 @@ class CfnIdentityProvider(
|
|
|
418
422
|
identity_provider_name: builtins.str,
|
|
419
423
|
identity_provider_type: builtins.str,
|
|
420
424
|
portal_arn: typing.Optional[builtins.str] = None,
|
|
425
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
421
426
|
) -> None:
|
|
422
427
|
'''
|
|
423
428
|
:param scope: Scope in which this resource is defined.
|
|
@@ -426,6 +431,7 @@ class CfnIdentityProvider(
|
|
|
426
431
|
:param identity_provider_name: The identity provider name.
|
|
427
432
|
:param identity_provider_type: The identity provider type.
|
|
428
433
|
:param portal_arn: The ARN of the identity provider.
|
|
434
|
+
:param tags:
|
|
429
435
|
'''
|
|
430
436
|
if __debug__:
|
|
431
437
|
type_hints = typing.get_type_hints(_typecheckingstub__439cd32d129b1f0a69c13fb5a494170084be122497b619a7175debec51c3635e)
|
|
@@ -436,6 +442,7 @@ class CfnIdentityProvider(
|
|
|
436
442
|
identity_provider_name=identity_provider_name,
|
|
437
443
|
identity_provider_type=identity_provider_type,
|
|
438
444
|
portal_arn=portal_arn,
|
|
445
|
+
tags=tags,
|
|
439
446
|
)
|
|
440
447
|
|
|
441
448
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
@@ -479,6 +486,12 @@ class CfnIdentityProvider(
|
|
|
479
486
|
'''
|
|
480
487
|
return typing.cast(builtins.str, jsii.get(self, "attrIdentityProviderArn"))
|
|
481
488
|
|
|
489
|
+
@builtins.property
|
|
490
|
+
@jsii.member(jsii_name="cdkTagManager")
|
|
491
|
+
def cdk_tag_manager(self) -> _TagManager_0a598cb3:
|
|
492
|
+
'''Tag Manager which manages the tags for this resource.'''
|
|
493
|
+
return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
|
|
494
|
+
|
|
482
495
|
@builtins.property
|
|
483
496
|
@jsii.member(jsii_name="cfnProperties")
|
|
484
497
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
@@ -544,6 +557,18 @@ class CfnIdentityProvider(
|
|
|
544
557
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
545
558
|
jsii.set(self, "portalArn", value) # pyright: ignore[reportArgumentType]
|
|
546
559
|
|
|
560
|
+
@builtins.property
|
|
561
|
+
@jsii.member(jsii_name="tags")
|
|
562
|
+
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
563
|
+
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
564
|
+
|
|
565
|
+
@tags.setter
|
|
566
|
+
def tags(self, value: typing.Optional[typing.List[_CfnTag_f6864754]]) -> None:
|
|
567
|
+
if __debug__:
|
|
568
|
+
type_hints = typing.get_type_hints(_typecheckingstub__f529ceae5ebe64b079470ab15dfc0b78fc406f1eaba9be1f4902b355cd6e363f)
|
|
569
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
570
|
+
jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
|
|
571
|
+
|
|
547
572
|
|
|
548
573
|
@jsii.data_type(
|
|
549
574
|
jsii_type="aws-cdk-lib.aws_workspacesweb.CfnIdentityProviderProps",
|
|
@@ -553,6 +578,7 @@ class CfnIdentityProvider(
|
|
|
553
578
|
"identity_provider_name": "identityProviderName",
|
|
554
579
|
"identity_provider_type": "identityProviderType",
|
|
555
580
|
"portal_arn": "portalArn",
|
|
581
|
+
"tags": "tags",
|
|
556
582
|
},
|
|
557
583
|
)
|
|
558
584
|
class CfnIdentityProviderProps:
|
|
@@ -563,6 +589,7 @@ class CfnIdentityProviderProps:
|
|
|
563
589
|
identity_provider_name: builtins.str,
|
|
564
590
|
identity_provider_type: builtins.str,
|
|
565
591
|
portal_arn: typing.Optional[builtins.str] = None,
|
|
592
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
566
593
|
) -> None:
|
|
567
594
|
'''Properties for defining a ``CfnIdentityProvider``.
|
|
568
595
|
|
|
@@ -570,6 +597,7 @@ class CfnIdentityProviderProps:
|
|
|
570
597
|
:param identity_provider_name: The identity provider name.
|
|
571
598
|
:param identity_provider_type: The identity provider type.
|
|
572
599
|
:param portal_arn: The ARN of the identity provider.
|
|
600
|
+
:param tags:
|
|
573
601
|
|
|
574
602
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-identityprovider.html
|
|
575
603
|
:exampleMetadata: fixture=_generated
|
|
@@ -588,7 +616,11 @@ class CfnIdentityProviderProps:
|
|
|
588
616
|
identity_provider_type="identityProviderType",
|
|
589
617
|
|
|
590
618
|
# the properties below are optional
|
|
591
|
-
portal_arn="portalArn"
|
|
619
|
+
portal_arn="portalArn",
|
|
620
|
+
tags=[CfnTag(
|
|
621
|
+
key="key",
|
|
622
|
+
value="value"
|
|
623
|
+
)]
|
|
592
624
|
)
|
|
593
625
|
'''
|
|
594
626
|
if __debug__:
|
|
@@ -597,6 +629,7 @@ class CfnIdentityProviderProps:
|
|
|
597
629
|
check_type(argname="argument identity_provider_name", value=identity_provider_name, expected_type=type_hints["identity_provider_name"])
|
|
598
630
|
check_type(argname="argument identity_provider_type", value=identity_provider_type, expected_type=type_hints["identity_provider_type"])
|
|
599
631
|
check_type(argname="argument portal_arn", value=portal_arn, expected_type=type_hints["portal_arn"])
|
|
632
|
+
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
600
633
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
601
634
|
"identity_provider_details": identity_provider_details,
|
|
602
635
|
"identity_provider_name": identity_provider_name,
|
|
@@ -604,6 +637,8 @@ class CfnIdentityProviderProps:
|
|
|
604
637
|
}
|
|
605
638
|
if portal_arn is not None:
|
|
606
639
|
self._values["portal_arn"] = portal_arn
|
|
640
|
+
if tags is not None:
|
|
641
|
+
self._values["tags"] = tags
|
|
607
642
|
|
|
608
643
|
@builtins.property
|
|
609
644
|
def identity_provider_details(
|
|
@@ -678,6 +713,14 @@ class CfnIdentityProviderProps:
|
|
|
678
713
|
result = self._values.get("portal_arn")
|
|
679
714
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
680
715
|
|
|
716
|
+
@builtins.property
|
|
717
|
+
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
718
|
+
'''
|
|
719
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-identityprovider.html#cfn-workspacesweb-identityprovider-tags
|
|
720
|
+
'''
|
|
721
|
+
result = self._values.get("tags")
|
|
722
|
+
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
|
|
723
|
+
|
|
681
724
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
682
725
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
683
726
|
|
|
@@ -3446,6 +3489,7 @@ def _typecheckingstub__439cd32d129b1f0a69c13fb5a494170084be122497b619a7175debec5
|
|
|
3446
3489
|
identity_provider_name: builtins.str,
|
|
3447
3490
|
identity_provider_type: builtins.str,
|
|
3448
3491
|
portal_arn: typing.Optional[builtins.str] = None,
|
|
3492
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3449
3493
|
) -> None:
|
|
3450
3494
|
"""Type checking stubs"""
|
|
3451
3495
|
pass
|
|
@@ -3486,12 +3530,19 @@ def _typecheckingstub__f17f07edd6f61424250e1f5f7df6f6cee024beb494ee700c6419c5642
|
|
|
3486
3530
|
"""Type checking stubs"""
|
|
3487
3531
|
pass
|
|
3488
3532
|
|
|
3533
|
+
def _typecheckingstub__f529ceae5ebe64b079470ab15dfc0b78fc406f1eaba9be1f4902b355cd6e363f(
|
|
3534
|
+
value: typing.Optional[typing.List[_CfnTag_f6864754]],
|
|
3535
|
+
) -> None:
|
|
3536
|
+
"""Type checking stubs"""
|
|
3537
|
+
pass
|
|
3538
|
+
|
|
3489
3539
|
def _typecheckingstub__fc73238ea7aab35d7f7ec21a88a98c698e64b413b81129270666c830ae963a4d(
|
|
3490
3540
|
*,
|
|
3491
3541
|
identity_provider_details: typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]],
|
|
3492
3542
|
identity_provider_name: builtins.str,
|
|
3493
3543
|
identity_provider_type: builtins.str,
|
|
3494
3544
|
portal_arn: typing.Optional[builtins.str] = None,
|
|
3545
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3495
3546
|
) -> None:
|
|
3496
3547
|
"""Type checking stubs"""
|
|
3497
3548
|
pass
|