aws-cdk-lib 2.205.0__py3-none-any.whl → 2.207.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 (30) hide show
  1. aws_cdk/__init__.py +96 -15
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.205.0.jsii.tgz → aws-cdk-lib@2.207.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_aiops/__init__.py +66 -76
  5. aws_cdk/aws_autoscaling/__init__.py +20 -0
  6. aws_cdk/aws_bedrock/__init__.py +126 -70
  7. aws_cdk/aws_certificatemanager/__init__.py +3 -3
  8. aws_cdk/aws_cleanrooms/__init__.py +6 -2
  9. aws_cdk/aws_cloudformation/__init__.py +28 -15
  10. aws_cdk/aws_cloudwatch/__init__.py +574 -33
  11. aws_cdk/aws_datasync/__init__.py +14 -15
  12. aws_cdk/aws_ec2/__init__.py +6 -2
  13. aws_cdk/aws_ecs/__init__.py +773 -212
  14. aws_cdk/aws_iotsitewise/__init__.py +13 -9
  15. aws_cdk/aws_kms/__init__.py +19 -17
  16. aws_cdk/aws_logs/__init__.py +4725 -763
  17. aws_cdk/aws_mediapackagev2/__init__.py +69 -48
  18. aws_cdk/aws_opsworkscm/__init__.py +2 -4
  19. aws_cdk/aws_rds/__init__.py +150 -17
  20. aws_cdk/aws_s3/__init__.py +9 -6
  21. aws_cdk/aws_sagemaker/__init__.py +3 -3
  22. aws_cdk/aws_ssm/__init__.py +58 -33
  23. aws_cdk/aws_transfer/__init__.py +21 -11
  24. aws_cdk/custom_resources/__init__.py +32 -4
  25. {aws_cdk_lib-2.205.0.dist-info → aws_cdk_lib-2.207.0.dist-info}/METADATA +1 -1
  26. {aws_cdk_lib-2.205.0.dist-info → aws_cdk_lib-2.207.0.dist-info}/RECORD +30 -30
  27. {aws_cdk_lib-2.205.0.dist-info → aws_cdk_lib-2.207.0.dist-info}/LICENSE +0 -0
  28. {aws_cdk_lib-2.205.0.dist-info → aws_cdk_lib-2.207.0.dist-info}/NOTICE +0 -0
  29. {aws_cdk_lib-2.205.0.dist-info → aws_cdk_lib-2.207.0.dist-info}/WHEEL +0 -0
  30. {aws_cdk_lib-2.205.0.dist-info → aws_cdk_lib-2.207.0.dist-info}/top_level.txt +0 -0
