aws-cdk-lib 2.172.0__py3-none-any.whl → 2.173.1__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 +57 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.172.0.jsii.tgz → aws-cdk-lib@2.173.1.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +40 -40
- aws_cdk/aws_apigateway/__init__.py +111 -64
- aws_cdk/aws_applicationautoscaling/__init__.py +141 -66
- aws_cdk/aws_appsync/__init__.py +4 -3
- aws_cdk/aws_autoscaling/__init__.py +15 -6
- aws_cdk/aws_bedrock/__init__.py +32 -44
- aws_cdk/aws_chatbot/__init__.py +72 -46
- aws_cdk/aws_cleanrooms/__init__.py +4 -6
- aws_cdk/aws_cloudfront/__init__.py +4 -2
- aws_cdk/aws_cloudtrail/__init__.py +104 -68
- aws_cdk/aws_cloudwatch/__init__.py +51 -14
- aws_cdk/aws_codebuild/__init__.py +39 -0
- aws_cdk/aws_codepipeline/__init__.py +4 -4
- aws_cdk/aws_cognito/__init__.py +221 -53
- aws_cdk/aws_config/__init__.py +13 -10
- aws_cdk/aws_connect/__init__.py +25 -23
- aws_cdk/aws_connectcampaignsv2/__init__.py +187 -176
- aws_cdk/aws_docdb/__init__.py +128 -0
- aws_cdk/aws_dynamodb/__init__.py +256 -0
- aws_cdk/aws_ec2/__init__.py +130 -48
- aws_cdk/aws_ecs/__init__.py +25 -13
- aws_cdk/aws_eks/__init__.py +86 -24
- aws_cdk/aws_elasticache/__init__.py +22 -22
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +138 -128
- aws_cdk/aws_events/__init__.py +39 -26
- aws_cdk/aws_fsx/__init__.py +134 -10
- aws_cdk/aws_imagebuilder/__init__.py +8 -8
- aws_cdk/aws_invoicing/__init__.py +651 -0
- aws_cdk/aws_iot/__init__.py +28 -22
- aws_cdk/aws_iotfleetwise/__init__.py +473 -332
- aws_cdk/aws_iotsitewise/__init__.py +6 -4
- aws_cdk/aws_ivs/__init__.py +43 -31
- aws_cdk/aws_kendra/__init__.py +4 -0
- aws_cdk/aws_lakeformation/__init__.py +2 -1
- aws_cdk/aws_lambda/__init__.py +258 -156
- aws_cdk/aws_logs/__init__.py +532 -0
- aws_cdk/aws_m2/__init__.py +15 -15
- aws_cdk/aws_mediaconnect/__init__.py +24 -14
- aws_cdk/aws_medialive/__init__.py +2359 -5
- aws_cdk/aws_mediapackage/__init__.py +3 -9
- aws_cdk/aws_mediapackagev2/__init__.py +19 -17
- aws_cdk/aws_memorydb/__init__.py +664 -4
- aws_cdk/aws_qbusiness/__init__.py +2018 -66
- aws_cdk/aws_rds/__init__.py +30 -0
- aws_cdk/aws_resourcegroups/__init__.py +26 -17
- aws_cdk/aws_route53/__init__.py +1177 -10
- aws_cdk/aws_route53_targets/__init__.py +224 -100
- aws_cdk/aws_route53resolver/__init__.py +4 -2
- aws_cdk/aws_s3/__init__.py +4 -4
- aws_cdk/aws_s3express/__init__.py +30 -19
- aws_cdk/aws_sagemaker/__init__.py +783 -9
- aws_cdk/aws_secretsmanager/__init__.py +20 -6
- aws_cdk/aws_securityhub/__init__.py +64 -32
- aws_cdk/aws_servicediscovery/__init__.py +43 -0
- aws_cdk/aws_ses/__init__.py +109 -0
- aws_cdk/aws_stepfunctions_tasks/__init__.py +190 -35
- aws_cdk/aws_synthetics/__init__.py +7 -5
- aws_cdk/aws_vpclattice/__init__.py +1479 -122
- aws_cdk/aws_wisdom/__init__.py +2698 -232
- aws_cdk/aws_workspacesweb/__init__.py +118 -61
- {aws_cdk_lib-2.172.0.dist-info → aws_cdk_lib-2.173.1.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.172.0.dist-info → aws_cdk_lib-2.173.1.dist-info}/RECORD +69 -68
- {aws_cdk_lib-2.172.0.dist-info → aws_cdk_lib-2.173.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.172.0.dist-info → aws_cdk_lib-2.173.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.172.0.dist-info → aws_cdk_lib-2.173.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.172.0.dist-info → aws_cdk_lib-2.173.1.dist-info}/top_level.txt +0 -0
aws_cdk/__init__.py
CHANGED
|
@@ -13332,6 +13332,48 @@ class Environment:
|
|
|
13332
13332
|
)
|
|
13333
13333
|
|
|
13334
13334
|
|
|
13335
|
+
class Errors(metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.Errors"):
|
|
13336
|
+
'''Helper to check if an error is a SynthesisErrors.
|
|
13337
|
+
|
|
13338
|
+
:exampleMetadata: fixture=_generated
|
|
13339
|
+
|
|
13340
|
+
Example::
|
|
13341
|
+
|
|
13342
|
+
# The code below shows an example of how to instantiate this type.
|
|
13343
|
+
# The values are placeholders you should change.
|
|
13344
|
+
import aws_cdk as cdk
|
|
13345
|
+
|
|
13346
|
+
errors = cdk.Errors()
|
|
13347
|
+
'''
|
|
13348
|
+
|
|
13349
|
+
def __init__(self) -> None:
|
|
13350
|
+
jsii.create(self.__class__, self, [])
|
|
13351
|
+
|
|
13352
|
+
@jsii.member(jsii_name="isConstructError")
|
|
13353
|
+
@builtins.classmethod
|
|
13354
|
+
def is_construct_error(cls, x: typing.Any) -> builtins.bool:
|
|
13355
|
+
'''Test whether the given errors is a ConstructionError.
|
|
13356
|
+
|
|
13357
|
+
:param x: -
|
|
13358
|
+
'''
|
|
13359
|
+
if __debug__:
|
|
13360
|
+
type_hints = typing.get_type_hints(_typecheckingstub__0c62bc5a6fe032556ae3c32e105ddaad3f4ca89286fd26884af6347d3364c5ae)
|
|
13361
|
+
check_type(argname="argument x", value=x, expected_type=type_hints["x"])
|
|
13362
|
+
return typing.cast(builtins.bool, jsii.sinvoke(cls, "isConstructError", [x]))
|
|
13363
|
+
|
|
13364
|
+
@jsii.member(jsii_name="isValidationError")
|
|
13365
|
+
@builtins.classmethod
|
|
13366
|
+
def is_validation_error(cls, x: typing.Any) -> builtins.bool:
|
|
13367
|
+
'''Test whether the given error is a ValidationError.
|
|
13368
|
+
|
|
13369
|
+
:param x: -
|
|
13370
|
+
'''
|
|
13371
|
+
if __debug__:
|
|
13372
|
+
type_hints = typing.get_type_hints(_typecheckingstub__c9afe20487c547932befb7a2f6567c38793e8d7df55f47046e1cfb408408d733)
|
|
13373
|
+
check_type(argname="argument x", value=x, expected_type=type_hints["x"])
|
|
13374
|
+
return typing.cast(builtins.bool, jsii.sinvoke(cls, "isValidationError", [x]))
|
|
13375
|
+
|
|
13376
|
+
|
|
13335
13377
|
class Expiration(metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.Expiration"):
|
|
13336
13378
|
'''Represents a date of expiration.
|
|
13337
13379
|
|
|
@@ -36035,6 +36077,7 @@ __all__ = [
|
|
|
36035
36077
|
"Duration",
|
|
36036
36078
|
"EncodingOptions",
|
|
36037
36079
|
"Environment",
|
|
36080
|
+
"Errors",
|
|
36038
36081
|
"Expiration",
|
|
36039
36082
|
"ExportValueOptions",
|
|
36040
36083
|
"FeatureFlags",
|
|
@@ -36279,6 +36322,7 @@ __all__ = [
|
|
|
36279
36322
|
"aws_inspector",
|
|
36280
36323
|
"aws_inspectorv2",
|
|
36281
36324
|
"aws_internetmonitor",
|
|
36325
|
+
"aws_invoicing",
|
|
36282
36326
|
"aws_iot",
|
|
36283
36327
|
"aws_iot1click",
|
|
36284
36328
|
"aws_iotanalytics",
|
|
@@ -36569,6 +36613,7 @@ from . import aws_imagebuilder
|
|
|
36569
36613
|
from . import aws_inspector
|
|
36570
36614
|
from . import aws_inspectorv2
|
|
36571
36615
|
from . import aws_internetmonitor
|
|
36616
|
+
from . import aws_invoicing
|
|
36572
36617
|
from . import aws_iot
|
|
36573
36618
|
from . import aws_iot1click
|
|
36574
36619
|
from . import aws_iotanalytics
|
|
@@ -38048,6 +38093,18 @@ def _typecheckingstub__779551ef0a4b144070fd2c3e88ff076e32ad12d30facdc65a940b7a87
|
|
|
38048
38093
|
"""Type checking stubs"""
|
|
38049
38094
|
pass
|
|
38050
38095
|
|
|
38096
|
+
def _typecheckingstub__0c62bc5a6fe032556ae3c32e105ddaad3f4ca89286fd26884af6347d3364c5ae(
|
|
38097
|
+
x: typing.Any,
|
|
38098
|
+
) -> None:
|
|
38099
|
+
"""Type checking stubs"""
|
|
38100
|
+
pass
|
|
38101
|
+
|
|
38102
|
+
def _typecheckingstub__c9afe20487c547932befb7a2f6567c38793e8d7df55f47046e1cfb408408d733(
|
|
38103
|
+
x: typing.Any,
|
|
38104
|
+
) -> None:
|
|
38105
|
+
"""Type checking stubs"""
|
|
38106
|
+
pass
|
|
38107
|
+
|
|
38051
38108
|
def _typecheckingstub__086ea26442655ff69dcf03ab98e8412412bd4dc9ce30d181e3a559323dcede99(
|
|
38052
38109
|
t: Duration,
|
|
38053
38110
|
) -> None:
|
aws_cdk/_jsii/__init__.py
CHANGED
|
@@ -35,7 +35,7 @@ import aws_cdk.cloud_assembly_schema._jsii
|
|
|
35
35
|
import constructs._jsii
|
|
36
36
|
|
|
37
37
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
38
|
-
"aws-cdk-lib", "2.
|
|
38
|
+
"aws-cdk-lib", "2.173.1", __name__[0:-6], "aws-cdk-lib@2.173.1.jsii.tgz"
|
|
39
39
|
)
|
|
40
40
|
|
|
41
41
|
__all__ = [
|
|
Binary file
|
aws_cdk/aws_amazonmq/__init__.py
CHANGED
|
@@ -1969,12 +1969,12 @@ class CfnConfiguration(
|
|
|
1969
1969
|
from aws_cdk import aws_amazonmq as amazonmq
|
|
1970
1970
|
|
|
1971
1971
|
cfn_configuration = amazonmq.CfnConfiguration(self, "MyCfnConfiguration",
|
|
1972
|
-
data="data",
|
|
1973
1972
|
engine_type="engineType",
|
|
1974
1973
|
name="name",
|
|
1975
1974
|
|
|
1976
1975
|
# the properties below are optional
|
|
1977
1976
|
authentication_strategy="authenticationStrategy",
|
|
1977
|
+
data="data",
|
|
1978
1978
|
description="description",
|
|
1979
1979
|
engine_version="engineVersion",
|
|
1980
1980
|
tags=[amazonmq.CfnConfiguration.TagsEntryProperty(
|
|
@@ -1989,10 +1989,10 @@ class CfnConfiguration(
|
|
|
1989
1989
|
scope: _constructs_77d1e7e8.Construct,
|
|
1990
1990
|
id: builtins.str,
|
|
1991
1991
|
*,
|
|
1992
|
-
data: builtins.str,
|
|
1993
1992
|
engine_type: builtins.str,
|
|
1994
1993
|
name: builtins.str,
|
|
1995
1994
|
authentication_strategy: typing.Optional[builtins.str] = None,
|
|
1995
|
+
data: typing.Optional[builtins.str] = None,
|
|
1996
1996
|
description: typing.Optional[builtins.str] = None,
|
|
1997
1997
|
engine_version: typing.Optional[builtins.str] = None,
|
|
1998
1998
|
tags: typing.Optional[typing.Sequence[typing.Union["CfnConfiguration.TagsEntryProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -2000,10 +2000,10 @@ class CfnConfiguration(
|
|
|
2000
2000
|
'''
|
|
2001
2001
|
:param scope: Scope in which this resource is defined.
|
|
2002
2002
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
2003
|
-
:param data: The base64-encoded XML configuration.
|
|
2004
2003
|
:param engine_type: The type of broker engine. Note: Currently, Amazon MQ only supports ACTIVEMQ for creating and editing broker configurations.
|
|
2005
2004
|
:param name: The name of the configuration. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 1-150 characters long.
|
|
2006
2005
|
:param authentication_strategy: Optional. The authentication strategy associated with the configuration. The default is ``SIMPLE`` .
|
|
2006
|
+
:param data: The base64-encoded XML configuration.
|
|
2007
2007
|
:param description: The description of the configuration.
|
|
2008
2008
|
:param engine_version: The version of the broker engine. For a list of supported engine versions, see ` <https://docs.aws.amazon.com/amazon-mq/latest/developer-guide/broker-engine.html>`_
|
|
2009
2009
|
:param tags: Create tags when creating the configuration.
|
|
@@ -2013,10 +2013,10 @@ class CfnConfiguration(
|
|
|
2013
2013
|
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
2014
2014
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
2015
2015
|
props = CfnConfigurationProps(
|
|
2016
|
-
data=data,
|
|
2017
2016
|
engine_type=engine_type,
|
|
2018
2017
|
name=name,
|
|
2019
2018
|
authentication_strategy=authentication_strategy,
|
|
2019
|
+
data=data,
|
|
2020
2020
|
description=description,
|
|
2021
2021
|
engine_version=engine_version,
|
|
2022
2022
|
tags=tags,
|
|
@@ -2098,19 +2098,6 @@ class CfnConfiguration(
|
|
|
2098
2098
|
'''Tag Manager which manages the tags for this resource.'''
|
|
2099
2099
|
return typing.cast(_TagManager_0a598cb3, jsii.get(self, "tags"))
|
|
2100
2100
|
|
|
2101
|
-
@builtins.property
|
|
2102
|
-
@jsii.member(jsii_name="data")
|
|
2103
|
-
def data(self) -> builtins.str:
|
|
2104
|
-
'''The base64-encoded XML configuration.'''
|
|
2105
|
-
return typing.cast(builtins.str, jsii.get(self, "data"))
|
|
2106
|
-
|
|
2107
|
-
@data.setter
|
|
2108
|
-
def data(self, value: builtins.str) -> None:
|
|
2109
|
-
if __debug__:
|
|
2110
|
-
type_hints = typing.get_type_hints(_typecheckingstub__93df7b636c49e24d098eef8a55838ad32b99b6986e3499b80882163f47bcceff)
|
|
2111
|
-
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2112
|
-
jsii.set(self, "data", value) # pyright: ignore[reportArgumentType]
|
|
2113
|
-
|
|
2114
2101
|
@builtins.property
|
|
2115
2102
|
@jsii.member(jsii_name="engineType")
|
|
2116
2103
|
def engine_type(self) -> builtins.str:
|
|
@@ -2150,6 +2137,19 @@ class CfnConfiguration(
|
|
|
2150
2137
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2151
2138
|
jsii.set(self, "authenticationStrategy", value) # pyright: ignore[reportArgumentType]
|
|
2152
2139
|
|
|
2140
|
+
@builtins.property
|
|
2141
|
+
@jsii.member(jsii_name="data")
|
|
2142
|
+
def data(self) -> typing.Optional[builtins.str]:
|
|
2143
|
+
'''The base64-encoded XML configuration.'''
|
|
2144
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "data"))
|
|
2145
|
+
|
|
2146
|
+
@data.setter
|
|
2147
|
+
def data(self, value: typing.Optional[builtins.str]) -> None:
|
|
2148
|
+
if __debug__:
|
|
2149
|
+
type_hints = typing.get_type_hints(_typecheckingstub__93df7b636c49e24d098eef8a55838ad32b99b6986e3499b80882163f47bcceff)
|
|
2150
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2151
|
+
jsii.set(self, "data", value) # pyright: ignore[reportArgumentType]
|
|
2152
|
+
|
|
2153
2153
|
@builtins.property
|
|
2154
2154
|
@jsii.member(jsii_name="description")
|
|
2155
2155
|
def description(self) -> typing.Optional[builtins.str]:
|
|
@@ -2539,10 +2539,10 @@ class CfnConfigurationAssociationProps:
|
|
|
2539
2539
|
jsii_type="aws-cdk-lib.aws_amazonmq.CfnConfigurationProps",
|
|
2540
2540
|
jsii_struct_bases=[],
|
|
2541
2541
|
name_mapping={
|
|
2542
|
-
"data": "data",
|
|
2543
2542
|
"engine_type": "engineType",
|
|
2544
2543
|
"name": "name",
|
|
2545
2544
|
"authentication_strategy": "authenticationStrategy",
|
|
2545
|
+
"data": "data",
|
|
2546
2546
|
"description": "description",
|
|
2547
2547
|
"engine_version": "engineVersion",
|
|
2548
2548
|
"tags": "tags",
|
|
@@ -2552,20 +2552,20 @@ class CfnConfigurationProps:
|
|
|
2552
2552
|
def __init__(
|
|
2553
2553
|
self,
|
|
2554
2554
|
*,
|
|
2555
|
-
data: builtins.str,
|
|
2556
2555
|
engine_type: builtins.str,
|
|
2557
2556
|
name: builtins.str,
|
|
2558
2557
|
authentication_strategy: typing.Optional[builtins.str] = None,
|
|
2558
|
+
data: typing.Optional[builtins.str] = None,
|
|
2559
2559
|
description: typing.Optional[builtins.str] = None,
|
|
2560
2560
|
engine_version: typing.Optional[builtins.str] = None,
|
|
2561
2561
|
tags: typing.Optional[typing.Sequence[typing.Union[CfnConfiguration.TagsEntryProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2562
2562
|
) -> None:
|
|
2563
2563
|
'''Properties for defining a ``CfnConfiguration``.
|
|
2564
2564
|
|
|
2565
|
-
:param data: The base64-encoded XML configuration.
|
|
2566
2565
|
:param engine_type: The type of broker engine. Note: Currently, Amazon MQ only supports ACTIVEMQ for creating and editing broker configurations.
|
|
2567
2566
|
:param name: The name of the configuration. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 1-150 characters long.
|
|
2568
2567
|
:param authentication_strategy: Optional. The authentication strategy associated with the configuration. The default is ``SIMPLE`` .
|
|
2568
|
+
:param data: The base64-encoded XML configuration.
|
|
2569
2569
|
:param description: The description of the configuration.
|
|
2570
2570
|
:param engine_version: The version of the broker engine. For a list of supported engine versions, see ` <https://docs.aws.amazon.com/amazon-mq/latest/developer-guide/broker-engine.html>`_
|
|
2571
2571
|
:param tags: Create tags when creating the configuration.
|
|
@@ -2580,12 +2580,12 @@ class CfnConfigurationProps:
|
|
|
2580
2580
|
from aws_cdk import aws_amazonmq as amazonmq
|
|
2581
2581
|
|
|
2582
2582
|
cfn_configuration_props = amazonmq.CfnConfigurationProps(
|
|
2583
|
-
data="data",
|
|
2584
2583
|
engine_type="engineType",
|
|
2585
2584
|
name="name",
|
|
2586
2585
|
|
|
2587
2586
|
# the properties below are optional
|
|
2588
2587
|
authentication_strategy="authenticationStrategy",
|
|
2588
|
+
data="data",
|
|
2589
2589
|
description="description",
|
|
2590
2590
|
engine_version="engineVersion",
|
|
2591
2591
|
tags=[amazonmq.CfnConfiguration.TagsEntryProperty(
|
|
@@ -2596,20 +2596,21 @@ class CfnConfigurationProps:
|
|
|
2596
2596
|
'''
|
|
2597
2597
|
if __debug__:
|
|
2598
2598
|
type_hints = typing.get_type_hints(_typecheckingstub__de9d7705a9b711c2e53aeb7eaf29e3a459350a0552e89619099efdb9d14d28cc)
|
|
2599
|
-
check_type(argname="argument data", value=data, expected_type=type_hints["data"])
|
|
2600
2599
|
check_type(argname="argument engine_type", value=engine_type, expected_type=type_hints["engine_type"])
|
|
2601
2600
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
2602
2601
|
check_type(argname="argument authentication_strategy", value=authentication_strategy, expected_type=type_hints["authentication_strategy"])
|
|
2602
|
+
check_type(argname="argument data", value=data, expected_type=type_hints["data"])
|
|
2603
2603
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
2604
2604
|
check_type(argname="argument engine_version", value=engine_version, expected_type=type_hints["engine_version"])
|
|
2605
2605
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
2606
2606
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
2607
|
-
"data": data,
|
|
2608
2607
|
"engine_type": engine_type,
|
|
2609
2608
|
"name": name,
|
|
2610
2609
|
}
|
|
2611
2610
|
if authentication_strategy is not None:
|
|
2612
2611
|
self._values["authentication_strategy"] = authentication_strategy
|
|
2612
|
+
if data is not None:
|
|
2613
|
+
self._values["data"] = data
|
|
2613
2614
|
if description is not None:
|
|
2614
2615
|
self._values["description"] = description
|
|
2615
2616
|
if engine_version is not None:
|
|
@@ -2617,16 +2618,6 @@ class CfnConfigurationProps:
|
|
|
2617
2618
|
if tags is not None:
|
|
2618
2619
|
self._values["tags"] = tags
|
|
2619
2620
|
|
|
2620
|
-
@builtins.property
|
|
2621
|
-
def data(self) -> builtins.str:
|
|
2622
|
-
'''The base64-encoded XML configuration.
|
|
2623
|
-
|
|
2624
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data
|
|
2625
|
-
'''
|
|
2626
|
-
result = self._values.get("data")
|
|
2627
|
-
assert result is not None, "Required property 'data' is missing"
|
|
2628
|
-
return typing.cast(builtins.str, result)
|
|
2629
|
-
|
|
2630
2621
|
@builtins.property
|
|
2631
2622
|
def engine_type(self) -> builtins.str:
|
|
2632
2623
|
'''The type of broker engine.
|
|
@@ -2662,6 +2653,15 @@ class CfnConfigurationProps:
|
|
|
2662
2653
|
result = self._values.get("authentication_strategy")
|
|
2663
2654
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
2664
2655
|
|
|
2656
|
+
@builtins.property
|
|
2657
|
+
def data(self) -> typing.Optional[builtins.str]:
|
|
2658
|
+
'''The base64-encoded XML configuration.
|
|
2659
|
+
|
|
2660
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-amazonmq-configuration.html#cfn-amazonmq-configuration-data
|
|
2661
|
+
'''
|
|
2662
|
+
result = self._values.get("data")
|
|
2663
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
2664
|
+
|
|
2665
2665
|
@builtins.property
|
|
2666
2666
|
def description(self) -> typing.Optional[builtins.str]:
|
|
2667
2667
|
'''The description of the configuration.
|
|
@@ -2973,10 +2973,10 @@ def _typecheckingstub__e5d8c71c30a8f2bd8b3e455320ae87cc2204a9546d3ee226605a95753
|
|
|
2973
2973
|
scope: _constructs_77d1e7e8.Construct,
|
|
2974
2974
|
id: builtins.str,
|
|
2975
2975
|
*,
|
|
2976
|
-
data: builtins.str,
|
|
2977
2976
|
engine_type: builtins.str,
|
|
2978
2977
|
name: builtins.str,
|
|
2979
2978
|
authentication_strategy: typing.Optional[builtins.str] = None,
|
|
2979
|
+
data: typing.Optional[builtins.str] = None,
|
|
2980
2980
|
description: typing.Optional[builtins.str] = None,
|
|
2981
2981
|
engine_version: typing.Optional[builtins.str] = None,
|
|
2982
2982
|
tags: typing.Optional[typing.Sequence[typing.Union[CfnConfiguration.TagsEntryProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -2996,25 +2996,25 @@ def _typecheckingstub__3d26068de9c2c4b31dd208267b790265051c2f549c0e83ce735c10dbb
|
|
|
2996
2996
|
"""Type checking stubs"""
|
|
2997
2997
|
pass
|
|
2998
2998
|
|
|
2999
|
-
def
|
|
2999
|
+
def _typecheckingstub__1c128a8f454f5f3c6aa7f53673b3a6ff18a16f9a57d23f00a8ae771a0e07fd47(
|
|
3000
3000
|
value: builtins.str,
|
|
3001
3001
|
) -> None:
|
|
3002
3002
|
"""Type checking stubs"""
|
|
3003
3003
|
pass
|
|
3004
3004
|
|
|
3005
|
-
def
|
|
3005
|
+
def _typecheckingstub__289eb9b7603fb0304d15adaf4ff07e313a569aa2af4bf93d7cb2c2f30ad39faf(
|
|
3006
3006
|
value: builtins.str,
|
|
3007
3007
|
) -> None:
|
|
3008
3008
|
"""Type checking stubs"""
|
|
3009
3009
|
pass
|
|
3010
3010
|
|
|
3011
|
-
def
|
|
3012
|
-
value: builtins.str,
|
|
3011
|
+
def _typecheckingstub__ff746c5afeef7636cc2943e0307f0c73fc2e55dc7ec0a26556d504a9fcb0fc00(
|
|
3012
|
+
value: typing.Optional[builtins.str],
|
|
3013
3013
|
) -> None:
|
|
3014
3014
|
"""Type checking stubs"""
|
|
3015
3015
|
pass
|
|
3016
3016
|
|
|
3017
|
-
def
|
|
3017
|
+
def _typecheckingstub__93df7b636c49e24d098eef8a55838ad32b99b6986e3499b80882163f47bcceff(
|
|
3018
3018
|
value: typing.Optional[builtins.str],
|
|
3019
3019
|
) -> None:
|
|
3020
3020
|
"""Type checking stubs"""
|
|
@@ -3098,10 +3098,10 @@ def _typecheckingstub__75f4d3d98205a43f8d3d0c512582ddb9b38aec2162a51f98f40a83656
|
|
|
3098
3098
|
|
|
3099
3099
|
def _typecheckingstub__de9d7705a9b711c2e53aeb7eaf29e3a459350a0552e89619099efdb9d14d28cc(
|
|
3100
3100
|
*,
|
|
3101
|
-
data: builtins.str,
|
|
3102
3101
|
engine_type: builtins.str,
|
|
3103
3102
|
name: builtins.str,
|
|
3104
3103
|
authentication_strategy: typing.Optional[builtins.str] = None,
|
|
3104
|
+
data: typing.Optional[builtins.str] = None,
|
|
3105
3105
|
description: typing.Optional[builtins.str] = None,
|
|
3106
3106
|
engine_version: typing.Optional[builtins.str] = None,
|
|
3107
3107
|
tags: typing.Optional[typing.Sequence[typing.Union[CfnConfiguration.TagsEntryProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|