aws-cdk-lib 2.196.1__py3-none-any.whl → 2.198.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 +2 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.196.1.jsii.tgz → aws-cdk-lib@2.198.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +90 -1
- aws_cdk/aws_apigatewayv2/__init__.py +866 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +36 -0
- aws_cdk/aws_appsync/__init__.py +31 -21
- aws_cdk/aws_autoscaling/__init__.py +2 -1
- aws_cdk/aws_bedrock/__init__.py +32 -26
- aws_cdk/aws_cloudfront/__init__.py +9 -3
- aws_cdk/aws_cloudwatch/__init__.py +756 -29
- aws_cdk/aws_codebuild/__init__.py +19 -0
- aws_cdk/aws_codepipeline/__init__.py +44 -7
- aws_cdk/aws_datasync/__init__.py +850 -833
- aws_cdk/aws_datazone/__init__.py +615 -2
- aws_cdk/aws_deadline/__init__.py +162 -4
- aws_cdk/aws_dsql/__init__.py +35 -1
- aws_cdk/aws_ec2/__init__.py +291 -7
- aws_cdk/aws_ecs/__init__.py +38 -19
- aws_cdk/aws_ecs_patterns/__init__.py +15 -9
- aws_cdk/aws_elasticache/__init__.py +5 -5
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +14 -8
- aws_cdk/aws_gamelift/__init__.py +103 -17
- aws_cdk/aws_gameliftstreams/__init__.py +6 -6
- aws_cdk/aws_lex/__init__.py +1245 -172
- aws_cdk/aws_mediapackagev2/__init__.py +11 -10
- aws_cdk/aws_omics/__init__.py +939 -100
- aws_cdk/aws_pcs/__init__.py +126 -0
- aws_cdk/aws_rds/__init__.py +42 -15
- aws_cdk/aws_rolesanywhere/__init__.py +14 -13
- aws_cdk/aws_route53resolver/__init__.py +0 -41
- aws_cdk/aws_sagemaker/__init__.py +38 -12
- aws_cdk/aws_ses/__init__.py +192 -4
- aws_cdk/aws_ssmquicksetup/__init__.py +10 -2
- aws_cdk/aws_synthetics/__init__.py +137 -3
- aws_cdk/aws_wafv2/__init__.py +4 -4
- aws_cdk/aws_workspaces/__init__.py +41 -0
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.198.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.198.0.dist-info}/RECORD +43 -43
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.198.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.198.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.198.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.196.1.dist-info → aws_cdk_lib-2.198.0.dist-info}/top_level.txt +0 -0
|
@@ -201,7 +201,7 @@ class CfnChannel(
|
|
|
201
201
|
@builtins.property
|
|
202
202
|
@jsii.member(jsii_name="attrCreatedAt")
|
|
203
203
|
def attr_created_at(self) -> builtins.str:
|
|
204
|
-
'''The timestamp of the
|
|
204
|
+
'''The timestamp of the creation of the channel.
|
|
205
205
|
|
|
206
206
|
:cloudformationAttribute: CreatedAt
|
|
207
207
|
'''
|
|
@@ -540,7 +540,7 @@ class CfnChannelGroup(
|
|
|
540
540
|
metaclass=jsii.JSIIMeta,
|
|
541
541
|
jsii_type="aws-cdk-lib.aws_mediapackagev2.CfnChannelGroup",
|
|
542
542
|
):
|
|
543
|
-
'''Specifies the
|
|
543
|
+
'''Specifies the configuration for a MediaPackage V2 channel group.
|
|
544
544
|
|
|
545
545
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackagev2-channelgroup.html
|
|
546
546
|
:cloudformationResource: AWS::MediaPackageV2::ChannelGroup
|
|
@@ -1374,7 +1374,7 @@ class CfnOriginEndpoint(
|
|
|
1374
1374
|
:param dash_manifests: A DASH manifest configuration.
|
|
1375
1375
|
:param description: The description associated with the origin endpoint.
|
|
1376
1376
|
:param force_endpoint_error_configuration: The failover settings for the endpoint.
|
|
1377
|
-
:param hls_manifests: The HLS
|
|
1377
|
+
:param hls_manifests: The HLS manifests associated with the origin endpoint configuration.
|
|
1378
1378
|
:param low_latency_hls_manifests: The low-latency HLS (LL-HLS) manifests associated with the origin endpoint.
|
|
1379
1379
|
:param segment: The segment associated with the origin endpoint.
|
|
1380
1380
|
:param startover_window_seconds: The size of the window (in seconds) to specify a window of the live stream that's available for on-demand viewing. Viewers can start-over or catch-up on content that falls within the window.
|
|
@@ -1599,7 +1599,7 @@ class CfnOriginEndpoint(
|
|
|
1599
1599
|
def hls_manifests(
|
|
1600
1600
|
self,
|
|
1601
1601
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.HlsManifestConfigurationProperty"]]]]:
|
|
1602
|
-
'''The HLS
|
|
1602
|
+
'''The HLS manifests associated with the origin endpoint configuration.'''
|
|
1603
1603
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.HlsManifestConfigurationProperty"]]]], jsii.get(self, "hlsManifests"))
|
|
1604
1604
|
|
|
1605
1605
|
@hls_manifests.setter
|
|
@@ -1707,7 +1707,8 @@ class CfnOriginEndpoint(
|
|
|
1707
1707
|
suggested_presentation_delay_seconds: typing.Optional[jsii.Number] = None,
|
|
1708
1708
|
utc_timing: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.DashUtcTimingProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1709
1709
|
) -> None:
|
|
1710
|
-
'''
|
|
1710
|
+
'''The DASH manifest configuration associated with the origin endpoint.
|
|
1711
|
+
|
|
1711
1712
|
:param manifest_name: The manifest name creates a unique path to this endpoint. If you don't enter a value, MediaPackage uses the default manifest name, index.
|
|
1712
1713
|
:param drm_signaling:
|
|
1713
1714
|
:param filter_configuration:
|
|
@@ -2493,7 +2494,7 @@ class CfnOriginEndpoint(
|
|
|
2493
2494
|
url: typing.Optional[builtins.str] = None,
|
|
2494
2495
|
url_encode_child_manifest: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
2495
2496
|
) -> None:
|
|
2496
|
-
'''The HLS
|
|
2497
|
+
'''The HLS manifest configuration associated with the origin endpoint.
|
|
2497
2498
|
|
|
2498
2499
|
:param manifest_name: The name of the manifest associated with the HLS manifest configuration.
|
|
2499
2500
|
:param child_manifest_name: The name of the child manifest associated with the HLS manifest configuration.
|
|
@@ -2706,7 +2707,7 @@ class CfnOriginEndpoint(
|
|
|
2706
2707
|
) -> None:
|
|
2707
2708
|
'''Specify a low-latency HTTP live streaming (LL-HLS) manifest configuration.
|
|
2708
2709
|
|
|
2709
|
-
:param manifest_name: A short
|
|
2710
|
+
:param manifest_name: A short string that's appended to the endpoint URL. The manifest name creates a unique path to this endpoint. If you don't enter a value, MediaPackage uses the default manifest name, ``index`` . MediaPackage automatically inserts the format extension, such as ``.m3u8`` . You can't use the same manifest name if you use HLS manifest and low-latency HLS manifest. The ``manifestName`` on the ``HLSManifest`` object overrides the ``manifestName`` you provided on the ``originEndpoint`` object.
|
|
2710
2711
|
:param child_manifest_name: The name of the child manifest associated with the low-latency HLS (LL-HLS) manifest configuration of the origin endpoint.
|
|
2711
2712
|
:param filter_configuration:
|
|
2712
2713
|
:param manifest_window_seconds: The total duration (in seconds) of the manifest's content.
|
|
@@ -2785,7 +2786,7 @@ class CfnOriginEndpoint(
|
|
|
2785
2786
|
|
|
2786
2787
|
@builtins.property
|
|
2787
2788
|
def manifest_name(self) -> builtins.str:
|
|
2788
|
-
'''A short
|
|
2789
|
+
'''A short string that's appended to the endpoint URL.
|
|
2789
2790
|
|
|
2790
2791
|
The manifest name creates a unique path to this endpoint. If you don't enter a value, MediaPackage uses the default manifest name, ``index`` . MediaPackage automatically inserts the format extension, such as ``.m3u8`` . You can't use the same manifest name if you use HLS manifest and low-latency HLS manifest. The ``manifestName`` on the ``HLSManifest`` object overrides the ``manifestName`` you provided on the ``originEndpoint`` object.
|
|
2791
2792
|
|
|
@@ -3765,7 +3766,7 @@ class CfnOriginEndpointProps:
|
|
|
3765
3766
|
:param dash_manifests: A DASH manifest configuration.
|
|
3766
3767
|
:param description: The description associated with the origin endpoint.
|
|
3767
3768
|
:param force_endpoint_error_configuration: The failover settings for the endpoint.
|
|
3768
|
-
:param hls_manifests: The HLS
|
|
3769
|
+
:param hls_manifests: The HLS manifests associated with the origin endpoint configuration.
|
|
3769
3770
|
:param low_latency_hls_manifests: The low-latency HLS (LL-HLS) manifests associated with the origin endpoint.
|
|
3770
3771
|
:param segment: The segment associated with the origin endpoint.
|
|
3771
3772
|
:param startover_window_seconds: The size of the window (in seconds) to specify a window of the live stream that's available for on-demand viewing. Viewers can start-over or catch-up on content that falls within the window.
|
|
@@ -4018,7 +4019,7 @@ class CfnOriginEndpointProps:
|
|
|
4018
4019
|
def hls_manifests(
|
|
4019
4020
|
self,
|
|
4020
4021
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnOriginEndpoint.HlsManifestConfigurationProperty]]]]:
|
|
4021
|
-
'''The HLS
|
|
4022
|
+
'''The HLS manifests associated with the origin endpoint configuration.
|
|
4022
4023
|
|
|
4023
4024
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackagev2-originendpoint.html#cfn-mediapackagev2-originendpoint-hlsmanifests
|
|
4024
4025
|
'''
|