aws-cdk-lib 2.125.0__py3-none-any.whl → 2.127.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 +0 -2
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.125.0.jsii.tgz → aws-cdk-lib@2.127.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +18 -6
- aws_cdk/aws_amazonmq/__init__.py +3 -2
- aws_cdk/aws_amplifyuibuilder/__init__.py +1212 -666
- aws_cdk/aws_apigateway/__init__.py +7 -3
- aws_cdk/aws_appconfig/__init__.py +108 -19
- aws_cdk/aws_appsync/__init__.py +43 -0
- aws_cdk/aws_autoscaling/__init__.py +37 -14
- aws_cdk/aws_cassandra/__init__.py +810 -4
- aws_cdk/aws_cloudfront/__init__.py +35 -37
- aws_cdk/aws_cloudfront/experimental/__init__.py +21 -0
- aws_cdk/aws_codebuild/__init__.py +43 -3
- aws_cdk/aws_codecommit/__init__.py +1 -0
- aws_cdk/aws_codepipeline/__init__.py +7 -3
- aws_cdk/aws_codepipeline_actions/__init__.py +11 -1
- aws_cdk/aws_codestarnotifications/__init__.py +24 -15
- aws_cdk/aws_cognito/__init__.py +180 -116
- aws_cdk/aws_datasync/__init__.py +8 -4
- aws_cdk/aws_dynamodb/__init__.py +80 -11
- aws_cdk/aws_ec2/__init__.py +207 -45
- aws_cdk/aws_ecs/__init__.py +171 -78
- aws_cdk/aws_ecs_patterns/__init__.py +24 -0
- aws_cdk/aws_efs/__init__.py +64 -8
- aws_cdk/aws_eks/__init__.py +52 -41
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +12 -9
- aws_cdk/aws_fis/__init__.py +32 -12
- aws_cdk/aws_fsx/__init__.py +61 -43
- aws_cdk/aws_glue/__init__.py +449 -0
- aws_cdk/aws_guardduty/__init__.py +0 -8
- aws_cdk/aws_iam/__init__.py +3 -3
- aws_cdk/aws_inspectorv2/__init__.py +989 -0
- aws_cdk/aws_internetmonitor/__init__.py +10 -12
- aws_cdk/aws_iot/__init__.py +112 -0
- aws_cdk/aws_iotwireless/__init__.py +32 -19
- aws_cdk/aws_lambda/__init__.py +129 -32
- aws_cdk/aws_lambda_event_sources/__init__.py +95 -4
- aws_cdk/aws_lambda_nodejs/__init__.py +21 -0
- aws_cdk/aws_location/__init__.py +8 -2
- aws_cdk/aws_logs/__init__.py +7 -3
- aws_cdk/aws_networkmanager/__init__.py +1 -1
- aws_cdk/aws_opensearchserverless/__init__.py +4 -4
- aws_cdk/aws_osis/__init__.py +13 -13
- aws_cdk/aws_personalize/__init__.py +1 -1
- aws_cdk/aws_pinpoint/__init__.py +5 -5
- aws_cdk/aws_pipes/__init__.py +7 -10
- aws_cdk/aws_rds/__init__.py +449 -8
- aws_cdk/aws_redshiftserverless/__init__.py +282 -0
- aws_cdk/aws_rolesanywhere/__init__.py +53 -41
- aws_cdk/aws_route53/__init__.py +282 -0
- aws_cdk/aws_s3/__init__.py +11 -6
- aws_cdk/aws_sagemaker/__init__.py +1398 -39
- aws_cdk/aws_sns/__init__.py +56 -13
- aws_cdk/aws_sqs/__init__.py +13 -10
- aws_cdk/aws_stepfunctions/__init__.py +3612 -1395
- aws_cdk/aws_stepfunctions_tasks/__init__.py +267 -181
- aws_cdk/aws_transfer/__init__.py +1 -1
- aws_cdk/aws_verifiedpermissions/__init__.py +55 -55
- aws_cdk/aws_workspacesweb/__init__.py +6 -3
- aws_cdk/cx_api/__init__.py +17 -0
- aws_cdk/triggers/__init__.py +21 -0
- {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/RECORD +68 -69
- aws_cdk/aws_ssmguiconnect/__init__.py +0 -540
- {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.125.0.dist-info → aws_cdk_lib-2.127.0.dist-info}/top_level.txt +0 -0
|
@@ -537,7 +537,7 @@ class CfnMonitor(
|
|
|
537
537
|
) -> None:
|
|
538
538
|
'''Publish internet measurements to an Amazon S3 bucket in addition to CloudWatch Logs.
|
|
539
539
|
|
|
540
|
-
:param s3_config: The configuration for publishing
|
|
540
|
+
:param s3_config: The configuration information for publishing Internet Monitor internet measurements to Amazon S3. The configuration includes the bucket name and (optionally) prefix for the S3 bucket to store the measurements, and the delivery status. The delivery status is ``ENABLED`` or ``DISABLED`` , depending on whether you choose to deliver internet measurements to S3 logs.
|
|
541
541
|
|
|
542
542
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-internetmonitor-monitor-internetmeasurementslogdelivery.html
|
|
543
543
|
:exampleMetadata: fixture=_generated
|
|
@@ -567,7 +567,9 @@ class CfnMonitor(
|
|
|
567
567
|
def s3_config(
|
|
568
568
|
self,
|
|
569
569
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMonitor.S3ConfigProperty"]]:
|
|
570
|
-
'''The configuration for publishing
|
|
570
|
+
'''The configuration information for publishing Internet Monitor internet measurements to Amazon S3.
|
|
571
|
+
|
|
572
|
+
The configuration includes the bucket name and (optionally) prefix for the S3 bucket to store the measurements, and the delivery status. The delivery status is ``ENABLED`` or ``DISABLED`` , depending on whether you choose to deliver internet measurements to S3 logs.
|
|
571
573
|
|
|
572
574
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-internetmonitor-monitor-internetmeasurementslogdelivery.html#cfn-internetmonitor-monitor-internetmeasurementslogdelivery-s3config
|
|
573
575
|
'''
|
|
@@ -703,13 +705,11 @@ class CfnMonitor(
|
|
|
703
705
|
) -> None:
|
|
704
706
|
'''The configuration for publishing Amazon CloudWatch Internet Monitor internet measurements to Amazon S3.
|
|
705
707
|
|
|
706
|
-
The configuration includes the bucket name and (optionally)
|
|
708
|
+
The configuration includes the bucket name and (optionally) prefix for the S3 bucket to store the measurements, and the delivery status. The delivery status is ``ENABLED`` or ``DISABLED`` , depending on whether you choose to deliver internet measurements to S3 logs.
|
|
707
709
|
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
:param
|
|
711
|
-
:param bucket_prefix: An optional Amazon S3 bucket prefix for internet measurements publishing.
|
|
712
|
-
:param log_delivery_status: The status of publishing Internet Monitor internet measurements to an Amazon S3 bucket. The delivery status is ``ENABLED`` if you choose to deliver internet measurements to an S3 bucket, and ``DISABLED`` otherwise.
|
|
710
|
+
:param bucket_name: The Amazon S3 bucket name.
|
|
711
|
+
:param bucket_prefix: The Amazon S3 bucket prefix.
|
|
712
|
+
:param log_delivery_status: The status of publishing Internet Monitor internet measurements to an Amazon S3 bucket.
|
|
713
713
|
|
|
714
714
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-internetmonitor-monitor-s3config.html
|
|
715
715
|
:exampleMetadata: fixture=_generated
|
|
@@ -741,7 +741,7 @@ class CfnMonitor(
|
|
|
741
741
|
|
|
742
742
|
@builtins.property
|
|
743
743
|
def bucket_name(self) -> typing.Optional[builtins.str]:
|
|
744
|
-
'''The Amazon S3 bucket name
|
|
744
|
+
'''The Amazon S3 bucket name.
|
|
745
745
|
|
|
746
746
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-internetmonitor-monitor-s3config.html#cfn-internetmonitor-monitor-s3config-bucketname
|
|
747
747
|
'''
|
|
@@ -750,7 +750,7 @@ class CfnMonitor(
|
|
|
750
750
|
|
|
751
751
|
@builtins.property
|
|
752
752
|
def bucket_prefix(self) -> typing.Optional[builtins.str]:
|
|
753
|
-
'''
|
|
753
|
+
'''The Amazon S3 bucket prefix.
|
|
754
754
|
|
|
755
755
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-internetmonitor-monitor-s3config.html#cfn-internetmonitor-monitor-s3config-bucketprefix
|
|
756
756
|
'''
|
|
@@ -761,8 +761,6 @@ class CfnMonitor(
|
|
|
761
761
|
def log_delivery_status(self) -> typing.Optional[builtins.str]:
|
|
762
762
|
'''The status of publishing Internet Monitor internet measurements to an Amazon S3 bucket.
|
|
763
763
|
|
|
764
|
-
The delivery status is ``ENABLED`` if you choose to deliver internet measurements to an S3 bucket, and ``DISABLED`` otherwise.
|
|
765
|
-
|
|
766
764
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-internetmonitor-monitor-s3config.html#cfn-internetmonitor-monitor-s3config-logdeliverystatus
|
|
767
765
|
'''
|
|
768
766
|
result = self._values.get("log_delivery_status")
|
aws_cdk/aws_iot/__init__.py
CHANGED
|
@@ -3545,6 +3545,9 @@ class CfnDomainConfiguration(
|
|
|
3545
3545
|
domain_configuration_status="domainConfigurationStatus",
|
|
3546
3546
|
domain_name="domainName",
|
|
3547
3547
|
server_certificate_arns=["serverCertificateArns"],
|
|
3548
|
+
server_certificate_config=iot.CfnDomainConfiguration.ServerCertificateConfigProperty(
|
|
3549
|
+
enable_ocsp_check=False
|
|
3550
|
+
),
|
|
3548
3551
|
service_type="serviceType",
|
|
3549
3552
|
tags=[CfnTag(
|
|
3550
3553
|
key="key",
|
|
@@ -3567,6 +3570,7 @@ class CfnDomainConfiguration(
|
|
|
3567
3570
|
domain_configuration_status: typing.Optional[builtins.str] = None,
|
|
3568
3571
|
domain_name: typing.Optional[builtins.str] = None,
|
|
3569
3572
|
server_certificate_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
3573
|
+
server_certificate_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomainConfiguration.ServerCertificateConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3570
3574
|
service_type: typing.Optional[builtins.str] = None,
|
|
3571
3575
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3572
3576
|
tls_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDomainConfiguration.TlsConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -3580,6 +3584,7 @@ class CfnDomainConfiguration(
|
|
|
3580
3584
|
:param domain_configuration_status: The status to which the domain configuration should be updated. Valid values: ``ENABLED`` | ``DISABLED``
|
|
3581
3585
|
:param domain_name: The name of the domain.
|
|
3582
3586
|
:param server_certificate_arns: The ARNs of the certificates that AWS IoT passes to the device during the TLS handshake. Currently you can specify only one certificate ARN. This value is not required for AWS -managed domains.
|
|
3587
|
+
:param server_certificate_config:
|
|
3583
3588
|
:param service_type: The type of service delivered by the endpoint. .. epigraph:: AWS IoT Core currently supports only the ``DATA`` service type.
|
|
3584
3589
|
:param tags: Metadata which can be used to manage the domain configuration. .. epigraph:: For URI Request parameters use format: ...key1=value1&key2=value2... For the CLI command-line parameter use format: &&tags "key1=value1&key2=value2..." For the cli-input-json file use format: "tags": "key1=value1&key2=value2..."
|
|
3585
3590
|
:param tls_config: An object that specifies the TLS configuration for a domain.
|
|
@@ -3595,6 +3600,7 @@ class CfnDomainConfiguration(
|
|
|
3595
3600
|
domain_configuration_status=domain_configuration_status,
|
|
3596
3601
|
domain_name=domain_name,
|
|
3597
3602
|
server_certificate_arns=server_certificate_arns,
|
|
3603
|
+
server_certificate_config=server_certificate_config,
|
|
3598
3604
|
service_type=service_type,
|
|
3599
3605
|
tags=tags,
|
|
3600
3606
|
tls_config=tls_config,
|
|
@@ -3746,6 +3752,23 @@ class CfnDomainConfiguration(
|
|
|
3746
3752
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3747
3753
|
jsii.set(self, "serverCertificateArns", value)
|
|
3748
3754
|
|
|
3755
|
+
@builtins.property
|
|
3756
|
+
@jsii.member(jsii_name="serverCertificateConfig")
|
|
3757
|
+
def server_certificate_config(
|
|
3758
|
+
self,
|
|
3759
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDomainConfiguration.ServerCertificateConfigProperty"]]:
|
|
3760
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDomainConfiguration.ServerCertificateConfigProperty"]], jsii.get(self, "serverCertificateConfig"))
|
|
3761
|
+
|
|
3762
|
+
@server_certificate_config.setter
|
|
3763
|
+
def server_certificate_config(
|
|
3764
|
+
self,
|
|
3765
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDomainConfiguration.ServerCertificateConfigProperty"]],
|
|
3766
|
+
) -> None:
|
|
3767
|
+
if __debug__:
|
|
3768
|
+
type_hints = typing.get_type_hints(_typecheckingstub__e961d38604909272268f83e6241e14f8644edf3b972e95582c0126a54e77a342)
|
|
3769
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3770
|
+
jsii.set(self, "serverCertificateConfig", value)
|
|
3771
|
+
|
|
3749
3772
|
@builtins.property
|
|
3750
3773
|
@jsii.member(jsii_name="serviceType")
|
|
3751
3774
|
def service_type(self) -> typing.Optional[builtins.str]:
|
|
@@ -3878,6 +3901,61 @@ class CfnDomainConfiguration(
|
|
|
3878
3901
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
3879
3902
|
)
|
|
3880
3903
|
|
|
3904
|
+
@jsii.data_type(
|
|
3905
|
+
jsii_type="aws-cdk-lib.aws_iot.CfnDomainConfiguration.ServerCertificateConfigProperty",
|
|
3906
|
+
jsii_struct_bases=[],
|
|
3907
|
+
name_mapping={"enable_ocsp_check": "enableOcspCheck"},
|
|
3908
|
+
)
|
|
3909
|
+
class ServerCertificateConfigProperty:
|
|
3910
|
+
def __init__(
|
|
3911
|
+
self,
|
|
3912
|
+
*,
|
|
3913
|
+
enable_ocsp_check: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
3914
|
+
) -> None:
|
|
3915
|
+
'''
|
|
3916
|
+
:param enable_ocsp_check:
|
|
3917
|
+
|
|
3918
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-domainconfiguration-servercertificateconfig.html
|
|
3919
|
+
:exampleMetadata: fixture=_generated
|
|
3920
|
+
|
|
3921
|
+
Example::
|
|
3922
|
+
|
|
3923
|
+
# The code below shows an example of how to instantiate this type.
|
|
3924
|
+
# The values are placeholders you should change.
|
|
3925
|
+
from aws_cdk import aws_iot as iot
|
|
3926
|
+
|
|
3927
|
+
server_certificate_config_property = iot.CfnDomainConfiguration.ServerCertificateConfigProperty(
|
|
3928
|
+
enable_ocsp_check=False
|
|
3929
|
+
)
|
|
3930
|
+
'''
|
|
3931
|
+
if __debug__:
|
|
3932
|
+
type_hints = typing.get_type_hints(_typecheckingstub__c9e3f7a32bb1f35b034ddd61e39c252e74632db889671f02c46280c93d0573a2)
|
|
3933
|
+
check_type(argname="argument enable_ocsp_check", value=enable_ocsp_check, expected_type=type_hints["enable_ocsp_check"])
|
|
3934
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
3935
|
+
if enable_ocsp_check is not None:
|
|
3936
|
+
self._values["enable_ocsp_check"] = enable_ocsp_check
|
|
3937
|
+
|
|
3938
|
+
@builtins.property
|
|
3939
|
+
def enable_ocsp_check(
|
|
3940
|
+
self,
|
|
3941
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
3942
|
+
'''
|
|
3943
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-domainconfiguration-servercertificateconfig.html#cfn-iot-domainconfiguration-servercertificateconfig-enableocspcheck
|
|
3944
|
+
'''
|
|
3945
|
+
result = self._values.get("enable_ocsp_check")
|
|
3946
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
3947
|
+
|
|
3948
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
3949
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
3950
|
+
|
|
3951
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
3952
|
+
return not (rhs == self)
|
|
3953
|
+
|
|
3954
|
+
def __repr__(self) -> str:
|
|
3955
|
+
return "ServerCertificateConfigProperty(%s)" % ", ".join(
|
|
3956
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
3957
|
+
)
|
|
3958
|
+
|
|
3881
3959
|
@jsii.data_type(
|
|
3882
3960
|
jsii_type="aws-cdk-lib.aws_iot.CfnDomainConfiguration.ServerCertificateSummaryProperty",
|
|
3883
3961
|
jsii_struct_bases=[],
|
|
@@ -4034,6 +4112,7 @@ class CfnDomainConfiguration(
|
|
|
4034
4112
|
"domain_configuration_status": "domainConfigurationStatus",
|
|
4035
4113
|
"domain_name": "domainName",
|
|
4036
4114
|
"server_certificate_arns": "serverCertificateArns",
|
|
4115
|
+
"server_certificate_config": "serverCertificateConfig",
|
|
4037
4116
|
"service_type": "serviceType",
|
|
4038
4117
|
"tags": "tags",
|
|
4039
4118
|
"tls_config": "tlsConfig",
|
|
@@ -4049,6 +4128,7 @@ class CfnDomainConfigurationProps:
|
|
|
4049
4128
|
domain_configuration_status: typing.Optional[builtins.str] = None,
|
|
4050
4129
|
domain_name: typing.Optional[builtins.str] = None,
|
|
4051
4130
|
server_certificate_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
4131
|
+
server_certificate_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomainConfiguration.ServerCertificateConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4052
4132
|
service_type: typing.Optional[builtins.str] = None,
|
|
4053
4133
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4054
4134
|
tls_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomainConfiguration.TlsConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -4061,6 +4141,7 @@ class CfnDomainConfigurationProps:
|
|
|
4061
4141
|
:param domain_configuration_status: The status to which the domain configuration should be updated. Valid values: ``ENABLED`` | ``DISABLED``
|
|
4062
4142
|
:param domain_name: The name of the domain.
|
|
4063
4143
|
:param server_certificate_arns: The ARNs of the certificates that AWS IoT passes to the device during the TLS handshake. Currently you can specify only one certificate ARN. This value is not required for AWS -managed domains.
|
|
4144
|
+
:param server_certificate_config:
|
|
4064
4145
|
:param service_type: The type of service delivered by the endpoint. .. epigraph:: AWS IoT Core currently supports only the ``DATA`` service type.
|
|
4065
4146
|
:param tags: Metadata which can be used to manage the domain configuration. .. epigraph:: For URI Request parameters use format: ...key1=value1&key2=value2... For the CLI command-line parameter use format: &&tags "key1=value1&key2=value2..." For the cli-input-json file use format: "tags": "key1=value1&key2=value2..."
|
|
4066
4147
|
:param tls_config: An object that specifies the TLS configuration for a domain.
|
|
@@ -4084,6 +4165,9 @@ class CfnDomainConfigurationProps:
|
|
|
4084
4165
|
domain_configuration_status="domainConfigurationStatus",
|
|
4085
4166
|
domain_name="domainName",
|
|
4086
4167
|
server_certificate_arns=["serverCertificateArns"],
|
|
4168
|
+
server_certificate_config=iot.CfnDomainConfiguration.ServerCertificateConfigProperty(
|
|
4169
|
+
enable_ocsp_check=False
|
|
4170
|
+
),
|
|
4087
4171
|
service_type="serviceType",
|
|
4088
4172
|
tags=[CfnTag(
|
|
4089
4173
|
key="key",
|
|
@@ -4102,6 +4186,7 @@ class CfnDomainConfigurationProps:
|
|
|
4102
4186
|
check_type(argname="argument domain_configuration_status", value=domain_configuration_status, expected_type=type_hints["domain_configuration_status"])
|
|
4103
4187
|
check_type(argname="argument domain_name", value=domain_name, expected_type=type_hints["domain_name"])
|
|
4104
4188
|
check_type(argname="argument server_certificate_arns", value=server_certificate_arns, expected_type=type_hints["server_certificate_arns"])
|
|
4189
|
+
check_type(argname="argument server_certificate_config", value=server_certificate_config, expected_type=type_hints["server_certificate_config"])
|
|
4105
4190
|
check_type(argname="argument service_type", value=service_type, expected_type=type_hints["service_type"])
|
|
4106
4191
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
4107
4192
|
check_type(argname="argument tls_config", value=tls_config, expected_type=type_hints["tls_config"])
|
|
@@ -4117,6 +4202,8 @@ class CfnDomainConfigurationProps:
|
|
|
4117
4202
|
self._values["domain_name"] = domain_name
|
|
4118
4203
|
if server_certificate_arns is not None:
|
|
4119
4204
|
self._values["server_certificate_arns"] = server_certificate_arns
|
|
4205
|
+
if server_certificate_config is not None:
|
|
4206
|
+
self._values["server_certificate_config"] = server_certificate_config
|
|
4120
4207
|
if service_type is not None:
|
|
4121
4208
|
self._values["service_type"] = service_type
|
|
4122
4209
|
if tags is not None:
|
|
@@ -4179,6 +4266,16 @@ class CfnDomainConfigurationProps:
|
|
|
4179
4266
|
result = self._values.get("server_certificate_arns")
|
|
4180
4267
|
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
4181
4268
|
|
|
4269
|
+
@builtins.property
|
|
4270
|
+
def server_certificate_config(
|
|
4271
|
+
self,
|
|
4272
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDomainConfiguration.ServerCertificateConfigProperty]]:
|
|
4273
|
+
'''
|
|
4274
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-domainconfiguration.html#cfn-iot-domainconfiguration-servercertificateconfig
|
|
4275
|
+
'''
|
|
4276
|
+
result = self._values.get("server_certificate_config")
|
|
4277
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDomainConfiguration.ServerCertificateConfigProperty]], result)
|
|
4278
|
+
|
|
4182
4279
|
@builtins.property
|
|
4183
4280
|
def service_type(self) -> typing.Optional[builtins.str]:
|
|
4184
4281
|
'''The type of service delivered by the endpoint.
|
|
@@ -19831,6 +19928,7 @@ def _typecheckingstub__58bae527b5502ff5c7ab6b93d68302d8e2cbc6a5632a832f2c6bf436e
|
|
|
19831
19928
|
domain_configuration_status: typing.Optional[builtins.str] = None,
|
|
19832
19929
|
domain_name: typing.Optional[builtins.str] = None,
|
|
19833
19930
|
server_certificate_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
19931
|
+
server_certificate_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomainConfiguration.ServerCertificateConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
19834
19932
|
service_type: typing.Optional[builtins.str] = None,
|
|
19835
19933
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
19836
19934
|
tls_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomainConfiguration.TlsConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -19881,6 +19979,12 @@ def _typecheckingstub__4ef4b6ed6999d8d891daa0bf8e467d208eea91e61d9cdcaced2d77c5c
|
|
|
19881
19979
|
"""Type checking stubs"""
|
|
19882
19980
|
pass
|
|
19883
19981
|
|
|
19982
|
+
def _typecheckingstub__e961d38604909272268f83e6241e14f8644edf3b972e95582c0126a54e77a342(
|
|
19983
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDomainConfiguration.ServerCertificateConfigProperty]],
|
|
19984
|
+
) -> None:
|
|
19985
|
+
"""Type checking stubs"""
|
|
19986
|
+
pass
|
|
19987
|
+
|
|
19884
19988
|
def _typecheckingstub__3f604d76719368707bcb524945346fee877b63e531c6c9f797711e29edad34ef(
|
|
19885
19989
|
value: typing.Optional[builtins.str],
|
|
19886
19990
|
) -> None:
|
|
@@ -19913,6 +20017,13 @@ def _typecheckingstub__a0137c885f6ee06843b08b821c9785482f4c15e69984bf435ea564af6
|
|
|
19913
20017
|
"""Type checking stubs"""
|
|
19914
20018
|
pass
|
|
19915
20019
|
|
|
20020
|
+
def _typecheckingstub__c9e3f7a32bb1f35b034ddd61e39c252e74632db889671f02c46280c93d0573a2(
|
|
20021
|
+
*,
|
|
20022
|
+
enable_ocsp_check: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
20023
|
+
) -> None:
|
|
20024
|
+
"""Type checking stubs"""
|
|
20025
|
+
pass
|
|
20026
|
+
|
|
19916
20027
|
def _typecheckingstub__a5a7581965c46613d884dede598616df654c4e0431faf31d853441c77e54a23c(
|
|
19917
20028
|
*,
|
|
19918
20029
|
server_certificate_arn: typing.Optional[builtins.str] = None,
|
|
@@ -19936,6 +20047,7 @@ def _typecheckingstub__af698e1a1ead0a2d7000837dd712796a150772065ad59ab9baf10a759
|
|
|
19936
20047
|
domain_configuration_status: typing.Optional[builtins.str] = None,
|
|
19937
20048
|
domain_name: typing.Optional[builtins.str] = None,
|
|
19938
20049
|
server_certificate_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
20050
|
+
server_certificate_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomainConfiguration.ServerCertificateConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
19939
20051
|
service_type: typing.Optional[builtins.str] = None,
|
|
19940
20052
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
19941
20053
|
tls_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDomainConfiguration.TlsConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -2661,7 +2661,7 @@ class CfnPartnerAccount(
|
|
|
2661
2661
|
:param partner_account_id: The ID of the partner account to update.
|
|
2662
2662
|
:param partner_type: The partner type.
|
|
2663
2663
|
:param sidewalk: The Sidewalk account credentials.
|
|
2664
|
-
:param sidewalk_response:
|
|
2664
|
+
:param sidewalk_response: Information about a Sidewalk account.
|
|
2665
2665
|
:param sidewalk_update: Sidewalk update.
|
|
2666
2666
|
:param tags: The tags are an array of key-value pairs to attach to the specified resource. Tags can have a minimum of 0 and a maximum of 50 items.
|
|
2667
2667
|
'''
|
|
@@ -2807,6 +2807,7 @@ class CfnPartnerAccount(
|
|
|
2807
2807
|
def sidewalk_response(
|
|
2808
2808
|
self,
|
|
2809
2809
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPartnerAccount.SidewalkAccountInfoWithFingerprintProperty"]]:
|
|
2810
|
+
'''Information about a Sidewalk account.'''
|
|
2810
2811
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPartnerAccount.SidewalkAccountInfoWithFingerprintProperty"]], jsii.get(self, "sidewalkResponse"))
|
|
2811
2812
|
|
|
2812
2813
|
@sidewalk_response.setter
|
|
@@ -3080,7 +3081,7 @@ class CfnPartnerAccountProps:
|
|
|
3080
3081
|
:param partner_account_id: The ID of the partner account to update.
|
|
3081
3082
|
:param partner_type: The partner type.
|
|
3082
3083
|
:param sidewalk: The Sidewalk account credentials.
|
|
3083
|
-
:param sidewalk_response:
|
|
3084
|
+
:param sidewalk_response: Information about a Sidewalk account.
|
|
3084
3085
|
:param sidewalk_update: Sidewalk update.
|
|
3085
3086
|
:param tags: The tags are an array of key-value pairs to attach to the specified resource. Tags can have a minimum of 0 and a maximum of 50 items.
|
|
3086
3087
|
|
|
@@ -3183,7 +3184,8 @@ class CfnPartnerAccountProps:
|
|
|
3183
3184
|
def sidewalk_response(
|
|
3184
3185
|
self,
|
|
3185
3186
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnPartnerAccount.SidewalkAccountInfoWithFingerprintProperty]]:
|
|
3186
|
-
'''
|
|
3187
|
+
'''Information about a Sidewalk account.
|
|
3188
|
+
|
|
3187
3189
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-partneraccount.html#cfn-iotwireless-partneraccount-sidewalkresponse
|
|
3188
3190
|
'''
|
|
3189
3191
|
result = self._values.get("sidewalk_response")
|
|
@@ -5163,9 +5165,10 @@ class CfnWirelessDevice(
|
|
|
5163
5165
|
dev_addr: builtins.str,
|
|
5164
5166
|
session_keys: typing.Union[_IResolvable_da3f097b, typing.Union["CfnWirelessDevice.SessionKeysAbpV10xProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
5165
5167
|
) -> None:
|
|
5166
|
-
'''
|
|
5167
|
-
|
|
5168
|
-
:param
|
|
5168
|
+
'''ABP device object for LoRaWAN specification v1.0.x.
|
|
5169
|
+
|
|
5170
|
+
:param dev_addr: The DevAddr value.
|
|
5171
|
+
:param session_keys: Session keys for ABP v1.0.x.
|
|
5169
5172
|
|
|
5170
5173
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotwireless-wirelessdevice-abpv10x.html
|
|
5171
5174
|
:exampleMetadata: fixture=_generated
|
|
@@ -5195,7 +5198,8 @@ class CfnWirelessDevice(
|
|
|
5195
5198
|
|
|
5196
5199
|
@builtins.property
|
|
5197
5200
|
def dev_addr(self) -> builtins.str:
|
|
5198
|
-
'''
|
|
5201
|
+
'''The DevAddr value.
|
|
5202
|
+
|
|
5199
5203
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotwireless-wirelessdevice-abpv10x.html#cfn-iotwireless-wirelessdevice-abpv10x-devaddr
|
|
5200
5204
|
'''
|
|
5201
5205
|
result = self._values.get("dev_addr")
|
|
@@ -5206,7 +5210,8 @@ class CfnWirelessDevice(
|
|
|
5206
5210
|
def session_keys(
|
|
5207
5211
|
self,
|
|
5208
5212
|
) -> typing.Union[_IResolvable_da3f097b, "CfnWirelessDevice.SessionKeysAbpV10xProperty"]:
|
|
5209
|
-
'''
|
|
5213
|
+
'''Session keys for ABP v1.0.x.
|
|
5214
|
+
|
|
5210
5215
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotwireless-wirelessdevice-abpv10x.html#cfn-iotwireless-wirelessdevice-abpv10x-sessionkeys
|
|
5211
5216
|
'''
|
|
5212
5217
|
result = self._values.get("session_keys")
|
|
@@ -5329,7 +5334,7 @@ class CfnWirelessDevice(
|
|
|
5329
5334
|
) -> None:
|
|
5330
5335
|
'''LoRaWAN object for create functions.
|
|
5331
5336
|
|
|
5332
|
-
:param abp_v10_x:
|
|
5337
|
+
:param abp_v10_x: ABP device object for LoRaWAN specification v1.0.x.
|
|
5333
5338
|
:param abp_v11: ABP device object for create APIs for v1.1.
|
|
5334
5339
|
:param dev_eui: The DevEUI value.
|
|
5335
5340
|
:param device_profile_id: The ID of the device profile for the new wireless device.
|
|
@@ -5406,7 +5411,8 @@ class CfnWirelessDevice(
|
|
|
5406
5411
|
def abp_v10_x(
|
|
5407
5412
|
self,
|
|
5408
5413
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnWirelessDevice.AbpV10xProperty"]]:
|
|
5409
|
-
'''
|
|
5414
|
+
'''ABP device object for LoRaWAN specification v1.0.x.
|
|
5415
|
+
|
|
5410
5416
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotwireless-wirelessdevice-lorawandevice.html#cfn-iotwireless-wirelessdevice-lorawandevice-abpv10x
|
|
5411
5417
|
'''
|
|
5412
5418
|
result = self._values.get("abp_v10_x")
|
|
@@ -5491,8 +5497,8 @@ class CfnWirelessDevice(
|
|
|
5491
5497
|
class OtaaV10xProperty:
|
|
5492
5498
|
def __init__(self, *, app_eui: builtins.str, app_key: builtins.str) -> None:
|
|
5493
5499
|
'''
|
|
5494
|
-
:param app_eui:
|
|
5495
|
-
:param app_key:
|
|
5500
|
+
:param app_eui: The AppEUI value. You specify this value when using LoRaWAN versions v1.0.2 or v1.0.3.
|
|
5501
|
+
:param app_key: The AppKey value.
|
|
5496
5502
|
|
|
5497
5503
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotwireless-wirelessdevice-otaav10x.html
|
|
5498
5504
|
:exampleMetadata: fixture=_generated
|
|
@@ -5519,7 +5525,10 @@ class CfnWirelessDevice(
|
|
|
5519
5525
|
|
|
5520
5526
|
@builtins.property
|
|
5521
5527
|
def app_eui(self) -> builtins.str:
|
|
5522
|
-
'''
|
|
5528
|
+
'''The AppEUI value.
|
|
5529
|
+
|
|
5530
|
+
You specify this value when using LoRaWAN versions v1.0.2 or v1.0.3.
|
|
5531
|
+
|
|
5523
5532
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotwireless-wirelessdevice-otaav10x.html#cfn-iotwireless-wirelessdevice-otaav10x-appeui
|
|
5524
5533
|
'''
|
|
5525
5534
|
result = self._values.get("app_eui")
|
|
@@ -5528,7 +5537,8 @@ class CfnWirelessDevice(
|
|
|
5528
5537
|
|
|
5529
5538
|
@builtins.property
|
|
5530
5539
|
def app_key(self) -> builtins.str:
|
|
5531
|
-
'''
|
|
5540
|
+
'''The AppKey value.
|
|
5541
|
+
|
|
5532
5542
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotwireless-wirelessdevice-otaav10x.html#cfn-iotwireless-wirelessdevice-otaav10x-appkey
|
|
5533
5543
|
'''
|
|
5534
5544
|
result = self._values.get("app_key")
|
|
@@ -5643,9 +5653,10 @@ class CfnWirelessDevice(
|
|
|
5643
5653
|
)
|
|
5644
5654
|
class SessionKeysAbpV10xProperty:
|
|
5645
5655
|
def __init__(self, *, app_s_key: builtins.str, nwk_s_key: builtins.str) -> None:
|
|
5646
|
-
'''
|
|
5647
|
-
|
|
5648
|
-
:param
|
|
5656
|
+
'''Session keys for ABP v1.0.x.
|
|
5657
|
+
|
|
5658
|
+
:param app_s_key: The AppSKey value.
|
|
5659
|
+
:param nwk_s_key: The NwkKey value.
|
|
5649
5660
|
|
|
5650
5661
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotwireless-wirelessdevice-sessionkeysabpv10x.html
|
|
5651
5662
|
:exampleMetadata: fixture=_generated
|
|
@@ -5672,7 +5683,8 @@ class CfnWirelessDevice(
|
|
|
5672
5683
|
|
|
5673
5684
|
@builtins.property
|
|
5674
5685
|
def app_s_key(self) -> builtins.str:
|
|
5675
|
-
'''
|
|
5686
|
+
'''The AppSKey value.
|
|
5687
|
+
|
|
5676
5688
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotwireless-wirelessdevice-sessionkeysabpv10x.html#cfn-iotwireless-wirelessdevice-sessionkeysabpv10x-appskey
|
|
5677
5689
|
'''
|
|
5678
5690
|
result = self._values.get("app_s_key")
|
|
@@ -5681,7 +5693,8 @@ class CfnWirelessDevice(
|
|
|
5681
5693
|
|
|
5682
5694
|
@builtins.property
|
|
5683
5695
|
def nwk_s_key(self) -> builtins.str:
|
|
5684
|
-
'''
|
|
5696
|
+
'''The NwkKey value.
|
|
5697
|
+
|
|
5685
5698
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotwireless-wirelessdevice-sessionkeysabpv10x.html#cfn-iotwireless-wirelessdevice-sessionkeysabpv10x-nwkskey
|
|
5686
5699
|
'''
|
|
5687
5700
|
result = self._values.get("nwk_s_key")
|