aws-cdk-lib 2.171.0__py3-none-any.whl → 2.172.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 +471 -161
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.171.0.jsii.tgz → aws-cdk-lib@2.172.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +1314 -124
- aws_cdk/aws_appsync/__init__.py +159 -136
- aws_cdk/aws_autoscaling/__init__.py +81 -24
- aws_cdk/aws_bedrock/__init__.py +48 -0
- aws_cdk/aws_chatbot/__init__.py +775 -0
- aws_cdk/aws_cloudformation/__init__.py +240 -159
- aws_cdk/aws_cloudfront/__init__.py +11 -5
- aws_cdk/aws_cloudtrail/__init__.py +753 -0
- aws_cdk/aws_cognito/__init__.py +825 -4
- aws_cdk/aws_connect/__init__.py +429 -0
- aws_cdk/aws_customerprofiles/__init__.py +3148 -0
- aws_cdk/aws_ec2/__init__.py +872 -5
- aws_cdk/aws_ecs/__init__.py +12 -7
- aws_cdk/aws_eks/__init__.py +709 -0
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +309 -55
- aws_cdk/aws_events/__init__.py +515 -8
- aws_cdk/aws_iot/__init__.py +42 -4
- aws_cdk/aws_iotfleetwise/__init__.py +510 -0
- aws_cdk/aws_iotsitewise/__init__.py +156 -0
- aws_cdk/aws_lambda/__init__.py +14 -8
- aws_cdk/aws_lambda_event_sources/__init__.py +2 -1
- aws_cdk/aws_lambda_nodejs/__init__.py +11 -11
- aws_cdk/aws_m2/__init__.py +289 -0
- aws_cdk/aws_mwaa/__init__.py +6 -6
- aws_cdk/aws_opensearchserverless/__init__.py +249 -1
- aws_cdk/aws_pipes/__init__.py +14 -30
- aws_cdk/aws_qbusiness/__init__.py +3 -1
- aws_cdk/aws_quicksight/__init__.py +8270 -10
- aws_cdk/aws_rbin/__init__.py +53 -34
- aws_cdk/aws_rds/__init__.py +140 -8
- aws_cdk/aws_resourcegroups/__init__.py +349 -0
- aws_cdk/aws_route53_targets/__init__.py +82 -0
- aws_cdk/aws_route53resolver/__init__.py +15 -6
- aws_cdk/aws_s3express/__init__.py +403 -2
- aws_cdk/aws_sagemaker/__init__.py +124 -112
- aws_cdk/aws_ses/__init__.py +79 -41
- aws_cdk/aws_wisdom/__init__.py +4713 -172
- aws_cdk/aws_workspacesweb/__init__.py +1024 -0
- {aws_cdk_lib-2.171.0.dist-info → aws_cdk_lib-2.172.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.171.0.dist-info → aws_cdk_lib-2.172.0.dist-info}/RECORD +47 -47
- {aws_cdk_lib-2.171.0.dist-info → aws_cdk_lib-2.172.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.171.0.dist-info → aws_cdk_lib-2.172.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.171.0.dist-info → aws_cdk_lib-2.172.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.171.0.dist-info → aws_cdk_lib-2.172.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_iot/__init__.py
CHANGED
|
@@ -3576,7 +3576,9 @@ class CfnDomainConfiguration(
|
|
|
3576
3576
|
domain_name="domainName",
|
|
3577
3577
|
server_certificate_arns=["serverCertificateArns"],
|
|
3578
3578
|
server_certificate_config=iot.CfnDomainConfiguration.ServerCertificateConfigProperty(
|
|
3579
|
-
enable_ocsp_check=False
|
|
3579
|
+
enable_ocsp_check=False,
|
|
3580
|
+
ocsp_authorized_responder_arn="ocspAuthorizedResponderArn",
|
|
3581
|
+
ocsp_lambda_arn="ocspLambdaArn"
|
|
3580
3582
|
),
|
|
3581
3583
|
service_type="serviceType",
|
|
3582
3584
|
tags=[CfnTag(
|
|
@@ -4045,19 +4047,27 @@ class CfnDomainConfiguration(
|
|
|
4045
4047
|
@jsii.data_type(
|
|
4046
4048
|
jsii_type="aws-cdk-lib.aws_iot.CfnDomainConfiguration.ServerCertificateConfigProperty",
|
|
4047
4049
|
jsii_struct_bases=[],
|
|
4048
|
-
name_mapping={
|
|
4050
|
+
name_mapping={
|
|
4051
|
+
"enable_ocsp_check": "enableOcspCheck",
|
|
4052
|
+
"ocsp_authorized_responder_arn": "ocspAuthorizedResponderArn",
|
|
4053
|
+
"ocsp_lambda_arn": "ocspLambdaArn",
|
|
4054
|
+
},
|
|
4049
4055
|
)
|
|
4050
4056
|
class ServerCertificateConfigProperty:
|
|
4051
4057
|
def __init__(
|
|
4052
4058
|
self,
|
|
4053
4059
|
*,
|
|
4054
4060
|
enable_ocsp_check: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
4061
|
+
ocsp_authorized_responder_arn: typing.Optional[builtins.str] = None,
|
|
4062
|
+
ocsp_lambda_arn: typing.Optional[builtins.str] = None,
|
|
4055
4063
|
) -> None:
|
|
4056
4064
|
'''The server certificate configuration.
|
|
4057
4065
|
|
|
4058
4066
|
For more information, see `Configurable endpoints <https://docs.aws.amazon.com//iot/latest/developerguide/iot-custom-endpoints-configurable.html>`_ from the AWS IoT Core Developer Guide.
|
|
4059
4067
|
|
|
4060
4068
|
:param enable_ocsp_check: A Boolean value that indicates whether Online Certificate Status Protocol (OCSP) server certificate check is enabled or not. For more information, see `Configurable endpoints <https://docs.aws.amazon.com//iot/latest/developerguide/iot-custom-endpoints-configurable.html>`_ from the AWS IoT Core Developer Guide.
|
|
4069
|
+
:param ocsp_authorized_responder_arn:
|
|
4070
|
+
:param ocsp_lambda_arn:
|
|
4061
4071
|
|
|
4062
4072
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-domainconfiguration-servercertificateconfig.html
|
|
4063
4073
|
:exampleMetadata: fixture=_generated
|
|
@@ -4069,15 +4079,23 @@ class CfnDomainConfiguration(
|
|
|
4069
4079
|
from aws_cdk import aws_iot as iot
|
|
4070
4080
|
|
|
4071
4081
|
server_certificate_config_property = iot.CfnDomainConfiguration.ServerCertificateConfigProperty(
|
|
4072
|
-
enable_ocsp_check=False
|
|
4082
|
+
enable_ocsp_check=False,
|
|
4083
|
+
ocsp_authorized_responder_arn="ocspAuthorizedResponderArn",
|
|
4084
|
+
ocsp_lambda_arn="ocspLambdaArn"
|
|
4073
4085
|
)
|
|
4074
4086
|
'''
|
|
4075
4087
|
if __debug__:
|
|
4076
4088
|
type_hints = typing.get_type_hints(_typecheckingstub__c9e3f7a32bb1f35b034ddd61e39c252e74632db889671f02c46280c93d0573a2)
|
|
4077
4089
|
check_type(argname="argument enable_ocsp_check", value=enable_ocsp_check, expected_type=type_hints["enable_ocsp_check"])
|
|
4090
|
+
check_type(argname="argument ocsp_authorized_responder_arn", value=ocsp_authorized_responder_arn, expected_type=type_hints["ocsp_authorized_responder_arn"])
|
|
4091
|
+
check_type(argname="argument ocsp_lambda_arn", value=ocsp_lambda_arn, expected_type=type_hints["ocsp_lambda_arn"])
|
|
4078
4092
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
4079
4093
|
if enable_ocsp_check is not None:
|
|
4080
4094
|
self._values["enable_ocsp_check"] = enable_ocsp_check
|
|
4095
|
+
if ocsp_authorized_responder_arn is not None:
|
|
4096
|
+
self._values["ocsp_authorized_responder_arn"] = ocsp_authorized_responder_arn
|
|
4097
|
+
if ocsp_lambda_arn is not None:
|
|
4098
|
+
self._values["ocsp_lambda_arn"] = ocsp_lambda_arn
|
|
4081
4099
|
|
|
4082
4100
|
@builtins.property
|
|
4083
4101
|
def enable_ocsp_check(
|
|
@@ -4092,6 +4110,22 @@ class CfnDomainConfiguration(
|
|
|
4092
4110
|
result = self._values.get("enable_ocsp_check")
|
|
4093
4111
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
4094
4112
|
|
|
4113
|
+
@builtins.property
|
|
4114
|
+
def ocsp_authorized_responder_arn(self) -> typing.Optional[builtins.str]:
|
|
4115
|
+
'''
|
|
4116
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-domainconfiguration-servercertificateconfig.html#cfn-iot-domainconfiguration-servercertificateconfig-ocspauthorizedresponderarn
|
|
4117
|
+
'''
|
|
4118
|
+
result = self._values.get("ocsp_authorized_responder_arn")
|
|
4119
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4120
|
+
|
|
4121
|
+
@builtins.property
|
|
4122
|
+
def ocsp_lambda_arn(self) -> typing.Optional[builtins.str]:
|
|
4123
|
+
'''
|
|
4124
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-domainconfiguration-servercertificateconfig.html#cfn-iot-domainconfiguration-servercertificateconfig-ocsplambdaarn
|
|
4125
|
+
'''
|
|
4126
|
+
result = self._values.get("ocsp_lambda_arn")
|
|
4127
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4128
|
+
|
|
4095
4129
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
4096
4130
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
4097
4131
|
|
|
@@ -4327,7 +4361,9 @@ class CfnDomainConfigurationProps:
|
|
|
4327
4361
|
domain_name="domainName",
|
|
4328
4362
|
server_certificate_arns=["serverCertificateArns"],
|
|
4329
4363
|
server_certificate_config=iot.CfnDomainConfiguration.ServerCertificateConfigProperty(
|
|
4330
|
-
enable_ocsp_check=False
|
|
4364
|
+
enable_ocsp_check=False,
|
|
4365
|
+
ocsp_authorized_responder_arn="ocspAuthorizedResponderArn",
|
|
4366
|
+
ocsp_lambda_arn="ocspLambdaArn"
|
|
4331
4367
|
),
|
|
4332
4368
|
service_type="serviceType",
|
|
4333
4369
|
tags=[CfnTag(
|
|
@@ -20476,6 +20512,8 @@ def _typecheckingstub__93b41f5617e6612d5a7947408347bc90f8d10c56bcd62276cae64a634
|
|
|
20476
20512
|
def _typecheckingstub__c9e3f7a32bb1f35b034ddd61e39c252e74632db889671f02c46280c93d0573a2(
|
|
20477
20513
|
*,
|
|
20478
20514
|
enable_ocsp_check: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
20515
|
+
ocsp_authorized_responder_arn: typing.Optional[builtins.str] = None,
|
|
20516
|
+
ocsp_lambda_arn: typing.Optional[builtins.str] = None,
|
|
20479
20517
|
) -> None:
|
|
20480
20518
|
"""Type checking stubs"""
|
|
20481
20519
|
pass
|