aws-cdk-lib 2.165.0__py3-none-any.whl → 2.167.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.

Files changed (60) hide show
  1. aws_cdk/__init__.py +1 -1
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.165.0.jsii.tgz → aws-cdk-lib@2.167.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigateway/__init__.py +9 -0
  5. aws_cdk/aws_appsync/__init__.py +2271 -359
  6. aws_cdk/aws_backup/__init__.py +57 -31
  7. aws_cdk/aws_bedrock/__init__.py +994 -197
  8. aws_cdk/aws_cleanrooms/__init__.py +66 -5
  9. aws_cdk/aws_cloudfront/__init__.py +21 -3
  10. aws_cdk/aws_cloudfront/experimental/__init__.py +3 -3
  11. aws_cdk/aws_codebuild/__init__.py +59 -29
  12. aws_cdk/aws_codepipeline/__init__.py +98 -5
  13. aws_cdk/aws_codestar/__init__.py +1 -1
  14. aws_cdk/aws_cognito/__init__.py +0 -8
  15. aws_cdk/aws_connect/__init__.py +1 -1
  16. aws_cdk/aws_datasync/__init__.py +60 -7
  17. aws_cdk/aws_devopsguru/__init__.py +2 -2
  18. aws_cdk/aws_dms/__init__.py +762 -0
  19. aws_cdk/aws_dynamodb/__init__.py +13 -8
  20. aws_cdk/aws_ec2/__init__.py +316 -11
  21. aws_cdk/aws_ecs/__init__.py +20 -7
  22. aws_cdk/aws_elasticache/__init__.py +16 -9
  23. aws_cdk/aws_elasticloadbalancingv2/__init__.py +73 -46
  24. aws_cdk/aws_emrserverless/__init__.py +35 -33
  25. aws_cdk/aws_events/__init__.py +25 -30
  26. aws_cdk/aws_gamelift/__init__.py +52 -40
  27. aws_cdk/aws_inspectorv2/__init__.py +6 -12
  28. aws_cdk/aws_kinesis/__init__.py +297 -1
  29. aws_cdk/aws_kms/__init__.py +2 -0
  30. aws_cdk/aws_lambda/__init__.py +339 -22
  31. aws_cdk/aws_lambda_nodejs/__init__.py +3 -3
  32. aws_cdk/aws_logs/__init__.py +214 -0
  33. aws_cdk/aws_m2/__init__.py +58 -58
  34. aws_cdk/aws_mediapackagev2/__init__.py +191 -0
  35. aws_cdk/aws_networkfirewall/__init__.py +14 -5
  36. aws_cdk/aws_nimblestudio/__init__.py +6 -103
  37. aws_cdk/aws_opensearchservice/__init__.py +969 -0
  38. aws_cdk/aws_pipes/__init__.py +1 -1
  39. aws_cdk/aws_qbusiness/__init__.py +2 -0
  40. aws_cdk/aws_quicksight/__init__.py +481 -10
  41. aws_cdk/aws_rds/__init__.py +667 -16
  42. aws_cdk/aws_route53/__init__.py +38 -12
  43. aws_cdk/aws_s3_assets/__init__.py +37 -0
  44. aws_cdk/aws_s3_deployment/__init__.py +18 -7
  45. aws_cdk/aws_sagemaker/__init__.py +61 -25
  46. aws_cdk/aws_secretsmanager/__init__.py +2 -1
  47. aws_cdk/aws_servicecatalog/__init__.py +52 -4
  48. aws_cdk/aws_ses/__init__.py +22 -1
  49. aws_cdk/aws_sqs/__init__.py +12 -9
  50. aws_cdk/aws_stepfunctions/__init__.py +8 -0
  51. aws_cdk/aws_synthetics/__init__.py +133 -1
  52. aws_cdk/aws_timestream/__init__.py +41 -0
  53. aws_cdk/aws_wisdom/__init__.py +2348 -54
  54. aws_cdk/triggers/__init__.py +3 -3
  55. {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/METADATA +1 -1
  56. {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/RECORD +60 -60
  57. {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/WHEEL +1 -1
  58. {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/LICENSE +0 -0
  59. {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/NOTICE +0 -0
  60. {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/top_level.txt +0 -0
@@ -1026,6 +1026,7 @@ class CfnOriginEndpoint(
1026
1026
  # the properties below are optional
1027
1027
  drm_signaling="drmSignaling",
1028
1028
  filter_configuration=mediapackagev2.CfnOriginEndpoint.FilterConfigurationProperty(
1029
+ clip_start_time="clipStartTime",
1029
1030
  end="end",
1030
1031
  manifest_filter="manifestFilter",
1031
1032
  start="start",
@@ -1055,6 +1056,7 @@ class CfnOriginEndpoint(
1055
1056
  # the properties below are optional
1056
1057
  child_manifest_name="childManifestName",
1057
1058
  filter_configuration=mediapackagev2.CfnOriginEndpoint.FilterConfigurationProperty(
1059
+ clip_start_time="clipStartTime",
1058
1060
  end="end",
1059
1061
  manifest_filter="manifestFilter",
1060
1062
  start="start",
@@ -1065,6 +1067,12 @@ class CfnOriginEndpoint(
1065
1067
  scte_hls=mediapackagev2.CfnOriginEndpoint.ScteHlsProperty(
1066
1068
  ad_marker_hls="adMarkerHls"
1067
1069
  ),
1070
+ start_tag=mediapackagev2.CfnOriginEndpoint.StartTagProperty(
1071
+ time_offset=123,
1072
+
1073
+ # the properties below are optional
1074
+ precise=False
1075
+ ),
1068
1076
  url="url"
1069
1077
  )],
1070
1078
  low_latency_hls_manifests=[mediapackagev2.CfnOriginEndpoint.LowLatencyHlsManifestConfigurationProperty(
@@ -1073,6 +1081,7 @@ class CfnOriginEndpoint(
1073
1081
  # the properties below are optional
1074
1082
  child_manifest_name="childManifestName",
1075
1083
  filter_configuration=mediapackagev2.CfnOriginEndpoint.FilterConfigurationProperty(
1084
+ clip_start_time="clipStartTime",
1076
1085
  end="end",
1077
1086
  manifest_filter="manifestFilter",
1078
1087
  start="start",
@@ -1083,6 +1092,12 @@ class CfnOriginEndpoint(
1083
1092
  scte_hls=mediapackagev2.CfnOriginEndpoint.ScteHlsProperty(
1084
1093
  ad_marker_hls="adMarkerHls"
1085
1094
  ),
1095
+ start_tag=mediapackagev2.CfnOriginEndpoint.StartTagProperty(
1096
+ time_offset=123,
1097
+
1098
+ # the properties below are optional
1099
+ precise=False
1100
+ ),
1086
1101
  url="url"
1087
1102
  )],
1088
1103
  segment=mediapackagev2.CfnOriginEndpoint.SegmentProperty(
@@ -1512,6 +1527,7 @@ class CfnOriginEndpoint(
1512
1527
  # the properties below are optional
1513
1528
  drm_signaling="drmSignaling",
1514
1529
  filter_configuration=mediapackagev2.CfnOriginEndpoint.FilterConfigurationProperty(
1530
+ clip_start_time="clipStartTime",
1515
1531
  end="end",
1516
1532
  manifest_filter="manifestFilter",
1517
1533
  start="start",
@@ -2049,6 +2065,7 @@ class CfnOriginEndpoint(
2049
2065
  jsii_type="aws-cdk-lib.aws_mediapackagev2.CfnOriginEndpoint.FilterConfigurationProperty",
2050
2066
  jsii_struct_bases=[],
2051
2067
  name_mapping={
2068
+ "clip_start_time": "clipStartTime",
2052
2069
  "end": "end",
2053
2070
  "manifest_filter": "manifestFilter",
2054
2071
  "start": "start",
@@ -2059,6 +2076,7 @@ class CfnOriginEndpoint(
2059
2076
  def __init__(
2060
2077
  self,
2061
2078
  *,
2079
+ clip_start_time: typing.Optional[builtins.str] = None,
2062
2080
  end: typing.Optional[builtins.str] = None,
2063
2081
  manifest_filter: typing.Optional[builtins.str] = None,
2064
2082
  start: typing.Optional[builtins.str] = None,
@@ -2066,6 +2084,7 @@ class CfnOriginEndpoint(
2066
2084
  ) -> None:
2067
2085
  '''Filter configuration includes settings for manifest filtering, start and end times, and time delay that apply to all of your egress requests for this manifest.
2068
2086
 
2087
+ :param clip_start_time: Optionally specify the clip start time for all of your manifest egress requests. When you include clip start time, note that you cannot use clip start time query parameters for this manifest's endpoint URL.
2069
2088
  :param end: Optionally specify the end time for all of your manifest egress requests. When you include end time, note that you cannot use end time query parameters for this manifest's endpoint URL.
2070
2089
  :param manifest_filter: Optionally specify one or more manifest filters for all of your manifest egress requests. When you include a manifest filter, note that you cannot use an identical manifest filter query parameter for this manifest's endpoint URL.
2071
2090
  :param start: Optionally specify the start time for all of your manifest egress requests. When you include start time, note that you cannot use start time query parameters for this manifest's endpoint URL.
@@ -2081,6 +2100,7 @@ class CfnOriginEndpoint(
2081
2100
  from aws_cdk import aws_mediapackagev2 as mediapackagev2
2082
2101
 
2083
2102
  filter_configuration_property = mediapackagev2.CfnOriginEndpoint.FilterConfigurationProperty(
2103
+ clip_start_time="clipStartTime",
2084
2104
  end="end",
2085
2105
  manifest_filter="manifestFilter",
2086
2106
  start="start",
@@ -2089,11 +2109,14 @@ class CfnOriginEndpoint(
2089
2109
  '''
2090
2110
  if __debug__:
2091
2111
  type_hints = typing.get_type_hints(_typecheckingstub__cd4523035a4ce6e5ff7d759a2d3d8f5fc12e2c0c96ad04c9ef1b884c6334f16c)
2112
+ check_type(argname="argument clip_start_time", value=clip_start_time, expected_type=type_hints["clip_start_time"])
2092
2113
  check_type(argname="argument end", value=end, expected_type=type_hints["end"])
2093
2114
  check_type(argname="argument manifest_filter", value=manifest_filter, expected_type=type_hints["manifest_filter"])
2094
2115
  check_type(argname="argument start", value=start, expected_type=type_hints["start"])
2095
2116
  check_type(argname="argument time_delay_seconds", value=time_delay_seconds, expected_type=type_hints["time_delay_seconds"])
2096
2117
  self._values: typing.Dict[builtins.str, typing.Any] = {}
2118
+ if clip_start_time is not None:
2119
+ self._values["clip_start_time"] = clip_start_time
2097
2120
  if end is not None:
2098
2121
  self._values["end"] = end
2099
2122
  if manifest_filter is not None:
@@ -2103,6 +2126,17 @@ class CfnOriginEndpoint(
2103
2126
  if time_delay_seconds is not None:
2104
2127
  self._values["time_delay_seconds"] = time_delay_seconds
2105
2128
 
2129
+ @builtins.property
2130
+ def clip_start_time(self) -> typing.Optional[builtins.str]:
2131
+ '''Optionally specify the clip start time for all of your manifest egress requests.
2132
+
2133
+ When you include clip start time, note that you cannot use clip start time query parameters for this manifest's endpoint URL.
2134
+
2135
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-filterconfiguration.html#cfn-mediapackagev2-originendpoint-filterconfiguration-clipstarttime
2136
+ '''
2137
+ result = self._values.get("clip_start_time")
2138
+ return typing.cast(typing.Optional[builtins.str], result)
2139
+
2106
2140
  @builtins.property
2107
2141
  def end(self) -> typing.Optional[builtins.str]:
2108
2142
  '''Optionally specify the end time for all of your manifest egress requests.
@@ -2230,6 +2264,7 @@ class CfnOriginEndpoint(
2230
2264
  "manifest_window_seconds": "manifestWindowSeconds",
2231
2265
  "program_date_time_interval_seconds": "programDateTimeIntervalSeconds",
2232
2266
  "scte_hls": "scteHls",
2267
+ "start_tag": "startTag",
2233
2268
  "url": "url",
2234
2269
  },
2235
2270
  )
@@ -2243,6 +2278,7 @@ class CfnOriginEndpoint(
2243
2278
  manifest_window_seconds: typing.Optional[jsii.Number] = None,
2244
2279
  program_date_time_interval_seconds: typing.Optional[jsii.Number] = None,
2245
2280
  scte_hls: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.ScteHlsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
2281
+ start_tag: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.StartTagProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
2246
2282
  url: typing.Optional[builtins.str] = None,
2247
2283
  ) -> None:
2248
2284
  '''The HLS manfiest configuration associated with the origin endpoint.
@@ -2253,6 +2289,7 @@ class CfnOriginEndpoint(
2253
2289
  :param manifest_window_seconds: The duration of the manifest window, in seconds, for the HLS manifest configuration.
2254
2290
  :param program_date_time_interval_seconds: The ``EXT-X-PROGRAM-DATE-TIME`` interval, in seconds, associated with the HLS manifest configuration.
2255
2291
  :param scte_hls: THE SCTE-35 HLS configuration associated with the HLS manifest configuration.
2292
+ :param start_tag: When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.
2256
2293
  :param url: The URL of the HLS manifest configuration.
2257
2294
 
2258
2295
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-hlsmanifestconfiguration.html
@@ -2270,6 +2307,7 @@ class CfnOriginEndpoint(
2270
2307
  # the properties below are optional
2271
2308
  child_manifest_name="childManifestName",
2272
2309
  filter_configuration=mediapackagev2.CfnOriginEndpoint.FilterConfigurationProperty(
2310
+ clip_start_time="clipStartTime",
2273
2311
  end="end",
2274
2312
  manifest_filter="manifestFilter",
2275
2313
  start="start",
@@ -2280,6 +2318,12 @@ class CfnOriginEndpoint(
2280
2318
  scte_hls=mediapackagev2.CfnOriginEndpoint.ScteHlsProperty(
2281
2319
  ad_marker_hls="adMarkerHls"
2282
2320
  ),
2321
+ start_tag=mediapackagev2.CfnOriginEndpoint.StartTagProperty(
2322
+ time_offset=123,
2323
+
2324
+ # the properties below are optional
2325
+ precise=False
2326
+ ),
2283
2327
  url="url"
2284
2328
  )
2285
2329
  '''
@@ -2291,6 +2335,7 @@ class CfnOriginEndpoint(
2291
2335
  check_type(argname="argument manifest_window_seconds", value=manifest_window_seconds, expected_type=type_hints["manifest_window_seconds"])
2292
2336
  check_type(argname="argument program_date_time_interval_seconds", value=program_date_time_interval_seconds, expected_type=type_hints["program_date_time_interval_seconds"])
2293
2337
  check_type(argname="argument scte_hls", value=scte_hls, expected_type=type_hints["scte_hls"])
2338
+ check_type(argname="argument start_tag", value=start_tag, expected_type=type_hints["start_tag"])
2294
2339
  check_type(argname="argument url", value=url, expected_type=type_hints["url"])
2295
2340
  self._values: typing.Dict[builtins.str, typing.Any] = {
2296
2341
  "manifest_name": manifest_name,
@@ -2305,6 +2350,8 @@ class CfnOriginEndpoint(
2305
2350
  self._values["program_date_time_interval_seconds"] = program_date_time_interval_seconds
2306
2351
  if scte_hls is not None:
2307
2352
  self._values["scte_hls"] = scte_hls
2353
+ if start_tag is not None:
2354
+ self._values["start_tag"] = start_tag
2308
2355
  if url is not None:
2309
2356
  self._values["url"] = url
2310
2357
 
@@ -2367,6 +2414,18 @@ class CfnOriginEndpoint(
2367
2414
  result = self._values.get("scte_hls")
2368
2415
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.ScteHlsProperty"]], result)
2369
2416
 
2417
+ @builtins.property
2418
+ def start_tag(
2419
+ self,
2420
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.StartTagProperty"]]:
2421
+ '''
2422
+ When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.
2423
+
2424
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-hlsmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-hlsmanifestconfiguration-starttag
2425
+ '''
2426
+ result = self._values.get("start_tag")
2427
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.StartTagProperty"]], result)
2428
+
2370
2429
  @builtins.property
2371
2430
  def url(self) -> typing.Optional[builtins.str]:
2372
2431
  '''The URL of the HLS manifest configuration.
@@ -2397,6 +2456,7 @@ class CfnOriginEndpoint(
2397
2456
  "manifest_window_seconds": "manifestWindowSeconds",
2398
2457
  "program_date_time_interval_seconds": "programDateTimeIntervalSeconds",
2399
2458
  "scte_hls": "scteHls",
2459
+ "start_tag": "startTag",
2400
2460
  "url": "url",
2401
2461
  },
2402
2462
  )
@@ -2410,6 +2470,7 @@ class CfnOriginEndpoint(
2410
2470
  manifest_window_seconds: typing.Optional[jsii.Number] = None,
2411
2471
  program_date_time_interval_seconds: typing.Optional[jsii.Number] = None,
2412
2472
  scte_hls: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.ScteHlsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
2473
+ start_tag: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.StartTagProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
2413
2474
  url: typing.Optional[builtins.str] = None,
2414
2475
  ) -> None:
2415
2476
  '''Specify a low-latency HTTP live streaming (LL-HLS) manifest configuration.
@@ -2420,6 +2481,7 @@ class CfnOriginEndpoint(
2420
2481
  :param manifest_window_seconds: The total duration (in seconds) of the manifest's content.
2421
2482
  :param program_date_time_interval_seconds: Inserts ``EXT-X-PROGRAM-DATE-TIME`` tags in the output manifest at the interval that you specify. If you don't enter an interval, ``EXT-X-PROGRAM-DATE-TIME`` tags aren't included in the manifest. The tags sync the stream to the wall clock so that viewers can seek to a specific time in the playback timeline on the player. ``ID3Timed`` metadata messages generate every 5 seconds whenever MediaPackage ingests the content. Irrespective of this parameter, if any ``ID3Timed`` metadata is in the HLS input, MediaPackage passes through that metadata to the HLS output.
2422
2483
  :param scte_hls: The SCTE-35 HLS configuration associated with the low-latency HLS (LL-HLS) manifest configuration of the origin endpoint.
2484
+ :param start_tag: When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.
2423
2485
  :param url: The URL of the low-latency HLS (LL-HLS) manifest configuration of the origin endpoint.
2424
2486
 
2425
2487
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-lowlatencyhlsmanifestconfiguration.html
@@ -2437,6 +2499,7 @@ class CfnOriginEndpoint(
2437
2499
  # the properties below are optional
2438
2500
  child_manifest_name="childManifestName",
2439
2501
  filter_configuration=mediapackagev2.CfnOriginEndpoint.FilterConfigurationProperty(
2502
+ clip_start_time="clipStartTime",
2440
2503
  end="end",
2441
2504
  manifest_filter="manifestFilter",
2442
2505
  start="start",
@@ -2447,6 +2510,12 @@ class CfnOriginEndpoint(
2447
2510
  scte_hls=mediapackagev2.CfnOriginEndpoint.ScteHlsProperty(
2448
2511
  ad_marker_hls="adMarkerHls"
2449
2512
  ),
2513
+ start_tag=mediapackagev2.CfnOriginEndpoint.StartTagProperty(
2514
+ time_offset=123,
2515
+
2516
+ # the properties below are optional
2517
+ precise=False
2518
+ ),
2450
2519
  url="url"
2451
2520
  )
2452
2521
  '''
@@ -2458,6 +2527,7 @@ class CfnOriginEndpoint(
2458
2527
  check_type(argname="argument manifest_window_seconds", value=manifest_window_seconds, expected_type=type_hints["manifest_window_seconds"])
2459
2528
  check_type(argname="argument program_date_time_interval_seconds", value=program_date_time_interval_seconds, expected_type=type_hints["program_date_time_interval_seconds"])
2460
2529
  check_type(argname="argument scte_hls", value=scte_hls, expected_type=type_hints["scte_hls"])
2530
+ check_type(argname="argument start_tag", value=start_tag, expected_type=type_hints["start_tag"])
2461
2531
  check_type(argname="argument url", value=url, expected_type=type_hints["url"])
2462
2532
  self._values: typing.Dict[builtins.str, typing.Any] = {
2463
2533
  "manifest_name": manifest_name,
@@ -2472,6 +2542,8 @@ class CfnOriginEndpoint(
2472
2542
  self._values["program_date_time_interval_seconds"] = program_date_time_interval_seconds
2473
2543
  if scte_hls is not None:
2474
2544
  self._values["scte_hls"] = scte_hls
2545
+ if start_tag is not None:
2546
+ self._values["start_tag"] = start_tag
2475
2547
  if url is not None:
2476
2548
  self._values["url"] = url
2477
2549
 
@@ -2540,6 +2612,18 @@ class CfnOriginEndpoint(
2540
2612
  result = self._values.get("scte_hls")
2541
2613
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.ScteHlsProperty"]], result)
2542
2614
 
2615
+ @builtins.property
2616
+ def start_tag(
2617
+ self,
2618
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.StartTagProperty"]]:
2619
+ '''
2620
+ When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.
2621
+
2622
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-lowlatencyhlsmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-lowlatencyhlsmanifestconfiguration-starttag
2623
+ '''
2624
+ result = self._values.get("start_tag")
2625
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.StartTagProperty"]], result)
2626
+
2543
2627
  @builtins.property
2544
2628
  def url(self) -> typing.Optional[builtins.str]:
2545
2629
  '''The URL of the low-latency HLS (LL-HLS) manifest configuration of the origin endpoint.
@@ -3051,6 +3135,87 @@ class CfnOriginEndpoint(
3051
3135
  k + "=" + repr(v) for k, v in self._values.items()
3052
3136
  )
3053
3137
 
3138
+ @jsii.data_type(
3139
+ jsii_type="aws-cdk-lib.aws_mediapackagev2.CfnOriginEndpoint.StartTagProperty",
3140
+ jsii_struct_bases=[],
3141
+ name_mapping={"time_offset": "timeOffset", "precise": "precise"},
3142
+ )
3143
+ class StartTagProperty:
3144
+ def __init__(
3145
+ self,
3146
+ *,
3147
+ time_offset: jsii.Number,
3148
+ precise: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
3149
+ ) -> None:
3150
+ '''To insert an EXT-X-START tag in your HLS playlist, specify a StartTag configuration object with a valid TimeOffset.
3151
+
3152
+ When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.
3153
+
3154
+ :param time_offset: Specify the value for TIME-OFFSET within your EXT-X-START tag. Enter a signed floating point value which, if positive, must be less than the configured manifest duration minus three times the configured segment target duration. If negative, the absolute value must be larger than three times the configured segment target duration, and the absolute value must be smaller than the configured manifest duration.
3155
+ :param precise: Specify the value for PRECISE within your EXT-X-START tag. Leave blank, or choose false, to use the default value NO. Choose yes to use the value YES.
3156
+
3157
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-starttag.html
3158
+ :exampleMetadata: fixture=_generated
3159
+
3160
+ Example::
3161
+
3162
+ # The code below shows an example of how to instantiate this type.
3163
+ # The values are placeholders you should change.
3164
+ from aws_cdk import aws_mediapackagev2 as mediapackagev2
3165
+
3166
+ start_tag_property = mediapackagev2.CfnOriginEndpoint.StartTagProperty(
3167
+ time_offset=123,
3168
+
3169
+ # the properties below are optional
3170
+ precise=False
3171
+ )
3172
+ '''
3173
+ if __debug__:
3174
+ type_hints = typing.get_type_hints(_typecheckingstub__638acac01659df889e5cbdebcde00e01e52315bf2fdb140c76d10ea5a120c30a)
3175
+ check_type(argname="argument time_offset", value=time_offset, expected_type=type_hints["time_offset"])
3176
+ check_type(argname="argument precise", value=precise, expected_type=type_hints["precise"])
3177
+ self._values: typing.Dict[builtins.str, typing.Any] = {
3178
+ "time_offset": time_offset,
3179
+ }
3180
+ if precise is not None:
3181
+ self._values["precise"] = precise
3182
+
3183
+ @builtins.property
3184
+ def time_offset(self) -> jsii.Number:
3185
+ '''Specify the value for TIME-OFFSET within your EXT-X-START tag.
3186
+
3187
+ Enter a signed floating point value which, if positive, must be less than the configured manifest duration minus three times the configured segment target duration. If negative, the absolute value must be larger than three times the configured segment target duration, and the absolute value must be smaller than the configured manifest duration.
3188
+
3189
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-starttag.html#cfn-mediapackagev2-originendpoint-starttag-timeoffset
3190
+ '''
3191
+ result = self._values.get("time_offset")
3192
+ assert result is not None, "Required property 'time_offset' is missing"
3193
+ return typing.cast(jsii.Number, result)
3194
+
3195
+ @builtins.property
3196
+ def precise(
3197
+ self,
3198
+ ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
3199
+ '''Specify the value for PRECISE within your EXT-X-START tag.
3200
+
3201
+ Leave blank, or choose false, to use the default value NO. Choose yes to use the value YES.
3202
+
3203
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-starttag.html#cfn-mediapackagev2-originendpoint-starttag-precise
3204
+ '''
3205
+ result = self._values.get("precise")
3206
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
3207
+
3208
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
3209
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
3210
+
3211
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
3212
+ return not (rhs == self)
3213
+
3214
+ def __repr__(self) -> str:
3215
+ return "StartTagProperty(%s)" % ", ".join(
3216
+ k + "=" + repr(v) for k, v in self._values.items()
3217
+ )
3218
+
3054
3219
 
3055
3220
  @jsii.implements(_IInspectable_c2943556)
3056
3221
  class CfnOriginEndpointPolicy(
@@ -3380,6 +3545,7 @@ class CfnOriginEndpointProps:
3380
3545
  # the properties below are optional
3381
3546
  drm_signaling="drmSignaling",
3382
3547
  filter_configuration=mediapackagev2.CfnOriginEndpoint.FilterConfigurationProperty(
3548
+ clip_start_time="clipStartTime",
3383
3549
  end="end",
3384
3550
  manifest_filter="manifestFilter",
3385
3551
  start="start",
@@ -3409,6 +3575,7 @@ class CfnOriginEndpointProps:
3409
3575
  # the properties below are optional
3410
3576
  child_manifest_name="childManifestName",
3411
3577
  filter_configuration=mediapackagev2.CfnOriginEndpoint.FilterConfigurationProperty(
3578
+ clip_start_time="clipStartTime",
3412
3579
  end="end",
3413
3580
  manifest_filter="manifestFilter",
3414
3581
  start="start",
@@ -3419,6 +3586,12 @@ class CfnOriginEndpointProps:
3419
3586
  scte_hls=mediapackagev2.CfnOriginEndpoint.ScteHlsProperty(
3420
3587
  ad_marker_hls="adMarkerHls"
3421
3588
  ),
3589
+ start_tag=mediapackagev2.CfnOriginEndpoint.StartTagProperty(
3590
+ time_offset=123,
3591
+
3592
+ # the properties below are optional
3593
+ precise=False
3594
+ ),
3422
3595
  url="url"
3423
3596
  )],
3424
3597
  low_latency_hls_manifests=[mediapackagev2.CfnOriginEndpoint.LowLatencyHlsManifestConfigurationProperty(
@@ -3427,6 +3600,7 @@ class CfnOriginEndpointProps:
3427
3600
  # the properties below are optional
3428
3601
  child_manifest_name="childManifestName",
3429
3602
  filter_configuration=mediapackagev2.CfnOriginEndpoint.FilterConfigurationProperty(
3603
+ clip_start_time="clipStartTime",
3430
3604
  end="end",
3431
3605
  manifest_filter="manifestFilter",
3432
3606
  start="start",
@@ -3437,6 +3611,12 @@ class CfnOriginEndpointProps:
3437
3611
  scte_hls=mediapackagev2.CfnOriginEndpoint.ScteHlsProperty(
3438
3612
  ad_marker_hls="adMarkerHls"
3439
3613
  ),
3614
+ start_tag=mediapackagev2.CfnOriginEndpoint.StartTagProperty(
3615
+ time_offset=123,
3616
+
3617
+ # the properties below are optional
3618
+ precise=False
3619
+ ),
3440
3620
  url="url"
3441
3621
  )],
3442
3622
  segment=mediapackagev2.CfnOriginEndpoint.SegmentProperty(
@@ -3995,6 +4175,7 @@ def _typecheckingstub__ba68bba2e5edd62f12d66393f036d9e0dc8f60c4705d328714b3a2f95
3995
4175
 
3996
4176
  def _typecheckingstub__cd4523035a4ce6e5ff7d759a2d3d8f5fc12e2c0c96ad04c9ef1b884c6334f16c(
3997
4177
  *,
4178
+ clip_start_time: typing.Optional[builtins.str] = None,
3998
4179
  end: typing.Optional[builtins.str] = None,
3999
4180
  manifest_filter: typing.Optional[builtins.str] = None,
4000
4181
  start: typing.Optional[builtins.str] = None,
@@ -4018,6 +4199,7 @@ def _typecheckingstub__b59520e6fbce62f410265deeb9cc043e1cf408c2c3cc498907eb73fcc
4018
4199
  manifest_window_seconds: typing.Optional[jsii.Number] = None,
4019
4200
  program_date_time_interval_seconds: typing.Optional[jsii.Number] = None,
4020
4201
  scte_hls: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.ScteHlsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
4202
+ start_tag: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.StartTagProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
4021
4203
  url: typing.Optional[builtins.str] = None,
4022
4204
  ) -> None:
4023
4205
  """Type checking stubs"""
@@ -4031,6 +4213,7 @@ def _typecheckingstub__7ba3db62514b88b8da1b21ec0b9459116f857508c0670adb698a120b3
4031
4213
  manifest_window_seconds: typing.Optional[jsii.Number] = None,
4032
4214
  program_date_time_interval_seconds: typing.Optional[jsii.Number] = None,
4033
4215
  scte_hls: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.ScteHlsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
4216
+ start_tag: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.StartTagProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
4034
4217
  url: typing.Optional[builtins.str] = None,
4035
4218
  ) -> None:
4036
4219
  """Type checking stubs"""
@@ -4081,6 +4264,14 @@ def _typecheckingstub__e4c003b5dabc0ccf6e42c45fb4504036521870f7799525c5b18f42c7c
4081
4264
  """Type checking stubs"""
4082
4265
  pass
4083
4266
 
4267
+ def _typecheckingstub__638acac01659df889e5cbdebcde00e01e52315bf2fdb140c76d10ea5a120c30a(
4268
+ *,
4269
+ time_offset: jsii.Number,
4270
+ precise: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
4271
+ ) -> None:
4272
+ """Type checking stubs"""
4273
+ pass
4274
+
4084
4275
  def _typecheckingstub__aac7ba5cbcac1c12933a477adf316805431ea433d0ce36ca80901377b6745377(
4085
4276
  scope: _constructs_77d1e7e8.Construct,
4086
4277
  id: builtins.str,
@@ -1158,8 +1158,11 @@ class CfnFirewallPolicy(
1158
1158
  *,
1159
1159
  tcp_idle_timeout_seconds: typing.Optional[jsii.Number] = None,
1160
1160
  ) -> None:
1161
- '''
1162
- :param tcp_idle_timeout_seconds:
1161
+ '''Describes the amount of time that can pass without any traffic sent through the firewall before the firewall determines that the connection is idle and Network Firewall removes the flow entry from its flow table.
1162
+
1163
+ Existing connections and flows are not impacted when you update this value. Only new connections after you update this value are impacted.
1164
+
1165
+ :param tcp_idle_timeout_seconds: The number of seconds that can pass without any TCP traffic sent through the firewall before the firewall determines that the connection is idle. After the idle timeout passes, data packets are dropped, however, the next TCP SYN packet is considered a new flow and is processed by the firewall. Clients or targets can use TCP keepalive packets to reset the idle timeout. You can define the ``TcpIdleTimeoutSeconds`` value to be between 60 and 6000 seconds. If no value is provided, it defaults to 350 seconds.
1163
1166
 
1164
1167
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-firewallpolicy-flowtimeouts.html
1165
1168
  :exampleMetadata: fixture=_generated
@@ -1183,7 +1186,12 @@ class CfnFirewallPolicy(
1183
1186
 
1184
1187
  @builtins.property
1185
1188
  def tcp_idle_timeout_seconds(self) -> typing.Optional[jsii.Number]:
1186
- '''
1189
+ '''The number of seconds that can pass without any TCP traffic sent through the firewall before the firewall determines that the connection is idle.
1190
+
1191
+ After the idle timeout passes, data packets are dropped, however, the next TCP SYN packet is considered a new flow and is processed by the firewall. Clients or targets can use TCP keepalive packets to reset the idle timeout.
1192
+
1193
+ You can define the ``TcpIdleTimeoutSeconds`` value to be between 60 and 6000 seconds. If no value is provided, it defaults to 350 seconds.
1194
+
1187
1195
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-firewallpolicy-flowtimeouts.html#cfn-networkfirewall-firewallpolicy-flowtimeouts-tcpidletimeoutseconds
1188
1196
  '''
1189
1197
  result = self._values.get("tcp_idle_timeout_seconds")
@@ -1400,7 +1408,7 @@ class CfnFirewallPolicy(
1400
1408
  ) -> None:
1401
1409
  '''Configuration settings for the handling of the stateful rule groups in a firewall policy.
1402
1410
 
1403
- :param flow_timeouts:
1411
+ :param flow_timeouts: Configures the amount of time that can pass without any traffic sent through the firewall before the firewall determines that the connection is idle.
1404
1412
  :param rule_order: Indicates how to manage the order of stateful rule evaluation for the policy. ``DEFAULT_ACTION_ORDER`` is the default behavior. Stateful rules are provided to the rule engine as Suricata compatible strings, and Suricata evaluates them based on certain settings. For more information, see `Evaluation order for stateful rules <https://docs.aws.amazon.com/network-firewall/latest/developerguide/suricata-rule-evaluation-order.html>`_ in the *AWS Network Firewall Developer Guide* .
1405
1413
  :param stream_exception_policy: Configures how Network Firewall processes traffic when a network connection breaks midstream. Network connections can break due to disruptions in external networks or within the firewall itself. - ``DROP`` - Network Firewall fails closed and drops all subsequent traffic going to the firewall. This is the default behavior. - ``CONTINUE`` - Network Firewall continues to apply rules to the subsequent traffic without context from traffic before the break. This impacts the behavior of rules that depend on this context. For example, if you have a stateful rule to ``drop http`` traffic, Network Firewall won't match the traffic for this rule because the service won't have the context from session initialization defining the application layer protocol as HTTP. However, this behavior is rule dependent—a TCP-layer rule using a ``flow:stateless`` rule would still match, as would the ``aws:drop_strict`` default action. - ``REJECT`` - Network Firewall fails closed and drops all subsequent traffic going to the firewall. Network Firewall also sends a TCP reject packet back to your client so that the client can immediately establish a new session. Network Firewall will have context about the new session and will apply rules to the subsequent traffic.
1406
1414
 
@@ -1438,7 +1446,8 @@ class CfnFirewallPolicy(
1438
1446
  def flow_timeouts(
1439
1447
  self,
1440
1448
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnFirewallPolicy.FlowTimeoutsProperty"]]:
1441
- '''
1449
+ '''Configures the amount of time that can pass without any traffic sent through the firewall before the firewall determines that the connection is idle.
1450
+
1442
1451
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-firewallpolicy-statefulengineoptions.html#cfn-networkfirewall-firewallpolicy-statefulengineoptions-flowtimeouts
1443
1452
  '''
1444
1453
  result = self._values.get("flow_timeouts")