aws-cdk-lib 2.189.1__py3-none-any.whl → 2.190.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/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.189.1.jsii.tgz → aws-cdk-lib@2.190.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +6 -6
- aws_cdk/aws_apigatewayv2/__init__.py +374 -6
- aws_cdk/aws_applicationautoscaling/__init__.py +16 -10
- aws_cdk/aws_applicationsignals/__init__.py +204 -31
- aws_cdk/aws_backup/__init__.py +0 -41
- aws_cdk/aws_batch/__init__.py +215 -0
- aws_cdk/aws_bedrock/__init__.py +287 -0
- aws_cdk/aws_cleanrooms/__init__.py +1392 -78
- aws_cdk/aws_cloudfront/__init__.py +1 -0
- aws_cdk/aws_cloudtrail/__init__.py +24 -26
- aws_cdk/aws_codebuild/__init__.py +59 -7
- aws_cdk/aws_dms/__init__.py +43 -0
- aws_cdk/aws_ec2/__init__.py +364 -30
- aws_cdk/aws_ecs/__init__.py +36 -5
- aws_cdk/aws_eks/__init__.py +2 -100
- aws_cdk/aws_elasticache/__init__.py +6 -11
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +341 -0
- aws_cdk/aws_events/__init__.py +67 -13
- aws_cdk/aws_fsx/__init__.py +9 -21
- aws_cdk/aws_iam/__init__.py +1 -1
- aws_cdk/aws_iot/__init__.py +6 -6
- aws_cdk/aws_kafkaconnect/__init__.py +2 -2
- aws_cdk/aws_kinesis/__init__.py +44 -0
- aws_cdk/aws_lex/__init__.py +615 -39
- aws_cdk/aws_location/__init__.py +4 -4
- aws_cdk/aws_macie/__init__.py +14 -3
- aws_cdk/aws_memorydb/__init__.py +87 -0
- aws_cdk/aws_msk/__init__.py +226 -127
- aws_cdk/aws_neptune/__init__.py +0 -8
- aws_cdk/aws_opensearchservice/__init__.py +64 -56
- aws_cdk/aws_paymentcryptography/__init__.py +41 -0
- aws_cdk/aws_qbusiness/__init__.py +175 -3
- aws_cdk/aws_quicksight/__init__.py +393 -0
- aws_cdk/aws_rds/__init__.py +113 -120
- aws_cdk/aws_redshiftserverless/__init__.py +4 -14
- aws_cdk/aws_route53resolver/__init__.py +60 -9
- aws_cdk/aws_s3/__init__.py +34 -1
- aws_cdk/aws_s3_deployment/__init__.py +202 -5
- aws_cdk/aws_sagemaker/__init__.py +40 -40
- aws_cdk/aws_ssmquicksetup/__init__.py +3 -3
- aws_cdk/aws_stepfunctions/__init__.py +720 -45
- aws_cdk/aws_transfer/__init__.py +55 -2
- aws_cdk/pipelines/__init__.py +1 -2
- {aws_cdk_lib-2.189.1.dist-info → aws_cdk_lib-2.190.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.189.1.dist-info → aws_cdk_lib-2.190.0.dist-info}/RECORD +51 -51
- {aws_cdk_lib-2.189.1.dist-info → aws_cdk_lib-2.190.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.189.1.dist-info → aws_cdk_lib-2.190.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.189.1.dist-info → aws_cdk_lib-2.190.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.189.1.dist-info → aws_cdk_lib-2.190.0.dist-info}/top_level.txt +0 -0
|
@@ -2532,8 +2532,14 @@ class CfnDataSource(
|
|
|
2532
2532
|
)
|
|
2533
2533
|
),
|
|
2534
2534
|
media_extraction_configuration=qbusiness.CfnDataSource.MediaExtractionConfigurationProperty(
|
|
2535
|
+
audio_extraction_configuration=qbusiness.CfnDataSource.AudioExtractionConfigurationProperty(
|
|
2536
|
+
audio_extraction_status="audioExtractionStatus"
|
|
2537
|
+
),
|
|
2535
2538
|
image_extraction_configuration=qbusiness.CfnDataSource.ImageExtractionConfigurationProperty(
|
|
2536
2539
|
image_extraction_status="imageExtractionStatus"
|
|
2540
|
+
),
|
|
2541
|
+
video_extraction_configuration=qbusiness.CfnDataSource.VideoExtractionConfigurationProperty(
|
|
2542
|
+
video_extraction_status="videoExtractionStatus"
|
|
2537
2543
|
)
|
|
2538
2544
|
),
|
|
2539
2545
|
role_arn="roleArn",
|
|
@@ -2854,6 +2860,58 @@ class CfnDataSource(
|
|
|
2854
2860
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
2855
2861
|
jsii.set(self, "vpcConfiguration", value) # pyright: ignore[reportArgumentType]
|
|
2856
2862
|
|
|
2863
|
+
@jsii.data_type(
|
|
2864
|
+
jsii_type="aws-cdk-lib.aws_qbusiness.CfnDataSource.AudioExtractionConfigurationProperty",
|
|
2865
|
+
jsii_struct_bases=[],
|
|
2866
|
+
name_mapping={"audio_extraction_status": "audioExtractionStatus"},
|
|
2867
|
+
)
|
|
2868
|
+
class AudioExtractionConfigurationProperty:
|
|
2869
|
+
def __init__(self, *, audio_extraction_status: builtins.str) -> None:
|
|
2870
|
+
'''Configuration settings for audio content extraction and processing.
|
|
2871
|
+
|
|
2872
|
+
:param audio_extraction_status: The status of audio extraction (ENABLED or DISABLED) for processing audio content from files.
|
|
2873
|
+
|
|
2874
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-audioextractionconfiguration.html
|
|
2875
|
+
:exampleMetadata: fixture=_generated
|
|
2876
|
+
|
|
2877
|
+
Example::
|
|
2878
|
+
|
|
2879
|
+
# The code below shows an example of how to instantiate this type.
|
|
2880
|
+
# The values are placeholders you should change.
|
|
2881
|
+
from aws_cdk import aws_qbusiness as qbusiness
|
|
2882
|
+
|
|
2883
|
+
audio_extraction_configuration_property = qbusiness.CfnDataSource.AudioExtractionConfigurationProperty(
|
|
2884
|
+
audio_extraction_status="audioExtractionStatus"
|
|
2885
|
+
)
|
|
2886
|
+
'''
|
|
2887
|
+
if __debug__:
|
|
2888
|
+
type_hints = typing.get_type_hints(_typecheckingstub__7aa789e6cda3c90d0db840a9741bbd7eb7b84f0436483843586f56121cdfe2a1)
|
|
2889
|
+
check_type(argname="argument audio_extraction_status", value=audio_extraction_status, expected_type=type_hints["audio_extraction_status"])
|
|
2890
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
2891
|
+
"audio_extraction_status": audio_extraction_status,
|
|
2892
|
+
}
|
|
2893
|
+
|
|
2894
|
+
@builtins.property
|
|
2895
|
+
def audio_extraction_status(self) -> builtins.str:
|
|
2896
|
+
'''The status of audio extraction (ENABLED or DISABLED) for processing audio content from files.
|
|
2897
|
+
|
|
2898
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-audioextractionconfiguration.html#cfn-qbusiness-datasource-audioextractionconfiguration-audioextractionstatus
|
|
2899
|
+
'''
|
|
2900
|
+
result = self._values.get("audio_extraction_status")
|
|
2901
|
+
assert result is not None, "Required property 'audio_extraction_status' is missing"
|
|
2902
|
+
return typing.cast(builtins.str, result)
|
|
2903
|
+
|
|
2904
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2905
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
2906
|
+
|
|
2907
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
2908
|
+
return not (rhs == self)
|
|
2909
|
+
|
|
2910
|
+
def __repr__(self) -> str:
|
|
2911
|
+
return "AudioExtractionConfigurationProperty(%s)" % ", ".join(
|
|
2912
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
2913
|
+
)
|
|
2914
|
+
|
|
2857
2915
|
@jsii.data_type(
|
|
2858
2916
|
jsii_type="aws-cdk-lib.aws_qbusiness.CfnDataSource.DataSourceVpcConfigurationProperty",
|
|
2859
2917
|
jsii_struct_bases=[],
|
|
@@ -3452,7 +3510,7 @@ class CfnDataSource(
|
|
|
3452
3510
|
For more information, see `Custom document enrichment <https://docs.aws.amazon.com/amazonq/latest/business-use-dg/custom-document-enrichment.html>`_ .
|
|
3453
3511
|
|
|
3454
3512
|
:param invocation_condition: The condition used for when a Lambda function should be invoked. For example, you can specify a condition that if there are empty date-time values, then Amazon Q Business should invoke a function that inserts the current date-time.
|
|
3455
|
-
:param lambda_arn: The Amazon Resource Name (ARN) of
|
|
3513
|
+
:param lambda_arn: The Amazon Resource Name (ARN) of the Lambda function sduring ingestion. For more information, see `Using Lambda functions for Amazon Q Business document enrichment <https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/cde-lambda-operations.html>`_ .
|
|
3456
3514
|
:param role_arn: The Amazon Resource Name (ARN) of a role with permission to run ``PreExtractionHookConfiguration`` and ``PostExtractionHookConfiguration`` for altering document metadata and content during the document ingestion process.
|
|
3457
3515
|
:param s3_bucket_name: Stores the original, raw documents or the structured, parsed documents before and after altering them. For more information, see `Data contracts for Lambda functions <https://docs.aws.amazon.com/amazonq/latest/business-use-dg/cde-lambda-operations.html#cde-lambda-operations-data-contracts>`_ .
|
|
3458
3516
|
|
|
@@ -3514,9 +3572,9 @@ class CfnDataSource(
|
|
|
3514
3572
|
|
|
3515
3573
|
@builtins.property
|
|
3516
3574
|
def lambda_arn(self) -> typing.Optional[builtins.str]:
|
|
3517
|
-
'''The Amazon Resource Name (ARN) of
|
|
3575
|
+
'''The Amazon Resource Name (ARN) of the Lambda function sduring ingestion.
|
|
3518
3576
|
|
|
3519
|
-
For more information, see `
|
|
3577
|
+
For more information, see `Using Lambda functions for Amazon Q Business document enrichment <https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/cde-lambda-operations.html>`_ .
|
|
3520
3578
|
|
|
3521
3579
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-hookconfiguration.html#cfn-qbusiness-datasource-hookconfiguration-lambdaarn
|
|
3522
3580
|
'''
|
|
@@ -3733,18 +3791,24 @@ class CfnDataSource(
|
|
|
3733
3791
|
jsii_type="aws-cdk-lib.aws_qbusiness.CfnDataSource.MediaExtractionConfigurationProperty",
|
|
3734
3792
|
jsii_struct_bases=[],
|
|
3735
3793
|
name_mapping={
|
|
3794
|
+
"audio_extraction_configuration": "audioExtractionConfiguration",
|
|
3736
3795
|
"image_extraction_configuration": "imageExtractionConfiguration",
|
|
3796
|
+
"video_extraction_configuration": "videoExtractionConfiguration",
|
|
3737
3797
|
},
|
|
3738
3798
|
)
|
|
3739
3799
|
class MediaExtractionConfigurationProperty:
|
|
3740
3800
|
def __init__(
|
|
3741
3801
|
self,
|
|
3742
3802
|
*,
|
|
3803
|
+
audio_extraction_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSource.AudioExtractionConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3743
3804
|
image_extraction_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSource.ImageExtractionConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3805
|
+
video_extraction_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDataSource.VideoExtractionConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3744
3806
|
) -> None:
|
|
3745
3807
|
'''The configuration for extracting information from media in documents.
|
|
3746
3808
|
|
|
3809
|
+
:param audio_extraction_configuration: Configuration settings for extracting and processing audio content from media files.
|
|
3747
3810
|
:param image_extraction_configuration: The configuration for extracting semantic meaning from images in documents. For more information, see `Extracting semantic meaning from images and visuals <https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/extracting-meaning-from-images.html>`_ .
|
|
3811
|
+
:param video_extraction_configuration: Configuration settings for extracting and processing video content from media files.
|
|
3748
3812
|
|
|
3749
3813
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-mediaextractionconfiguration.html
|
|
3750
3814
|
:exampleMetadata: fixture=_generated
|
|
@@ -3756,17 +3820,40 @@ class CfnDataSource(
|
|
|
3756
3820
|
from aws_cdk import aws_qbusiness as qbusiness
|
|
3757
3821
|
|
|
3758
3822
|
media_extraction_configuration_property = qbusiness.CfnDataSource.MediaExtractionConfigurationProperty(
|
|
3823
|
+
audio_extraction_configuration=qbusiness.CfnDataSource.AudioExtractionConfigurationProperty(
|
|
3824
|
+
audio_extraction_status="audioExtractionStatus"
|
|
3825
|
+
),
|
|
3759
3826
|
image_extraction_configuration=qbusiness.CfnDataSource.ImageExtractionConfigurationProperty(
|
|
3760
3827
|
image_extraction_status="imageExtractionStatus"
|
|
3828
|
+
),
|
|
3829
|
+
video_extraction_configuration=qbusiness.CfnDataSource.VideoExtractionConfigurationProperty(
|
|
3830
|
+
video_extraction_status="videoExtractionStatus"
|
|
3761
3831
|
)
|
|
3762
3832
|
)
|
|
3763
3833
|
'''
|
|
3764
3834
|
if __debug__:
|
|
3765
3835
|
type_hints = typing.get_type_hints(_typecheckingstub__45d49817772a3b69716257ee4a29683841b4420b41115ce7a18bc124fe4f9f87)
|
|
3836
|
+
check_type(argname="argument audio_extraction_configuration", value=audio_extraction_configuration, expected_type=type_hints["audio_extraction_configuration"])
|
|
3766
3837
|
check_type(argname="argument image_extraction_configuration", value=image_extraction_configuration, expected_type=type_hints["image_extraction_configuration"])
|
|
3838
|
+
check_type(argname="argument video_extraction_configuration", value=video_extraction_configuration, expected_type=type_hints["video_extraction_configuration"])
|
|
3767
3839
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
3840
|
+
if audio_extraction_configuration is not None:
|
|
3841
|
+
self._values["audio_extraction_configuration"] = audio_extraction_configuration
|
|
3768
3842
|
if image_extraction_configuration is not None:
|
|
3769
3843
|
self._values["image_extraction_configuration"] = image_extraction_configuration
|
|
3844
|
+
if video_extraction_configuration is not None:
|
|
3845
|
+
self._values["video_extraction_configuration"] = video_extraction_configuration
|
|
3846
|
+
|
|
3847
|
+
@builtins.property
|
|
3848
|
+
def audio_extraction_configuration(
|
|
3849
|
+
self,
|
|
3850
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSource.AudioExtractionConfigurationProperty"]]:
|
|
3851
|
+
'''Configuration settings for extracting and processing audio content from media files.
|
|
3852
|
+
|
|
3853
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-mediaextractionconfiguration.html#cfn-qbusiness-datasource-mediaextractionconfiguration-audioextractionconfiguration
|
|
3854
|
+
'''
|
|
3855
|
+
result = self._values.get("audio_extraction_configuration")
|
|
3856
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSource.AudioExtractionConfigurationProperty"]], result)
|
|
3770
3857
|
|
|
3771
3858
|
@builtins.property
|
|
3772
3859
|
def image_extraction_configuration(
|
|
@@ -3781,6 +3868,17 @@ class CfnDataSource(
|
|
|
3781
3868
|
result = self._values.get("image_extraction_configuration")
|
|
3782
3869
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSource.ImageExtractionConfigurationProperty"]], result)
|
|
3783
3870
|
|
|
3871
|
+
@builtins.property
|
|
3872
|
+
def video_extraction_configuration(
|
|
3873
|
+
self,
|
|
3874
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSource.VideoExtractionConfigurationProperty"]]:
|
|
3875
|
+
'''Configuration settings for extracting and processing video content from media files.
|
|
3876
|
+
|
|
3877
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-mediaextractionconfiguration.html#cfn-qbusiness-datasource-mediaextractionconfiguration-videoextractionconfiguration
|
|
3878
|
+
'''
|
|
3879
|
+
result = self._values.get("video_extraction_configuration")
|
|
3880
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSource.VideoExtractionConfigurationProperty"]], result)
|
|
3881
|
+
|
|
3784
3882
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
3785
3883
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
3786
3884
|
|
|
@@ -3792,6 +3890,58 @@ class CfnDataSource(
|
|
|
3792
3890
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
3793
3891
|
)
|
|
3794
3892
|
|
|
3893
|
+
@jsii.data_type(
|
|
3894
|
+
jsii_type="aws-cdk-lib.aws_qbusiness.CfnDataSource.VideoExtractionConfigurationProperty",
|
|
3895
|
+
jsii_struct_bases=[],
|
|
3896
|
+
name_mapping={"video_extraction_status": "videoExtractionStatus"},
|
|
3897
|
+
)
|
|
3898
|
+
class VideoExtractionConfigurationProperty:
|
|
3899
|
+
def __init__(self, *, video_extraction_status: builtins.str) -> None:
|
|
3900
|
+
'''Configuration settings for video content extraction and processing.
|
|
3901
|
+
|
|
3902
|
+
:param video_extraction_status: The status of video extraction (ENABLED or DISABLED) for processing video content from files.
|
|
3903
|
+
|
|
3904
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-videoextractionconfiguration.html
|
|
3905
|
+
:exampleMetadata: fixture=_generated
|
|
3906
|
+
|
|
3907
|
+
Example::
|
|
3908
|
+
|
|
3909
|
+
# The code below shows an example of how to instantiate this type.
|
|
3910
|
+
# The values are placeholders you should change.
|
|
3911
|
+
from aws_cdk import aws_qbusiness as qbusiness
|
|
3912
|
+
|
|
3913
|
+
video_extraction_configuration_property = qbusiness.CfnDataSource.VideoExtractionConfigurationProperty(
|
|
3914
|
+
video_extraction_status="videoExtractionStatus"
|
|
3915
|
+
)
|
|
3916
|
+
'''
|
|
3917
|
+
if __debug__:
|
|
3918
|
+
type_hints = typing.get_type_hints(_typecheckingstub__f97caeacd344e3e67dbf0813f2131b0e4d7a3ac8e1f32dcc24431822f666336b)
|
|
3919
|
+
check_type(argname="argument video_extraction_status", value=video_extraction_status, expected_type=type_hints["video_extraction_status"])
|
|
3920
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
3921
|
+
"video_extraction_status": video_extraction_status,
|
|
3922
|
+
}
|
|
3923
|
+
|
|
3924
|
+
@builtins.property
|
|
3925
|
+
def video_extraction_status(self) -> builtins.str:
|
|
3926
|
+
'''The status of video extraction (ENABLED or DISABLED) for processing video content from files.
|
|
3927
|
+
|
|
3928
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-videoextractionconfiguration.html#cfn-qbusiness-datasource-videoextractionconfiguration-videoextractionstatus
|
|
3929
|
+
'''
|
|
3930
|
+
result = self._values.get("video_extraction_status")
|
|
3931
|
+
assert result is not None, "Required property 'video_extraction_status' is missing"
|
|
3932
|
+
return typing.cast(builtins.str, result)
|
|
3933
|
+
|
|
3934
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
3935
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
3936
|
+
|
|
3937
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
3938
|
+
return not (rhs == self)
|
|
3939
|
+
|
|
3940
|
+
def __repr__(self) -> str:
|
|
3941
|
+
return "VideoExtractionConfigurationProperty(%s)" % ", ".join(
|
|
3942
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
3943
|
+
)
|
|
3944
|
+
|
|
3795
3945
|
|
|
3796
3946
|
@jsii.data_type(
|
|
3797
3947
|
jsii_type="aws-cdk-lib.aws_qbusiness.CfnDataSourceProps",
|
|
@@ -3923,8 +4073,14 @@ class CfnDataSourceProps:
|
|
|
3923
4073
|
)
|
|
3924
4074
|
),
|
|
3925
4075
|
media_extraction_configuration=qbusiness.CfnDataSource.MediaExtractionConfigurationProperty(
|
|
4076
|
+
audio_extraction_configuration=qbusiness.CfnDataSource.AudioExtractionConfigurationProperty(
|
|
4077
|
+
audio_extraction_status="audioExtractionStatus"
|
|
4078
|
+
),
|
|
3926
4079
|
image_extraction_configuration=qbusiness.CfnDataSource.ImageExtractionConfigurationProperty(
|
|
3927
4080
|
image_extraction_status="imageExtractionStatus"
|
|
4081
|
+
),
|
|
4082
|
+
video_extraction_configuration=qbusiness.CfnDataSource.VideoExtractionConfigurationProperty(
|
|
4083
|
+
video_extraction_status="videoExtractionStatus"
|
|
3928
4084
|
)
|
|
3929
4085
|
),
|
|
3930
4086
|
role_arn="roleArn",
|
|
@@ -8135,6 +8291,13 @@ def _typecheckingstub__2a2baf273288668ce3827242609bec0e4533974d4ecb7707e426b1a44
|
|
|
8135
8291
|
"""Type checking stubs"""
|
|
8136
8292
|
pass
|
|
8137
8293
|
|
|
8294
|
+
def _typecheckingstub__7aa789e6cda3c90d0db840a9741bbd7eb7b84f0436483843586f56121cdfe2a1(
|
|
8295
|
+
*,
|
|
8296
|
+
audio_extraction_status: builtins.str,
|
|
8297
|
+
) -> None:
|
|
8298
|
+
"""Type checking stubs"""
|
|
8299
|
+
pass
|
|
8300
|
+
|
|
8138
8301
|
def _typecheckingstub__df3bb5deb9e194276e6702b02f19aa8cb471bee4bf023f5613bcb797abcb6c0f(
|
|
8139
8302
|
*,
|
|
8140
8303
|
security_group_ids: typing.Sequence[builtins.str],
|
|
@@ -8208,7 +8371,16 @@ def _typecheckingstub__2025544f51e1e49d0d5dbfb988fb4b22f5cc28a154bdb2e2fe6039f0e
|
|
|
8208
8371
|
|
|
8209
8372
|
def _typecheckingstub__45d49817772a3b69716257ee4a29683841b4420b41115ce7a18bc124fe4f9f87(
|
|
8210
8373
|
*,
|
|
8374
|
+
audio_extraction_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.AudioExtractionConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
8211
8375
|
image_extraction_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.ImageExtractionConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
8376
|
+
video_extraction_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDataSource.VideoExtractionConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
8377
|
+
) -> None:
|
|
8378
|
+
"""Type checking stubs"""
|
|
8379
|
+
pass
|
|
8380
|
+
|
|
8381
|
+
def _typecheckingstub__f97caeacd344e3e67dbf0813f2131b0e4d7a3ac8e1f32dcc24431822f666336b(
|
|
8382
|
+
*,
|
|
8383
|
+
video_extraction_status: builtins.str,
|
|
8212
8384
|
) -> None:
|
|
8213
8385
|
"""Type checking stubs"""
|
|
8214
8386
|
pass
|