@@ -141,7 +141,7 @@ class CfnChannel(
141
141
  :param input_switch_configuration: The configuration for input switching based on the media quality confidence score (MQCS) as provided from AWS Elemental MediaLive.
142
142
  :param input_type: The input type will be an immutable field which will be used to define whether the channel will allow CMAF ingest or HLS ingest. If unprovided, it will default to HLS to preserve current behavior. The allowed values are: - ``HLS`` - The HLS streaming specification (which defines M3U8 manifests and TS segments). - ``CMAF`` - The DASH-IF CMAF Ingest specification (which defines CMAF segments with optional DASH manifests).
143
143
  :param output_header_configuration: The settings for what common media server data (CMSD) headers AWS Elemental MediaPackage includes in responses to the CDN.
144
- :param tags: The tags associated with the channel.
144
+ :param tags:
145
145
  '''
146
146
  if __debug__:
147
147
  type_hints = typing.get_type_hints(_typecheckingstub__f5f12d43fb05232f03795c27e5dde1f408f5762e93edacb27e01efb9e0e3c7c1)
@@ -219,7 +219,8 @@ class CfnChannel(
219
219
  @builtins.property
220
220
  @jsii.member(jsii_name="attrIngestEndpointUrls")
221
221
  def attr_ingest_endpoint_urls(self) -> typing.List[builtins.str]:
222
- '''
222
+ '''The ingest domain URL where the source stream should be sent.
223
+
223
224
  :cloudformationAttribute: IngestEndpointUrls
224
225
  '''
225
226
  return typing.cast(typing.List[builtins.str], jsii.get(self, "attrIngestEndpointUrls"))
@@ -335,7 +336,6 @@ class CfnChannel(
335
336
  @builtins.property
336
337
  @jsii.member(jsii_name="tags")
337
338
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
338
- '''The tags associated with the channel.'''
339
339
  return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
340
340
 
341
341
  @tags.setter
@@ -1059,7 +1059,7 @@ class CfnChannelProps:
1059
1059
  :param input_switch_configuration: The configuration for input switching based on the media quality confidence score (MQCS) as provided from AWS Elemental MediaLive.
1060
1060
  :param input_type: The input type will be an immutable field which will be used to define whether the channel will allow CMAF ingest or HLS ingest. If unprovided, it will default to HLS to preserve current behavior. The allowed values are: - ``HLS`` - The HLS streaming specification (which defines M3U8 manifests and TS segments). - ``CMAF`` - The DASH-IF CMAF Ingest specification (which defines CMAF segments with optional DASH manifests).
1061
1061
  :param output_header_configuration: The settings for what common media server data (CMSD) headers AWS Elemental MediaPackage includes in responses to the CDN.
1062
- :param tags: The tags associated with the channel.
1062
+ :param tags:
1063
1063
 
1064
1064
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackagev2-channel.html
1065
1065
  :exampleMetadata: fixture=_generated
@@ -1182,8 +1182,7 @@ class CfnChannelProps:
1182
1182
 
1183
1183
  @builtins.property
1184
1184
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
1185
- '''The tags associated with the channel.
1186
-
1185
+ '''
1187
1186
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackagev2-channel.html#cfn-mediapackagev2-channel-tags
1188
1187
  '''
1189
1188
  result = self._values.get("tags")
@@ -1452,7 +1451,8 @@ class CfnOriginEndpoint(
1452
1451
  @builtins.property
1453
1452
  @jsii.member(jsii_name="attrDashManifestUrls")
1454
1453
  def attr_dash_manifest_urls(self) -> typing.List[builtins.str]:
1455
- '''
1454
+ '''The egress domain URL for stream delivery from MediaPackage.
1455
+
1456
1456
  :cloudformationAttribute: DashManifestUrls
1457
1457
  '''
1458
1458
  return typing.cast(typing.List[builtins.str], jsii.get(self, "attrDashManifestUrls"))
@@ -1460,7 +1460,8 @@ class CfnOriginEndpoint(
1460
1460
  @builtins.property
1461
1461
  @jsii.member(jsii_name="attrHlsManifestUrls")
1462
1462
  def attr_hls_manifest_urls(self) -> typing.List[builtins.str]:
1463
- '''
1463
+ '''The egress domain URL for stream delivery from MediaPackage.
1464
+
1464
1465
  :cloudformationAttribute: HlsManifestUrls
1465
1466
  '''
1466
1467
  return typing.cast(typing.List[builtins.str], jsii.get(self, "attrHlsManifestUrls"))
@@ -1468,7 +1469,8 @@ class CfnOriginEndpoint(
1468
1469
  @builtins.property
1469
1470
  @jsii.member(jsii_name="attrLowLatencyHlsManifestUrls")
1470
1471
  def attr_low_latency_hls_manifest_urls(self) -> typing.List[builtins.str]:
1471
- '''
1472
+ '''The egress domain URL for stream delivery from MediaPackage.
1473
+
1472
1474
  :cloudformationAttribute: LowLatencyHlsManifestUrls
1473
1475
  '''
1474
1476
  return typing.cast(typing.List[builtins.str], jsii.get(self, "attrLowLatencyHlsManifestUrls"))
@@ -1709,17 +1711,17 @@ class CfnOriginEndpoint(
1709
1711
  ) -> None:
1710
1712
  '''The DASH manifest configuration associated with the origin endpoint.
1711
1713
 
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.
1713
- :param drm_signaling:
1714
- :param filter_configuration:
1715
- :param manifest_window_seconds:
1716
- :param min_buffer_time_seconds:
1717
- :param min_update_period_seconds:
1718
- :param period_triggers: Leave this value empty to indicate that the manifest is contained all in one period. For more information about periods in the DASH manifest, see Multi-period DASH in AWS Elemental MediaPackage.
1719
- :param scte_dash:
1720
- :param segment_template_format:
1721
- :param suggested_presentation_delay_seconds:
1722
- :param utc_timing:
1714
+ :param manifest_name: A short string that's appended to the endpoint URL. The child manifest name creates a unique path to this endpoint.
1715
+ :param drm_signaling: Determines how the DASH manifest signals the DRM content.
1716
+ :param filter_configuration: 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.
1717
+ :param manifest_window_seconds: The total duration (in seconds) of the manifest's content.
1718
+ :param min_buffer_time_seconds: Minimum amount of content (in seconds) that a player must keep available in the buffer.
1719
+ :param min_update_period_seconds: Minimum amount of time (in seconds) that the player should wait before requesting updates to the manifest.
1720
+ :param period_triggers: A list of triggers that controls when AWS Elemental MediaPackage separates the MPEG-DASH manifest into multiple periods. Type ``ADS`` to indicate that AWS Elemental MediaPackage must create periods in the output manifest that correspond to SCTE-35 ad markers in the input source. Leave this value empty to indicate that the manifest is contained all in one period. For more information about periods in the DASH manifest, see `Multi-period DASH in AWS Elemental MediaPackage <https://docs.aws.amazon.com/mediapackage/latest/userguide/multi-period.html>`_ .
1721
+ :param scte_dash: The SCTE configuration.
1722
+ :param segment_template_format: Determines the type of variable used in the ``media`` URL of the ``SegmentTemplate`` tag in the manifest. Also specifies if segment timeline information is included in ``SegmentTimeline`` or ``SegmentTemplate`` . Value description: - ``NUMBER_WITH_TIMELINE`` - The ``$Number$`` variable is used in the ``media`` URL. The value of this variable is the sequential number of the segment. A full ``SegmentTimeline`` object is presented in each ``SegmentTemplate`` .
1723
+ :param suggested_presentation_delay_seconds: The amount of time (in seconds) that the player should be from the end of the manifest.
1724
+ :param utc_timing: Determines the type of UTC timing included in the DASH Media Presentation Description (MPD).
1723
1725
 
1724
1726
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html
1725
1727
  :exampleMetadata: fixture=_generated
@@ -1796,8 +1798,9 @@ class CfnOriginEndpoint(
1796
1798
 
1797
1799
  @builtins.property
1798
1800
  def manifest_name(self) -> builtins.str:
1799
- '''
1800
- The manifest name creates a unique path to this endpoint. If you don't enter a value, MediaPackage uses the default manifest name, index.
1801
+ '''A short string that's appended to the endpoint URL.
1802
+
1803
+ The child manifest name creates a unique path to this endpoint.
1801
1804
 
1802
1805
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-manifestname
1803
1806
  '''
@@ -1807,7 +1810,8 @@ class CfnOriginEndpoint(
1807
1810
 
1808
1811
  @builtins.property
1809
1812
  def drm_signaling(self) -> typing.Optional[builtins.str]:
1810
- '''
1813
+ '''Determines how the DASH manifest signals the DRM content.
1814
+
1811
1815
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-drmsignaling
1812
1816
  '''
1813
1817
  result = self._values.get("drm_signaling")
@@ -1817,7 +1821,7 @@ class CfnOriginEndpoint(
1817
1821
  def filter_configuration(
1818
1822
  self,
1819
1823
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.FilterConfigurationProperty"]]:
1820
- '''
1824
+ '''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.
1821
1825
 
1822
1826
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-filterconfiguration
1823
1827
  '''
@@ -1826,7 +1830,8 @@ class CfnOriginEndpoint(
1826
1830
 
1827
1831
  @builtins.property
1828
1832
  def manifest_window_seconds(self) -> typing.Optional[jsii.Number]:
1829
- '''
1833
+ '''The total duration (in seconds) of the manifest's content.
1834
+
1830
1835
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-manifestwindowseconds
1831
1836
  '''
1832
1837
  result = self._values.get("manifest_window_seconds")
@@ -1834,7 +1839,8 @@ class CfnOriginEndpoint(
1834
1839
 
1835
1840
  @builtins.property
1836
1841
  def min_buffer_time_seconds(self) -> typing.Optional[jsii.Number]:
1837
- '''
1842
+ '''Minimum amount of content (in seconds) that a player must keep available in the buffer.
1843
+
1838
1844
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-minbuffertimeseconds
1839
1845
  '''
1840
1846
  result = self._values.get("min_buffer_time_seconds")
@@ -1842,7 +1848,8 @@ class CfnOriginEndpoint(
1842
1848
 
1843
1849
  @builtins.property
1844
1850
  def min_update_period_seconds(self) -> typing.Optional[jsii.Number]:
1845
- '''
1851
+ '''Minimum amount of time (in seconds) that the player should wait before requesting updates to the manifest.
1852
+
1846
1853
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-minupdateperiodseconds
1847
1854
  '''
1848
1855
  result = self._values.get("min_update_period_seconds")
@@ -1850,9 +1857,9 @@ class CfnOriginEndpoint(
1850
1857
 
1851
1858
  @builtins.property
1852
1859
  def period_triggers(self) -> typing.Optional[typing.List[builtins.str]]:
1853
- '''
1854
- Leave this value empty to indicate that the manifest is contained all in one period.
1855
- For more information about periods in the DASH manifest, see Multi-period DASH in AWS Elemental MediaPackage.
1860
+ '''A list of triggers that controls when AWS Elemental MediaPackage separates the MPEG-DASH manifest into multiple periods.
1861
+
1862
+ Type ``ADS`` to indicate that AWS Elemental MediaPackage must create periods in the output manifest that correspond to SCTE-35 ad markers in the input source. Leave this value empty to indicate that the manifest is contained all in one period. For more information about periods in the DASH manifest, see `Multi-period DASH in AWS Elemental MediaPackage <https://docs.aws.amazon.com/mediapackage/latest/userguide/multi-period.html>`_ .
1856
1863
 
1857
1864
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-periodtriggers
1858
1865
  '''
@@ -1863,7 +1870,8 @@ class CfnOriginEndpoint(
1863
1870
  def scte_dash(
1864
1871
  self,
1865
1872
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.ScteDashProperty"]]:
1866
- '''
1873
+ '''The SCTE configuration.
1874
+
1867
1875
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-sctedash
1868
1876
  '''
1869
1877
  result = self._values.get("scte_dash")
@@ -1871,7 +1879,14 @@ class CfnOriginEndpoint(
1871
1879
 
1872
1880
  @builtins.property
1873
1881
  def segment_template_format(self) -> typing.Optional[builtins.str]:
1874
- '''
1882
+ '''Determines the type of variable used in the ``media`` URL of the ``SegmentTemplate`` tag in the manifest.
1883
+
1884
+ Also specifies if segment timeline information is included in ``SegmentTimeline`` or ``SegmentTemplate`` .
1885
+
1886
+ Value description:
1887
+
1888
+ - ``NUMBER_WITH_TIMELINE`` - The ``$Number$`` variable is used in the ``media`` URL. The value of this variable is the sequential number of the segment. A full ``SegmentTimeline`` object is presented in each ``SegmentTemplate`` .
1889
+
1875
1890
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-segmenttemplateformat
1876
1891
  '''
1877
1892
  result = self._values.get("segment_template_format")
@@ -1879,7 +1894,8 @@ class CfnOriginEndpoint(
1879
1894
 
1880
1895
  @builtins.property
1881
1896
  def suggested_presentation_delay_seconds(self) -> typing.Optional[jsii.Number]:
1882
- '''
1897
+ '''The amount of time (in seconds) that the player should be from the end of the manifest.
1898
+
1883
1899
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-suggestedpresentationdelayseconds
1884
1900
  '''
1885
1901
  result = self._values.get("suggested_presentation_delay_seconds")
@@ -1889,7 +1905,8 @@ class CfnOriginEndpoint(
1889
1905
  def utc_timing(
1890
1906
  self,
1891
1907
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.DashUtcTimingProperty"]]:
1892
- '''
1908
+ '''Determines the type of UTC timing included in the DASH Media Presentation Description (MPD).
1909
+
1893
1910
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-utctiming
1894
1911
  '''
1895
1912
  result = self._values.get("utc_timing")
@@ -2498,13 +2515,13 @@ class CfnOriginEndpoint(
2498
2515
 
2499
2516
  :param manifest_name: The name of the manifest associated with the HLS manifest configuration.
2500
2517
  :param child_manifest_name: The name of the child manifest associated with the HLS manifest configuration.
2501
- :param filter_configuration:
2518
+ :param filter_configuration: 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.
2502
2519
  :param manifest_window_seconds: The duration of the manifest window, in seconds, for the HLS manifest configuration.
2503
2520
  :param program_date_time_interval_seconds: The ``EXT-X-PROGRAM-DATE-TIME`` interval, in seconds, associated with the HLS manifest configuration.
2504
2521
  :param scte_hls: THE SCTE-35 HLS configuration associated with the HLS manifest configuration.
2505
- :param start_tag: When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.
2522
+ :param start_tag: To insert an EXT-X-START tag in your HLS playlist, specify a StartTag configuration object with a valid TimeOffset. When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.
2506
2523
  :param url: The URL of the HLS manifest configuration.
2507
- :param url_encode_child_manifest: For more information, see Amazon Web Services Signature Version 4 for API requests in Identity and Access Management User Guide.
2524
+ :param url_encode_child_manifest: When enabled, MediaPackage URL-encodes the query string for API requests for HLS child manifests to comply with AWS Signature Version 4 (SigV4) signature signing protocol. For more information, see `AWS Signature Version 4 for API requests <https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_sigv.html>`_ in *AWS Identity and Access Management User Guide* .
2508
2525
 
2509
2526
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-hlsmanifestconfiguration.html
2510
2527
  :exampleMetadata: fixture=_generated
@@ -2596,7 +2613,7 @@ class CfnOriginEndpoint(
2596
2613
  def filter_configuration(
2597
2614
  self,
2598
2615
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.FilterConfigurationProperty"]]:
2599
- '''
2616
+ '''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.
2600
2617
 
2601
2618
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-hlsmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-hlsmanifestconfiguration-filterconfiguration
2602
2619
  '''
@@ -2636,7 +2653,8 @@ class CfnOriginEndpoint(
2636
2653
  def start_tag(
2637
2654
  self,
2638
2655
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.StartTagProperty"]]:
2639
- '''
2656
+ '''To insert an EXT-X-START tag in your HLS playlist, specify a StartTag configuration object with a valid TimeOffset.
2657
+
2640
2658
  When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.
2641
2659
 
2642
2660
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-hlsmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-hlsmanifestconfiguration-starttag
@@ -2657,8 +2675,9 @@ class CfnOriginEndpoint(
2657
2675
  def url_encode_child_manifest(
2658
2676
  self,
2659
2677
  ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
2660
- '''
2661
- For more information, see Amazon Web Services Signature Version 4 for API requests in Identity and Access Management User Guide.
2678
+ '''When enabled, MediaPackage URL-encodes the query string for API requests for HLS child manifests to comply with AWS Signature Version 4 (SigV4) signature signing protocol.
2679
+
2680
+ For more information, see `AWS Signature Version 4 for API requests <https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_sigv.html>`_ in *AWS Identity and Access Management User Guide* .
2662
2681
 
2663
2682
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-hlsmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-hlsmanifestconfiguration-urlencodechildmanifest
2664
2683
  '''
@@ -2709,13 +2728,13 @@ class CfnOriginEndpoint(
2709
2728
 
2710
2729
  :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.
2711
2730
  :param child_manifest_name: The name of the child manifest associated with the low-latency HLS (LL-HLS) manifest configuration of the origin endpoint.
2712
- :param filter_configuration:
2731
+ :param filter_configuration: 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.
2713
2732
  :param manifest_window_seconds: The total duration (in seconds) of the manifest's content.
2714
2733
  :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. Irrespective of this parameter, if any ``ID3Timed`` metadata is in the HLS input, MediaPackage passes through that metadata to the HLS output.
2715
2734
  :param scte_hls: The SCTE-35 HLS configuration associated with the low-latency HLS (LL-HLS) manifest configuration of the origin endpoint.
2716
- :param start_tag: When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.
2735
+ :param start_tag: To insert an EXT-X-START tag in your HLS playlist, specify a StartTag configuration object with a valid TimeOffset. When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.
2717
2736
  :param url: The URL of the low-latency HLS (LL-HLS) manifest configuration of the origin endpoint.
2718
- :param url_encode_child_manifest: For more information, see Amazon Web Services Signature Version 4 for API requests in Identity and Access Management User Guide.
2737
+ :param url_encode_child_manifest: When enabled, MediaPackage URL-encodes the query string for API requests for LL-HLS child manifests to comply with AWS Signature Version 4 (SigV4) signature signing protocol. For more information, see `AWS Signature Version 4 for API requests <https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_sigv.html>`_ in *AWS Identity and Access Management User Guide* .
2719
2738
 
2720
2739
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-lowlatencyhlsmanifestconfiguration.html
2721
2740
  :exampleMetadata: fixture=_generated
@@ -2809,7 +2828,7 @@ class CfnOriginEndpoint(
2809
2828
  def filter_configuration(
2810
2829
  self,
2811
2830
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.FilterConfigurationProperty"]]:
2812
- '''
2831
+ '''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.
2813
2832
 
2814
2833
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-lowlatencyhlsmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-lowlatencyhlsmanifestconfiguration-filterconfiguration
2815
2834
  '''
@@ -2853,7 +2872,8 @@ class CfnOriginEndpoint(
2853
2872
  def start_tag(
2854
2873
  self,
2855
2874
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnOriginEndpoint.StartTagProperty"]]:
2856
- '''
2875
+ '''To insert an EXT-X-START tag in your HLS playlist, specify a StartTag configuration object with a valid TimeOffset.
2876
+
2857
2877
  When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.
2858
2878
 
2859
2879
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-lowlatencyhlsmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-lowlatencyhlsmanifestconfiguration-starttag
@@ -2874,8 +2894,9 @@ class CfnOriginEndpoint(
2874
2894
  def url_encode_child_manifest(
2875
2895
  self,
2876
2896
  ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
2877
- '''
2878
- For more information, see Amazon Web Services Signature Version 4 for API requests in Identity and Access Management User Guide.
2897
+ '''When enabled, MediaPackage URL-encodes the query string for API requests for LL-HLS child manifests to comply with AWS Signature Version 4 (SigV4) signature signing protocol.
2898
+
2899
+ For more information, see `AWS Signature Version 4 for API requests <https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_sigv.html>`_ in *AWS Identity and Access Management User Guide* .
2879
2900
 
2880
2901
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-lowlatencyhlsmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-lowlatencyhlsmanifestconfiguration-urlencodechildmanifest
2881
2902
  '''
@@ -154,7 +154,7 @@ class CfnServer(
154
154
  :param id: Construct identifier for this resource (unique in its scope).
155
155
  :param instance_profile_arn: The ARN of the instance profile that your Amazon EC2 instances use.
156
156
  :param instance_type: The Amazon EC2 instance type to use. For example, ``m5.large`` .
157
- :param service_role_arn: The service role that the AWS OpsWorks CM service backend uses to work with your account. Although the AWS OpsWorks management console typically creates the service role for you, if you are using the AWS CLI or API commands, run the service-role-creation.yaml AWS CloudFormation template, located at https://s3.amazonaws.com/opsworks-cm-us-east-1-prod-default-assets/misc/opsworks-cm-roles.yaml. This template creates a CloudFormation stack that includes the service role and instance profile that you need.
157
+ :param service_role_arn: The service role that the AWS OpsWorks CM service backend uses to work with your account.
158
158
  :param associate_public_ip_address: Associate a public IP address with a server that you are launching. Valid values are ``true`` or ``false`` . The default value is ``true`` .
159
159
  :param backup_id: If you specify this field, AWS OpsWorks CM creates the server by using the backup represented by BackupId.
160
160
  :param backup_retention_count: The number of automated backups that you want to keep. Whenever a new backup is created, AWS OpsWorks CM deletes the oldest backups if this number is exceeded. The default value is ``1`` .
@@ -730,7 +730,7 @@ class CfnServerProps:
730
730
 
731
731
  :param instance_profile_arn: The ARN of the instance profile that your Amazon EC2 instances use.
732
732
  :param instance_type: The Amazon EC2 instance type to use. For example, ``m5.large`` .
733
- :param service_role_arn: The service role that the AWS OpsWorks CM service backend uses to work with your account. Although the AWS OpsWorks management console typically creates the service role for you, if you are using the AWS CLI or API commands, run the service-role-creation.yaml AWS CloudFormation template, located at https://s3.amazonaws.com/opsworks-cm-us-east-1-prod-default-assets/misc/opsworks-cm-roles.yaml. This template creates a CloudFormation stack that includes the service role and instance profile that you need.
733
+ :param service_role_arn: The service role that the AWS OpsWorks CM service backend uses to work with your account.
734
734
  :param associate_public_ip_address: Associate a public IP address with a server that you are launching. Valid values are ``true`` or ``false`` . The default value is ``true`` .
735
735
  :param backup_id: If you specify this field, AWS OpsWorks CM creates the server by using the backup represented by BackupId.
736
736
  :param backup_retention_count: The number of automated backups that you want to keep. Whenever a new backup is created, AWS OpsWorks CM deletes the oldest backups if this number is exceeded. The default value is ``1`` .
@@ -882,8 +882,6 @@ class CfnServerProps:
882
882
  def service_role_arn(self) -> builtins.str:
883
883
  '''The service role that the AWS OpsWorks CM service backend uses to work with your account.
884
884
 
885
- Although the AWS OpsWorks management console typically creates the service role for you, if you are using the AWS CLI or API commands, run the service-role-creation.yaml AWS CloudFormation template, located at https://s3.amazonaws.com/opsworks-cm-us-east-1-prod-default-assets/misc/opsworks-cm-roles.yaml. This template creates a CloudFormation stack that includes the service role and instance profile that you need.
886
-
887
885
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servicerolearn
888
886
  '''
889
887
  result = self._values.get("service_role_arn")