aws-cdk-lib 2.218.0__py3-none-any.whl → 2.219.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 +19 -19
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.218.0.jsii.tgz → aws-cdk-lib@2.219.0.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +98 -87
- aws_cdk/aws_apigateway/__init__.py +39 -0
- aws_cdk/aws_bcmdataexports/__init__.py +9 -0
- aws_cdk/aws_bedrock/__init__.py +356 -1
- aws_cdk/aws_bedrockagentcore/__init__.py +297 -157
- aws_cdk/aws_codebuild/__init__.py +339 -62
- aws_cdk/aws_connect/__init__.py +9 -9
- aws_cdk/aws_cur/__init__.py +5 -3
- aws_cdk/aws_datasync/__init__.py +44 -22
- aws_cdk/aws_datazone/__init__.py +35 -33
- aws_cdk/aws_directoryservice/__init__.py +0 -29
- aws_cdk/aws_dms/__init__.py +3 -5
- aws_cdk/aws_ec2/__init__.py +2622 -22
- aws_cdk/aws_ecs/__init__.py +2681 -79
- aws_cdk/aws_entityresolution/__init__.py +18 -0
- aws_cdk/aws_greengrassv2/__init__.py +29 -0
- aws_cdk/aws_msk/__init__.py +4 -2
- aws_cdk/aws_networkfirewall/__init__.py +6 -2
- aws_cdk/aws_networkmanager/__init__.py +29 -29
- aws_cdk/aws_opensearchservice/__init__.py +58 -0
- aws_cdk/aws_opsworkscm/__init__.py +0 -29
- aws_cdk/aws_quicksight/__init__.py +38 -0
- aws_cdk/aws_rds/__init__.py +33 -14
- aws_cdk/aws_route53/__init__.py +8 -2
- aws_cdk/aws_servicecatalog/__init__.py +78 -86
- aws_cdk/aws_smsvoice/__init__.py +319 -0
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/RECORD +35 -35
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.218.0.dist-info → aws_cdk_lib-2.219.0.dist-info}/top_level.txt +0 -0
|
@@ -6622,6 +6622,7 @@ class CfnResourceProps:
|
|
|
6622
6622
|
"name": "name",
|
|
6623
6623
|
"parameters": "parameters",
|
|
6624
6624
|
"policy": "policy",
|
|
6625
|
+
"security_policy": "securityPolicy",
|
|
6625
6626
|
"tags": "tags",
|
|
6626
6627
|
},
|
|
6627
6628
|
)
|
|
@@ -6643,6 +6644,7 @@ class CfnRestApiProps:
|
|
|
6643
6644
|
name: typing.Optional[builtins.str] = None,
|
|
6644
6645
|
parameters: typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]] = None,
|
|
6645
6646
|
policy: typing.Any = None,
|
|
6647
|
+
security_policy: typing.Optional[builtins.str] = None,
|
|
6646
6648
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
6647
6649
|
) -> None:
|
|
6648
6650
|
'''Properties for defining a ``CfnRestApi``.
|
|
@@ -6661,6 +6663,7 @@ class CfnRestApiProps:
|
|
|
6661
6663
|
:param name: The name of the RestApi. A name is required if the REST API is not based on an OpenAPI specification.
|
|
6662
6664
|
:param parameters: Custom header parameters as part of the request. For example, to exclude DocumentationParts from an imported API, set ``ignore=documentation`` as a ``parameters`` value, as in the AWS CLI command of ``aws apigateway import-rest-api --parameters ignore=documentation --body 'file:///path/to/imported-api-body.json'`` .
|
|
6663
6665
|
:param policy: A policy document that contains the permissions for the ``RestApi`` resource. To set the ARN for the policy, use the ``!Join`` intrinsic function with ``""`` as delimiter and values of ``"execute-api:/"`` and ``"*"`` .
|
|
6666
|
+
:param security_policy:
|
|
6664
6667
|
:param tags: The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128 characters and must not start with ``aws:`` . The tag value can be up to 256 characters.
|
|
6665
6668
|
|
|
6666
6669
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html
|
|
@@ -6701,6 +6704,7 @@ class CfnRestApiProps:
|
|
|
6701
6704
|
"parameters_key": "parameters"
|
|
6702
6705
|
},
|
|
6703
6706
|
policy=policy,
|
|
6707
|
+
security_policy="securityPolicy",
|
|
6704
6708
|
tags=[CfnTag(
|
|
6705
6709
|
key="key",
|
|
6706
6710
|
value="value"
|
|
@@ -6723,6 +6727,7 @@ class CfnRestApiProps:
|
|
|
6723
6727
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
6724
6728
|
check_type(argname="argument parameters", value=parameters, expected_type=type_hints["parameters"])
|
|
6725
6729
|
check_type(argname="argument policy", value=policy, expected_type=type_hints["policy"])
|
|
6730
|
+
check_type(argname="argument security_policy", value=security_policy, expected_type=type_hints["security_policy"])
|
|
6726
6731
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
6727
6732
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
6728
6733
|
if api_key_source_type is not None:
|
|
@@ -6753,6 +6758,8 @@ class CfnRestApiProps:
|
|
|
6753
6758
|
self._values["parameters"] = parameters
|
|
6754
6759
|
if policy is not None:
|
|
6755
6760
|
self._values["policy"] = policy
|
|
6761
|
+
if security_policy is not None:
|
|
6762
|
+
self._values["security_policy"] = security_policy
|
|
6756
6763
|
if tags is not None:
|
|
6757
6764
|
self._values["tags"] = tags
|
|
6758
6765
|
|
|
@@ -6924,6 +6931,14 @@ class CfnRestApiProps:
|
|
|
6924
6931
|
result = self._values.get("policy")
|
|
6925
6932
|
return typing.cast(typing.Any, result)
|
|
6926
6933
|
|
|
6934
|
+
@builtins.property
|
|
6935
|
+
def security_policy(self) -> typing.Optional[builtins.str]:
|
|
6936
|
+
'''
|
|
6937
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-securitypolicy
|
|
6938
|
+
'''
|
|
6939
|
+
result = self._values.get("security_policy")
|
|
6940
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
6941
|
+
|
|
6927
6942
|
@builtins.property
|
|
6928
6943
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
6929
6944
|
'''The key-value map of strings.
|
|
@@ -27462,6 +27477,7 @@ class CfnRestApi(
|
|
|
27462
27477
|
"parameters_key": "parameters"
|
|
27463
27478
|
},
|
|
27464
27479
|
policy=policy,
|
|
27480
|
+
security_policy="securityPolicy",
|
|
27465
27481
|
tags=[CfnTag(
|
|
27466
27482
|
key="key",
|
|
27467
27483
|
value="value"
|
|
@@ -27488,6 +27504,7 @@ class CfnRestApi(
|
|
|
27488
27504
|
name: typing.Optional[builtins.str] = None,
|
|
27489
27505
|
parameters: typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]] = None,
|
|
27490
27506
|
policy: typing.Any = None,
|
|
27507
|
+
security_policy: typing.Optional[builtins.str] = None,
|
|
27491
27508
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
27492
27509
|
) -> None:
|
|
27493
27510
|
'''
|
|
@@ -27507,6 +27524,7 @@ class CfnRestApi(
|
|
|
27507
27524
|
:param name: The name of the RestApi. A name is required if the REST API is not based on an OpenAPI specification.
|
|
27508
27525
|
:param parameters: Custom header parameters as part of the request. For example, to exclude DocumentationParts from an imported API, set ``ignore=documentation`` as a ``parameters`` value, as in the AWS CLI command of ``aws apigateway import-rest-api --parameters ignore=documentation --body 'file:///path/to/imported-api-body.json'`` .
|
|
27509
27526
|
:param policy: A policy document that contains the permissions for the ``RestApi`` resource. To set the ARN for the policy, use the ``!Join`` intrinsic function with ``""`` as delimiter and values of ``"execute-api:/"`` and ``"*"`` .
|
|
27527
|
+
:param security_policy:
|
|
27510
27528
|
:param tags: The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128 characters and must not start with ``aws:`` . The tag value can be up to 256 characters.
|
|
27511
27529
|
'''
|
|
27512
27530
|
if __debug__:
|
|
@@ -27528,6 +27546,7 @@ class CfnRestApi(
|
|
|
27528
27546
|
name=name,
|
|
27529
27547
|
parameters=parameters,
|
|
27530
27548
|
policy=policy,
|
|
27549
|
+
security_policy=security_policy,
|
|
27531
27550
|
tags=tags,
|
|
27532
27551
|
)
|
|
27533
27552
|
|
|
@@ -27829,6 +27848,18 @@ class CfnRestApi(
|
|
|
27829
27848
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
27830
27849
|
jsii.set(self, "policy", value) # pyright: ignore[reportArgumentType]
|
|
27831
27850
|
|
|
27851
|
+
@builtins.property
|
|
27852
|
+
@jsii.member(jsii_name="securityPolicy")
|
|
27853
|
+
def security_policy(self) -> typing.Optional[builtins.str]:
|
|
27854
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "securityPolicy"))
|
|
27855
|
+
|
|
27856
|
+
@security_policy.setter
|
|
27857
|
+
def security_policy(self, value: typing.Optional[builtins.str]) -> None:
|
|
27858
|
+
if __debug__:
|
|
27859
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b5cbad8ea7b13cc4138aea2c1f4832de11327b51e38539bb2f152732a2d44409)
|
|
27860
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
27861
|
+
jsii.set(self, "securityPolicy", value) # pyright: ignore[reportArgumentType]
|
|
27862
|
+
|
|
27832
27863
|
@builtins.property
|
|
27833
27864
|
@jsii.member(jsii_name="tagsRaw")
|
|
27834
27865
|
def tags_raw(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
@@ -36725,6 +36756,7 @@ def _typecheckingstub__5e6d4ed4722f0c07021ff207940f8656b0bbeb24224daef1a2a167c70
|
|
|
36725
36756
|
name: typing.Optional[builtins.str] = None,
|
|
36726
36757
|
parameters: typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]] = None,
|
|
36727
36758
|
policy: typing.Any = None,
|
|
36759
|
+
security_policy: typing.Optional[builtins.str] = None,
|
|
36728
36760
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
36729
36761
|
) -> None:
|
|
36730
36762
|
"""Type checking stubs"""
|
|
@@ -39167,6 +39199,7 @@ def _typecheckingstub__781aae0a2f2512495cbd89d2be23edec0478e71fd6a59c0527cabb245
|
|
|
39167
39199
|
name: typing.Optional[builtins.str] = None,
|
|
39168
39200
|
parameters: typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]] = None,
|
|
39169
39201
|
policy: typing.Any = None,
|
|
39202
|
+
security_policy: typing.Optional[builtins.str] = None,
|
|
39170
39203
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
39171
39204
|
) -> None:
|
|
39172
39205
|
"""Type checking stubs"""
|
|
@@ -39276,6 +39309,12 @@ def _typecheckingstub__b7c411e289712e4a9bfc8e944902e0103f628540a4cf7e48a8c916788
|
|
|
39276
39309
|
"""Type checking stubs"""
|
|
39277
39310
|
pass
|
|
39278
39311
|
|
|
39312
|
+
def _typecheckingstub__b5cbad8ea7b13cc4138aea2c1f4832de11327b51e38539bb2f152732a2d44409(
|
|
39313
|
+
value: typing.Optional[builtins.str],
|
|
39314
|
+
) -> None:
|
|
39315
|
+
"""Type checking stubs"""
|
|
39316
|
+
pass
|
|
39317
|
+
|
|
39279
39318
|
def _typecheckingstub__9ae71bb5beb4f360ca0016003cbb508243a9ad4b5e494d1a4655780f8350d620(
|
|
39280
39319
|
value: typing.Optional[typing.List[_CfnTag_f6864754]],
|
|
39281
39320
|
) -> None:
|
|
@@ -403,6 +403,15 @@ class CfnExport(
|
|
|
403
403
|
'''
|
|
404
404
|
return typing.cast(builtins.str, jsii.get(self, "attrExportArn"))
|
|
405
405
|
|
|
406
|
+
@builtins.property
|
|
407
|
+
@jsii.member(jsii_name="attrExportExportArn")
|
|
408
|
+
def attr_export_export_arn(self) -> builtins.str:
|
|
409
|
+
'''The Amazon Resource Name (ARN) for this export.
|
|
410
|
+
|
|
411
|
+
:cloudformationAttribute: Export.ExportArn
|
|
412
|
+
'''
|
|
413
|
+
return typing.cast(builtins.str, jsii.get(self, "attrExportExportArn"))
|
|
414
|
+
|
|
406
415
|
@builtins.property
|
|
407
416
|
@jsii.member(jsii_name="cdkTagManager")
|
|
408
417
|
def cdk_tag_manager(self) -> _TagManager_0a598cb3:
|
aws_cdk/aws_bedrock/__init__.py
CHANGED
|
@@ -1658,6 +1658,16 @@ class CfnDataAutomationProjectProps:
|
|
|
1658
1658
|
state="state",
|
|
1659
1659
|
|
|
1660
1660
|
# the properties below are optional
|
|
1661
|
+
type_configuration=bedrock.CfnDataAutomationProject.AudioExtractionCategoryTypeConfigurationProperty(
|
|
1662
|
+
transcript=bedrock.CfnDataAutomationProject.TranscriptConfigurationProperty(
|
|
1663
|
+
channel_labeling=bedrock.CfnDataAutomationProject.ChannelLabelingConfigurationProperty(
|
|
1664
|
+
state="state"
|
|
1665
|
+
),
|
|
1666
|
+
speaker_labeling=bedrock.CfnDataAutomationProject.SpeakerLabelingConfigurationProperty(
|
|
1667
|
+
state="state"
|
|
1668
|
+
)
|
|
1669
|
+
)
|
|
1670
|
+
),
|
|
1661
1671
|
types=["types"]
|
|
1662
1672
|
)
|
|
1663
1673
|
),
|
|
@@ -4808,6 +4818,12 @@ class FoundationModelIdentifier(
|
|
|
4808
4818
|
'''Base model "anthropic.claude-sonnet-4-20250514-v1:0".'''
|
|
4809
4819
|
return typing.cast("FoundationModelIdentifier", jsii.sget(cls, "ANTHROPIC_CLAUDE_SONNET_4_20250514_V1_0"))
|
|
4810
4820
|
|
|
4821
|
+
@jsii.python.classproperty
|
|
4822
|
+
@jsii.member(jsii_name="ANTHROPIC_CLAUDE_SONNET_4_5_20250929_V1_0")
|
|
4823
|
+
def ANTHROPIC_CLAUDE_SONNET_4_5_20250929_V1_0(cls) -> "FoundationModelIdentifier":
|
|
4824
|
+
'''Base model "anthropic.claude-sonnet-4-5-20250929-v1:0".'''
|
|
4825
|
+
return typing.cast("FoundationModelIdentifier", jsii.sget(cls, "ANTHROPIC_CLAUDE_SONNET_4_5_20250929_V1_0"))
|
|
4826
|
+
|
|
4811
4827
|
@jsii.python.classproperty
|
|
4812
4828
|
@jsii.member(jsii_name="ANTHROPIC_CLAUDE_V1")
|
|
4813
4829
|
def ANTHROPIC_CLAUDE_V1(cls) -> "FoundationModelIdentifier":
|
|
@@ -10957,6 +10973,16 @@ class CfnDataAutomationProject(
|
|
|
10957
10973
|
state="state",
|
|
10958
10974
|
|
|
10959
10975
|
# the properties below are optional
|
|
10976
|
+
type_configuration=bedrock.CfnDataAutomationProject.AudioExtractionCategoryTypeConfigurationProperty(
|
|
10977
|
+
transcript=bedrock.CfnDataAutomationProject.TranscriptConfigurationProperty(
|
|
10978
|
+
channel_labeling=bedrock.CfnDataAutomationProject.ChannelLabelingConfigurationProperty(
|
|
10979
|
+
state="state"
|
|
10980
|
+
),
|
|
10981
|
+
speaker_labeling=bedrock.CfnDataAutomationProject.SpeakerLabelingConfigurationProperty(
|
|
10982
|
+
state="state"
|
|
10983
|
+
)
|
|
10984
|
+
)
|
|
10985
|
+
),
|
|
10960
10986
|
types=["types"]
|
|
10961
10987
|
)
|
|
10962
10988
|
),
|
|
@@ -11296,18 +11322,24 @@ class CfnDataAutomationProject(
|
|
|
11296
11322
|
@jsii.data_type(
|
|
11297
11323
|
jsii_type="aws-cdk-lib.aws_bedrock.CfnDataAutomationProject.AudioExtractionCategoryProperty",
|
|
11298
11324
|
jsii_struct_bases=[],
|
|
11299
|
-
name_mapping={
|
|
11325
|
+
name_mapping={
|
|
11326
|
+
"state": "state",
|
|
11327
|
+
"type_configuration": "typeConfiguration",
|
|
11328
|
+
"types": "types",
|
|
11329
|
+
},
|
|
11300
11330
|
)
|
|
11301
11331
|
class AudioExtractionCategoryProperty:
|
|
11302
11332
|
def __init__(
|
|
11303
11333
|
self,
|
|
11304
11334
|
*,
|
|
11305
11335
|
state: builtins.str,
|
|
11336
|
+
type_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAutomationProject.AudioExtractionCategoryTypeConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
11306
11337
|
types: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
11307
11338
|
) -> None:
|
|
11308
11339
|
'''Settings for generating data from audio.
|
|
11309
11340
|
|
|
11310
11341
|
:param state: Whether generating categorical data from audio is enabled.
|
|
11342
|
+
:param type_configuration:
|
|
11311
11343
|
:param types: The types of data to generate.
|
|
11312
11344
|
|
|
11313
11345
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audioextractioncategory.html
|
|
@@ -11323,16 +11355,29 @@ class CfnDataAutomationProject(
|
|
|
11323
11355
|
state="state",
|
|
11324
11356
|
|
|
11325
11357
|
# the properties below are optional
|
|
11358
|
+
type_configuration=bedrock.CfnDataAutomationProject.AudioExtractionCategoryTypeConfigurationProperty(
|
|
11359
|
+
transcript=bedrock.CfnDataAutomationProject.TranscriptConfigurationProperty(
|
|
11360
|
+
channel_labeling=bedrock.CfnDataAutomationProject.ChannelLabelingConfigurationProperty(
|
|
11361
|
+
state="state"
|
|
11362
|
+
),
|
|
11363
|
+
speaker_labeling=bedrock.CfnDataAutomationProject.SpeakerLabelingConfigurationProperty(
|
|
11364
|
+
state="state"
|
|
11365
|
+
)
|
|
11366
|
+
)
|
|
11367
|
+
),
|
|
11326
11368
|
types=["types"]
|
|
11327
11369
|
)
|
|
11328
11370
|
'''
|
|
11329
11371
|
if __debug__:
|
|
11330
11372
|
type_hints = typing.get_type_hints(_typecheckingstub__17b4067ba061b31b33f6982f8b1ce49b15211698a89239a94ac83de6e9a86fd0)
|
|
11331
11373
|
check_type(argname="argument state", value=state, expected_type=type_hints["state"])
|
|
11374
|
+
check_type(argname="argument type_configuration", value=type_configuration, expected_type=type_hints["type_configuration"])
|
|
11332
11375
|
check_type(argname="argument types", value=types, expected_type=type_hints["types"])
|
|
11333
11376
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
11334
11377
|
"state": state,
|
|
11335
11378
|
}
|
|
11379
|
+
if type_configuration is not None:
|
|
11380
|
+
self._values["type_configuration"] = type_configuration
|
|
11336
11381
|
if types is not None:
|
|
11337
11382
|
self._values["types"] = types
|
|
11338
11383
|
|
|
@@ -11346,6 +11391,16 @@ class CfnDataAutomationProject(
|
|
|
11346
11391
|
assert result is not None, "Required property 'state' is missing"
|
|
11347
11392
|
return typing.cast(builtins.str, result)
|
|
11348
11393
|
|
|
11394
|
+
@builtins.property
|
|
11395
|
+
def type_configuration(
|
|
11396
|
+
self,
|
|
11397
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.AudioExtractionCategoryTypeConfigurationProperty"]]:
|
|
11398
|
+
'''
|
|
11399
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audioextractioncategory.html#cfn-bedrock-dataautomationproject-audioextractioncategory-typeconfiguration
|
|
11400
|
+
'''
|
|
11401
|
+
result = self._values.get("type_configuration")
|
|
11402
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.AudioExtractionCategoryTypeConfigurationProperty"]], result)
|
|
11403
|
+
|
|
11349
11404
|
@builtins.property
|
|
11350
11405
|
def types(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
11351
11406
|
'''The types of data to generate.
|
|
@@ -11366,6 +11421,68 @@ class CfnDataAutomationProject(
|
|
|
11366
11421
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
11367
11422
|
)
|
|
11368
11423
|
|
|
11424
|
+
@jsii.data_type(
|
|
11425
|
+
jsii_type="aws-cdk-lib.aws_bedrock.CfnDataAutomationProject.AudioExtractionCategoryTypeConfigurationProperty",
|
|
11426
|
+
jsii_struct_bases=[],
|
|
11427
|
+
name_mapping={"transcript": "transcript"},
|
|
11428
|
+
)
|
|
11429
|
+
class AudioExtractionCategoryTypeConfigurationProperty:
|
|
11430
|
+
def __init__(
|
|
11431
|
+
self,
|
|
11432
|
+
*,
|
|
11433
|
+
transcript: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAutomationProject.TranscriptConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
11434
|
+
) -> None:
|
|
11435
|
+
'''
|
|
11436
|
+
:param transcript:
|
|
11437
|
+
|
|
11438
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audioextractioncategorytypeconfiguration.html
|
|
11439
|
+
:exampleMetadata: fixture=_generated
|
|
11440
|
+
|
|
11441
|
+
Example::
|
|
11442
|
+
|
|
11443
|
+
# The code below shows an example of how to instantiate this type.
|
|
11444
|
+
# The values are placeholders you should change.
|
|
11445
|
+
from aws_cdk import aws_bedrock as bedrock
|
|
11446
|
+
|
|
11447
|
+
audio_extraction_category_type_configuration_property = bedrock.CfnDataAutomationProject.AudioExtractionCategoryTypeConfigurationProperty(
|
|
11448
|
+
transcript=bedrock.CfnDataAutomationProject.TranscriptConfigurationProperty(
|
|
11449
|
+
channel_labeling=bedrock.CfnDataAutomationProject.ChannelLabelingConfigurationProperty(
|
|
11450
|
+
state="state"
|
|
11451
|
+
),
|
|
11452
|
+
speaker_labeling=bedrock.CfnDataAutomationProject.SpeakerLabelingConfigurationProperty(
|
|
11453
|
+
state="state"
|
|
11454
|
+
)
|
|
11455
|
+
)
|
|
11456
|
+
)
|
|
11457
|
+
'''
|
|
11458
|
+
if __debug__:
|
|
11459
|
+
type_hints = typing.get_type_hints(_typecheckingstub__8259388fe308ef50a8381c8a690422dc9a617fc5ee0ec19395a6049b94fc76bc)
|
|
11460
|
+
check_type(argname="argument transcript", value=transcript, expected_type=type_hints["transcript"])
|
|
11461
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
11462
|
+
if transcript is not None:
|
|
11463
|
+
self._values["transcript"] = transcript
|
|
11464
|
+
|
|
11465
|
+
@builtins.property
|
|
11466
|
+
def transcript(
|
|
11467
|
+
self,
|
|
11468
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.TranscriptConfigurationProperty"]]:
|
|
11469
|
+
'''
|
|
11470
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audioextractioncategorytypeconfiguration.html#cfn-bedrock-dataautomationproject-audioextractioncategorytypeconfiguration-transcript
|
|
11471
|
+
'''
|
|
11472
|
+
result = self._values.get("transcript")
|
|
11473
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.TranscriptConfigurationProperty"]], result)
|
|
11474
|
+
|
|
11475
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
11476
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
11477
|
+
|
|
11478
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
11479
|
+
return not (rhs == self)
|
|
11480
|
+
|
|
11481
|
+
def __repr__(self) -> str:
|
|
11482
|
+
return "AudioExtractionCategoryTypeConfigurationProperty(%s)" % ", ".join(
|
|
11483
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
11484
|
+
)
|
|
11485
|
+
|
|
11369
11486
|
@jsii.data_type(
|
|
11370
11487
|
jsii_type="aws-cdk-lib.aws_bedrock.CfnDataAutomationProject.AudioOverrideConfigurationProperty",
|
|
11371
11488
|
jsii_struct_bases=[],
|
|
@@ -11456,6 +11573,16 @@ class CfnDataAutomationProject(
|
|
|
11456
11573
|
state="state",
|
|
11457
11574
|
|
|
11458
11575
|
# the properties below are optional
|
|
11576
|
+
type_configuration=bedrock.CfnDataAutomationProject.AudioExtractionCategoryTypeConfigurationProperty(
|
|
11577
|
+
transcript=bedrock.CfnDataAutomationProject.TranscriptConfigurationProperty(
|
|
11578
|
+
channel_labeling=bedrock.CfnDataAutomationProject.ChannelLabelingConfigurationProperty(
|
|
11579
|
+
state="state"
|
|
11580
|
+
),
|
|
11581
|
+
speaker_labeling=bedrock.CfnDataAutomationProject.SpeakerLabelingConfigurationProperty(
|
|
11582
|
+
state="state"
|
|
11583
|
+
)
|
|
11584
|
+
)
|
|
11585
|
+
),
|
|
11459
11586
|
types=["types"]
|
|
11460
11587
|
)
|
|
11461
11588
|
)
|
|
@@ -11598,6 +11725,16 @@ class CfnDataAutomationProject(
|
|
|
11598
11725
|
state="state",
|
|
11599
11726
|
|
|
11600
11727
|
# the properties below are optional
|
|
11728
|
+
type_configuration=bedrock.CfnDataAutomationProject.AudioExtractionCategoryTypeConfigurationProperty(
|
|
11729
|
+
transcript=bedrock.CfnDataAutomationProject.TranscriptConfigurationProperty(
|
|
11730
|
+
channel_labeling=bedrock.CfnDataAutomationProject.ChannelLabelingConfigurationProperty(
|
|
11731
|
+
state="state"
|
|
11732
|
+
),
|
|
11733
|
+
speaker_labeling=bedrock.CfnDataAutomationProject.SpeakerLabelingConfigurationProperty(
|
|
11734
|
+
state="state"
|
|
11735
|
+
)
|
|
11736
|
+
)
|
|
11737
|
+
),
|
|
11601
11738
|
types=["types"]
|
|
11602
11739
|
)
|
|
11603
11740
|
),
|
|
@@ -11744,6 +11881,56 @@ class CfnDataAutomationProject(
|
|
|
11744
11881
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
11745
11882
|
)
|
|
11746
11883
|
|
|
11884
|
+
@jsii.data_type(
|
|
11885
|
+
jsii_type="aws-cdk-lib.aws_bedrock.CfnDataAutomationProject.ChannelLabelingConfigurationProperty",
|
|
11886
|
+
jsii_struct_bases=[],
|
|
11887
|
+
name_mapping={"state": "state"},
|
|
11888
|
+
)
|
|
11889
|
+
class ChannelLabelingConfigurationProperty:
|
|
11890
|
+
def __init__(self, *, state: builtins.str) -> None:
|
|
11891
|
+
'''
|
|
11892
|
+
:param state:
|
|
11893
|
+
|
|
11894
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-channellabelingconfiguration.html
|
|
11895
|
+
:exampleMetadata: fixture=_generated
|
|
11896
|
+
|
|
11897
|
+
Example::
|
|
11898
|
+
|
|
11899
|
+
# The code below shows an example of how to instantiate this type.
|
|
11900
|
+
# The values are placeholders you should change.
|
|
11901
|
+
from aws_cdk import aws_bedrock as bedrock
|
|
11902
|
+
|
|
11903
|
+
channel_labeling_configuration_property = bedrock.CfnDataAutomationProject.ChannelLabelingConfigurationProperty(
|
|
11904
|
+
state="state"
|
|
11905
|
+
)
|
|
11906
|
+
'''
|
|
11907
|
+
if __debug__:
|
|
11908
|
+
type_hints = typing.get_type_hints(_typecheckingstub__7ab1d892e7ed4872447a0903e83dac79c4c5e818a7f8c79fc389710519cc6ac8)
|
|
11909
|
+
check_type(argname="argument state", value=state, expected_type=type_hints["state"])
|
|
11910
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
11911
|
+
"state": state,
|
|
11912
|
+
}
|
|
11913
|
+
|
|
11914
|
+
@builtins.property
|
|
11915
|
+
def state(self) -> builtins.str:
|
|
11916
|
+
'''
|
|
11917
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-channellabelingconfiguration.html#cfn-bedrock-dataautomationproject-channellabelingconfiguration-state
|
|
11918
|
+
'''
|
|
11919
|
+
result = self._values.get("state")
|
|
11920
|
+
assert result is not None, "Required property 'state' is missing"
|
|
11921
|
+
return typing.cast(builtins.str, result)
|
|
11922
|
+
|
|
11923
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
11924
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
11925
|
+
|
|
11926
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
11927
|
+
return not (rhs == self)
|
|
11928
|
+
|
|
11929
|
+
def __repr__(self) -> str:
|
|
11930
|
+
return "ChannelLabelingConfigurationProperty(%s)" % ", ".join(
|
|
11931
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
11932
|
+
)
|
|
11933
|
+
|
|
11747
11934
|
@jsii.data_type(
|
|
11748
11935
|
jsii_type="aws-cdk-lib.aws_bedrock.CfnDataAutomationProject.CustomOutputConfigurationProperty",
|
|
11749
11936
|
jsii_struct_bases=[],
|
|
@@ -13171,6 +13358,56 @@ class CfnDataAutomationProject(
|
|
|
13171
13358
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
13172
13359
|
)
|
|
13173
13360
|
|
|
13361
|
+
@jsii.data_type(
|
|
13362
|
+
jsii_type="aws-cdk-lib.aws_bedrock.CfnDataAutomationProject.SpeakerLabelingConfigurationProperty",
|
|
13363
|
+
jsii_struct_bases=[],
|
|
13364
|
+
name_mapping={"state": "state"},
|
|
13365
|
+
)
|
|
13366
|
+
class SpeakerLabelingConfigurationProperty:
|
|
13367
|
+
def __init__(self, *, state: builtins.str) -> None:
|
|
13368
|
+
'''
|
|
13369
|
+
:param state:
|
|
13370
|
+
|
|
13371
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-speakerlabelingconfiguration.html
|
|
13372
|
+
:exampleMetadata: fixture=_generated
|
|
13373
|
+
|
|
13374
|
+
Example::
|
|
13375
|
+
|
|
13376
|
+
# The code below shows an example of how to instantiate this type.
|
|
13377
|
+
# The values are placeholders you should change.
|
|
13378
|
+
from aws_cdk import aws_bedrock as bedrock
|
|
13379
|
+
|
|
13380
|
+
speaker_labeling_configuration_property = bedrock.CfnDataAutomationProject.SpeakerLabelingConfigurationProperty(
|
|
13381
|
+
state="state"
|
|
13382
|
+
)
|
|
13383
|
+
'''
|
|
13384
|
+
if __debug__:
|
|
13385
|
+
type_hints = typing.get_type_hints(_typecheckingstub__725244e9aa37705dc01f5ef13c43668850d124b3c4788e4cf95166bc4ec818cf)
|
|
13386
|
+
check_type(argname="argument state", value=state, expected_type=type_hints["state"])
|
|
13387
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
13388
|
+
"state": state,
|
|
13389
|
+
}
|
|
13390
|
+
|
|
13391
|
+
@builtins.property
|
|
13392
|
+
def state(self) -> builtins.str:
|
|
13393
|
+
'''
|
|
13394
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-speakerlabelingconfiguration.html#cfn-bedrock-dataautomationproject-speakerlabelingconfiguration-state
|
|
13395
|
+
'''
|
|
13396
|
+
result = self._values.get("state")
|
|
13397
|
+
assert result is not None, "Required property 'state' is missing"
|
|
13398
|
+
return typing.cast(builtins.str, result)
|
|
13399
|
+
|
|
13400
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
13401
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
13402
|
+
|
|
13403
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
13404
|
+
return not (rhs == self)
|
|
13405
|
+
|
|
13406
|
+
def __repr__(self) -> str:
|
|
13407
|
+
return "SpeakerLabelingConfigurationProperty(%s)" % ", ".join(
|
|
13408
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
13409
|
+
)
|
|
13410
|
+
|
|
13174
13411
|
@jsii.data_type(
|
|
13175
13412
|
jsii_type="aws-cdk-lib.aws_bedrock.CfnDataAutomationProject.SplitterConfigurationProperty",
|
|
13176
13413
|
jsii_struct_bases=[],
|
|
@@ -13266,6 +13503,16 @@ class CfnDataAutomationProject(
|
|
|
13266
13503
|
state="state",
|
|
13267
13504
|
|
|
13268
13505
|
# the properties below are optional
|
|
13506
|
+
type_configuration=bedrock.CfnDataAutomationProject.AudioExtractionCategoryTypeConfigurationProperty(
|
|
13507
|
+
transcript=bedrock.CfnDataAutomationProject.TranscriptConfigurationProperty(
|
|
13508
|
+
channel_labeling=bedrock.CfnDataAutomationProject.ChannelLabelingConfigurationProperty(
|
|
13509
|
+
state="state"
|
|
13510
|
+
),
|
|
13511
|
+
speaker_labeling=bedrock.CfnDataAutomationProject.SpeakerLabelingConfigurationProperty(
|
|
13512
|
+
state="state"
|
|
13513
|
+
)
|
|
13514
|
+
)
|
|
13515
|
+
),
|
|
13269
13516
|
types=["types"]
|
|
13270
13517
|
)
|
|
13271
13518
|
),
|
|
@@ -13408,6 +13655,84 @@ class CfnDataAutomationProject(
|
|
|
13408
13655
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
13409
13656
|
)
|
|
13410
13657
|
|
|
13658
|
+
@jsii.data_type(
|
|
13659
|
+
jsii_type="aws-cdk-lib.aws_bedrock.CfnDataAutomationProject.TranscriptConfigurationProperty",
|
|
13660
|
+
jsii_struct_bases=[],
|
|
13661
|
+
name_mapping={
|
|
13662
|
+
"channel_labeling": "channelLabeling",
|
|
13663
|
+
"speaker_labeling": "speakerLabeling",
|
|
13664
|
+
},
|
|
13665
|
+
)
|
|
13666
|
+
class TranscriptConfigurationProperty:
|
|
13667
|
+
def __init__(
|
|
13668
|
+
self,
|
|
13669
|
+
*,
|
|
13670
|
+
channel_labeling: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAutomationProject.ChannelLabelingConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
13671
|
+
speaker_labeling: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataAutomationProject.SpeakerLabelingConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
13672
|
+
) -> None:
|
|
13673
|
+
'''
|
|
13674
|
+
:param channel_labeling:
|
|
13675
|
+
:param speaker_labeling:
|
|
13676
|
+
|
|
13677
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-transcriptconfiguration.html
|
|
13678
|
+
:exampleMetadata: fixture=_generated
|
|
13679
|
+
|
|
13680
|
+
Example::
|
|
13681
|
+
|
|
13682
|
+
# The code below shows an example of how to instantiate this type.
|
|
13683
|
+
# The values are placeholders you should change.
|
|
13684
|
+
from aws_cdk import aws_bedrock as bedrock
|
|
13685
|
+
|
|
13686
|
+
transcript_configuration_property = bedrock.CfnDataAutomationProject.TranscriptConfigurationProperty(
|
|
13687
|
+
channel_labeling=bedrock.CfnDataAutomationProject.ChannelLabelingConfigurationProperty(
|
|
13688
|
+
state="state"
|
|
13689
|
+
),
|
|
13690
|
+
speaker_labeling=bedrock.CfnDataAutomationProject.SpeakerLabelingConfigurationProperty(
|
|
13691
|
+
state="state"
|
|
13692
|
+
)
|
|
13693
|
+
)
|
|
13694
|
+
'''
|
|
13695
|
+
if __debug__:
|
|
13696
|
+
type_hints = typing.get_type_hints(_typecheckingstub__f07f4b0c00b57db46daaddf10a2a13658595b6b33385465d29dac371457691d4)
|
|
13697
|
+
check_type(argname="argument channel_labeling", value=channel_labeling, expected_type=type_hints["channel_labeling"])
|
|
13698
|
+
check_type(argname="argument speaker_labeling", value=speaker_labeling, expected_type=type_hints["speaker_labeling"])
|
|
13699
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
13700
|
+
if channel_labeling is not None:
|
|
13701
|
+
self._values["channel_labeling"] = channel_labeling
|
|
13702
|
+
if speaker_labeling is not None:
|
|
13703
|
+
self._values["speaker_labeling"] = speaker_labeling
|
|
13704
|
+
|
|
13705
|
+
@builtins.property
|
|
13706
|
+
def channel_labeling(
|
|
13707
|
+
self,
|
|
13708
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.ChannelLabelingConfigurationProperty"]]:
|
|
13709
|
+
'''
|
|
13710
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-transcriptconfiguration.html#cfn-bedrock-dataautomationproject-transcriptconfiguration-channellabeling
|
|
13711
|
+
'''
|
|
13712
|
+
result = self._values.get("channel_labeling")
|
|
13713
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.ChannelLabelingConfigurationProperty"]], result)
|
|
13714
|
+
|
|
13715
|
+
@builtins.property
|
|
13716
|
+
def speaker_labeling(
|
|
13717
|
+
self,
|
|
13718
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.SpeakerLabelingConfigurationProperty"]]:
|
|
13719
|
+
'''
|
|
13720
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-transcriptconfiguration.html#cfn-bedrock-dataautomationproject-transcriptconfiguration-speakerlabeling
|
|
13721
|
+
'''
|
|
13722
|
+
result = self._values.get("speaker_labeling")
|
|
13723
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataAutomationProject.SpeakerLabelingConfigurationProperty"]], result)
|
|
13724
|
+
|
|
13725
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
13726
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
13727
|
+
|
|
13728
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
13729
|
+
return not (rhs == self)
|
|
13730
|
+
|
|
13731
|
+
def __repr__(self) -> str:
|
|
13732
|
+
return "TranscriptConfigurationProperty(%s)" % ", ".join(
|
|
13733
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
13734
|
+
)
|
|
13735
|
+
|
|
13411
13736
|
@jsii.data_type(
|
|
13412
13737
|
jsii_type="aws-cdk-lib.aws_bedrock.CfnDataAutomationProject.VideoBoundingBoxProperty",
|
|
13413
13738
|
jsii_struct_bases=[],
|
|
@@ -41126,11 +41451,19 @@ def _typecheckingstub__c8adc93c3ad061e5a2be17a8fdad5d0761d30eeec1c7a815fcdef93e3
|
|
|
41126
41451
|
def _typecheckingstub__17b4067ba061b31b33f6982f8b1ce49b15211698a89239a94ac83de6e9a86fd0(
|
|
41127
41452
|
*,
|
|
41128
41453
|
state: builtins.str,
|
|
41454
|
+
type_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataAutomationProject.AudioExtractionCategoryTypeConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
41129
41455
|
types: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
41130
41456
|
) -> None:
|
|
41131
41457
|
"""Type checking stubs"""
|
|
41132
41458
|
pass
|
|
41133
41459
|
|
|
41460
|
+
def _typecheckingstub__8259388fe308ef50a8381c8a690422dc9a617fc5ee0ec19395a6049b94fc76bc(
|
|
41461
|
+
*,
|
|
41462
|
+
transcript: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataAutomationProject.TranscriptConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
41463
|
+
) -> None:
|
|
41464
|
+
"""Type checking stubs"""
|
|
41465
|
+
pass
|
|
41466
|
+
|
|
41134
41467
|
def _typecheckingstub__9fa0ddf34ba99d172292ec01a5b59e05e41939ae214f174146b2d694461955ce(
|
|
41135
41468
|
*,
|
|
41136
41469
|
modality_processing: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataAutomationProject.ModalityProcessingConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -41170,6 +41503,13 @@ def _typecheckingstub__b0aacb3579a06fb3e50ee6ecb37244fb2c3691447d7c0d5ce515e59f8
|
|
|
41170
41503
|
"""Type checking stubs"""
|
|
41171
41504
|
pass
|
|
41172
41505
|
|
|
41506
|
+
def _typecheckingstub__7ab1d892e7ed4872447a0903e83dac79c4c5e818a7f8c79fc389710519cc6ac8(
|
|
41507
|
+
*,
|
|
41508
|
+
state: builtins.str,
|
|
41509
|
+
) -> None:
|
|
41510
|
+
"""Type checking stubs"""
|
|
41511
|
+
pass
|
|
41512
|
+
|
|
41173
41513
|
def _typecheckingstub__f33831635897ccc78d6e5d7bff1bc5df55cf8effc38e61a7795979a6201be7c4(
|
|
41174
41514
|
*,
|
|
41175
41515
|
blueprints: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataAutomationProject.BlueprintItemProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
@@ -41319,6 +41659,13 @@ def _typecheckingstub__400a92e228907b33f71ad10276a9ad472a21d517da3941d1621dda605
|
|
|
41319
41659
|
"""Type checking stubs"""
|
|
41320
41660
|
pass
|
|
41321
41661
|
|
|
41662
|
+
def _typecheckingstub__725244e9aa37705dc01f5ef13c43668850d124b3c4788e4cf95166bc4ec818cf(
|
|
41663
|
+
*,
|
|
41664
|
+
state: builtins.str,
|
|
41665
|
+
) -> None:
|
|
41666
|
+
"""Type checking stubs"""
|
|
41667
|
+
pass
|
|
41668
|
+
|
|
41322
41669
|
def _typecheckingstub__c7cc9940422898532f5a5c63c45d42dbf9d52852abdd7380d339b4a0b5631abd(
|
|
41323
41670
|
*,
|
|
41324
41671
|
state: typing.Optional[builtins.str] = None,
|
|
@@ -41336,6 +41683,14 @@ def _typecheckingstub__73065f098ecb2ad872a4a32fc68952239056e92bbe4974bed8c813d74
|
|
|
41336
41683
|
"""Type checking stubs"""
|
|
41337
41684
|
pass
|
|
41338
41685
|
|
|
41686
|
+
def _typecheckingstub__f07f4b0c00b57db46daaddf10a2a13658595b6b33385465d29dac371457691d4(
|
|
41687
|
+
*,
|
|
41688
|
+
channel_labeling: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataAutomationProject.ChannelLabelingConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
41689
|
+
speaker_labeling: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataAutomationProject.SpeakerLabelingConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
41690
|
+
) -> None:
|
|
41691
|
+
"""Type checking stubs"""
|
|
41692
|
+
pass
|
|
41693
|
+
|
|
41339
41694
|
def _typecheckingstub__6edaef4d6ad0693410640d9f6735dd17fecb6b8faa3f28bb8aa998b97dbd0b10(
|
|
41340
41695
|
*,
|
|
41341
41696
|
state: builtins.str,
|