aws-cdk-lib 2.219.0__py3-none-any.whl → 2.220.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 +12 -17
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.219.0.jsii.tgz → aws-cdk-lib@2.220.0.jsii.tgz} +0 -0
- aws_cdk/aws_applicationsignals/__init__.py +450 -2
- aws_cdk/aws_arcregionswitch/__init__.py +8 -0
- aws_cdk/aws_backup/__init__.py +29 -0
- aws_cdk/aws_batch/__init__.py +109 -7
- aws_cdk/aws_bedrock/__init__.py +44 -16
- aws_cdk/aws_bedrockagentcore/__init__.py +7872 -1718
- aws_cdk/aws_cloudfront/experimental/__init__.py +4 -0
- aws_cdk/aws_cloudfront_origins/__init__.py +87 -6
- aws_cdk/aws_cloudwatch/__init__.py +5 -5
- aws_cdk/aws_cognito/__init__.py +6 -4
- aws_cdk/aws_dax/__init__.py +12 -3
- aws_cdk/aws_directoryservice/__init__.py +29 -0
- aws_cdk/aws_ec2/__init__.py +99 -8
- aws_cdk/aws_ecs/__init__.py +342 -134
- aws_cdk/aws_eks/__init__.py +114 -9
- aws_cdk/aws_fsx/__init__.py +4 -4
- aws_cdk/aws_imagebuilder/__init__.py +397 -0
- aws_cdk/aws_iotsitewise/__init__.py +136 -80
- aws_cdk/aws_kinesis/__init__.py +95 -4
- aws_cdk/aws_lambda/__init__.py +43 -0
- aws_cdk/aws_lightsail/__init__.py +584 -0
- aws_cdk/aws_logs/__init__.py +57 -0
- aws_cdk/aws_lookoutmetrics/__init__.py +14 -2
- aws_cdk/aws_m2/__init__.py +59 -13
- aws_cdk/aws_medialive/__init__.py +108 -0
- aws_cdk/aws_mwaa/__init__.py +5 -5
- aws_cdk/aws_neptune/__init__.py +133 -70
- aws_cdk/aws_networkmanager/__init__.py +29 -0
- aws_cdk/aws_observabilityadmin/__init__.py +1227 -83
- aws_cdk/aws_omics/__init__.py +7 -1
- aws_cdk/aws_opensearchservice/__init__.py +6 -0
- aws_cdk/aws_pcs/__init__.py +224 -33
- aws_cdk/aws_pinpoint/__init__.py +58 -0
- aws_cdk/aws_quicksight/__init__.py +80 -0
- aws_cdk/aws_rds/__init__.py +29 -23
- aws_cdk/aws_refactorspaces/__init__.py +18 -6
- aws_cdk/aws_route53/__init__.py +130 -6
- aws_cdk/aws_s3/__init__.py +29 -2
- aws_cdk/aws_s3objectlambda/__init__.py +44 -12
- aws_cdk/aws_servicecatalog/__init__.py +25 -20
- aws_cdk/aws_ssmquicksetup/__init__.py +3 -3
- aws_cdk/aws_synthetics/__init__.py +21 -1
- {aws_cdk_lib-2.219.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.219.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/RECORD +51 -51
- {aws_cdk_lib-2.219.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.219.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.219.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.219.0.dist-info → aws_cdk_lib-2.220.0.dist-info}/top_level.txt +0 -0
|
@@ -7354,6 +7354,7 @@ class CfnChannel(
|
|
|
7354
7354
|
"level": "level",
|
|
7355
7355
|
"look_ahead_rate_control": "lookAheadRateControl",
|
|
7356
7356
|
"max_bitrate": "maxBitrate",
|
|
7357
|
+
"min_bitrate": "minBitrate",
|
|
7357
7358
|
"min_i_interval": "minIInterval",
|
|
7358
7359
|
"par_denominator": "parDenominator",
|
|
7359
7360
|
"par_numerator": "parNumerator",
|
|
@@ -7379,6 +7380,7 @@ class CfnChannel(
|
|
|
7379
7380
|
level: typing.Optional[builtins.str] = None,
|
|
7380
7381
|
look_ahead_rate_control: typing.Optional[builtins.str] = None,
|
|
7381
7382
|
max_bitrate: typing.Optional[jsii.Number] = None,
|
|
7383
|
+
min_bitrate: typing.Optional[jsii.Number] = None,
|
|
7382
7384
|
min_i_interval: typing.Optional[jsii.Number] = None,
|
|
7383
7385
|
par_denominator: typing.Optional[jsii.Number] = None,
|
|
7384
7386
|
par_numerator: typing.Optional[jsii.Number] = None,
|
|
@@ -7400,6 +7402,7 @@ class CfnChannel(
|
|
|
7400
7402
|
:param level:
|
|
7401
7403
|
:param look_ahead_rate_control:
|
|
7402
7404
|
:param max_bitrate:
|
|
7405
|
+
:param min_bitrate:
|
|
7403
7406
|
:param min_i_interval:
|
|
7404
7407
|
:param par_denominator:
|
|
7405
7408
|
:param par_numerator:
|
|
@@ -7442,6 +7445,7 @@ class CfnChannel(
|
|
|
7442
7445
|
level="level",
|
|
7443
7446
|
look_ahead_rate_control="lookAheadRateControl",
|
|
7444
7447
|
max_bitrate=123,
|
|
7448
|
+
min_bitrate=123,
|
|
7445
7449
|
min_iInterval=123,
|
|
7446
7450
|
par_denominator=123,
|
|
7447
7451
|
par_numerator=123,
|
|
@@ -7469,6 +7473,7 @@ class CfnChannel(
|
|
|
7469
7473
|
check_type(argname="argument level", value=level, expected_type=type_hints["level"])
|
|
7470
7474
|
check_type(argname="argument look_ahead_rate_control", value=look_ahead_rate_control, expected_type=type_hints["look_ahead_rate_control"])
|
|
7471
7475
|
check_type(argname="argument max_bitrate", value=max_bitrate, expected_type=type_hints["max_bitrate"])
|
|
7476
|
+
check_type(argname="argument min_bitrate", value=min_bitrate, expected_type=type_hints["min_bitrate"])
|
|
7472
7477
|
check_type(argname="argument min_i_interval", value=min_i_interval, expected_type=type_hints["min_i_interval"])
|
|
7473
7478
|
check_type(argname="argument par_denominator", value=par_denominator, expected_type=type_hints["par_denominator"])
|
|
7474
7479
|
check_type(argname="argument par_numerator", value=par_numerator, expected_type=type_hints["par_numerator"])
|
|
@@ -7501,6 +7506,8 @@ class CfnChannel(
|
|
|
7501
7506
|
self._values["look_ahead_rate_control"] = look_ahead_rate_control
|
|
7502
7507
|
if max_bitrate is not None:
|
|
7503
7508
|
self._values["max_bitrate"] = max_bitrate
|
|
7509
|
+
if min_bitrate is not None:
|
|
7510
|
+
self._values["min_bitrate"] = min_bitrate
|
|
7504
7511
|
if min_i_interval is not None:
|
|
7505
7512
|
self._values["min_i_interval"] = min_i_interval
|
|
7506
7513
|
if par_denominator is not None:
|
|
@@ -7614,6 +7621,14 @@ class CfnChannel(
|
|
|
7614
7621
|
result = self._values.get("max_bitrate")
|
|
7615
7622
|
return typing.cast(typing.Optional[jsii.Number], result)
|
|
7616
7623
|
|
|
7624
|
+
@builtins.property
|
|
7625
|
+
def min_bitrate(self) -> typing.Optional[jsii.Number]:
|
|
7626
|
+
'''
|
|
7627
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-av1settings.html#cfn-medialive-channel-av1settings-minbitrate
|
|
7628
|
+
'''
|
|
7629
|
+
result = self._values.get("min_bitrate")
|
|
7630
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
7631
|
+
|
|
7617
7632
|
@builtins.property
|
|
7618
7633
|
def min_i_interval(self) -> typing.Optional[jsii.Number]:
|
|
7619
7634
|
'''
|
|
@@ -13669,6 +13684,7 @@ class CfnChannel(
|
|
|
13669
13684
|
"level": "level",
|
|
13670
13685
|
"look_ahead_rate_control": "lookAheadRateControl",
|
|
13671
13686
|
"max_bitrate": "maxBitrate",
|
|
13687
|
+
"min_bitrate": "minBitrate",
|
|
13672
13688
|
"min_i_interval": "minIInterval",
|
|
13673
13689
|
"min_qp": "minQp",
|
|
13674
13690
|
"num_ref_frames": "numRefFrames",
|
|
@@ -13718,6 +13734,7 @@ class CfnChannel(
|
|
|
13718
13734
|
level: typing.Optional[builtins.str] = None,
|
|
13719
13735
|
look_ahead_rate_control: typing.Optional[builtins.str] = None,
|
|
13720
13736
|
max_bitrate: typing.Optional[jsii.Number] = None,
|
|
13737
|
+
min_bitrate: typing.Optional[jsii.Number] = None,
|
|
13721
13738
|
min_i_interval: typing.Optional[jsii.Number] = None,
|
|
13722
13739
|
min_qp: typing.Optional[jsii.Number] = None,
|
|
13723
13740
|
num_ref_frames: typing.Optional[jsii.Number] = None,
|
|
@@ -13766,6 +13783,7 @@ class CfnChannel(
|
|
|
13766
13783
|
:param level: The H.264 level.
|
|
13767
13784
|
:param look_ahead_rate_control: The amount of lookahead. A value of low can decrease latency and memory usage, while high can produce better quality for certain content.
|
|
13768
13785
|
:param max_bitrate: For QVBR: See the tooltip for Quality level. For VBR: Set the maximum bitrate in order to accommodate expected spikes in the complexity of the video.
|
|
13786
|
+
:param min_bitrate:
|
|
13769
13787
|
:param min_i_interval: Meaningful only if sceneChangeDetect is set to enabled. This setting enforces separation between repeated (cadence) I-frames and I-frames inserted by Scene Change Detection. If a scene change I-frame is within I-interval frames of a cadence I-frame, the GOP is shrunk or stretched to the scene change I-frame. GOP stretch requires enabling lookahead as well as setting the I-interval. The normal cadence resumes for the next GOP. Note that the maximum GOP stretch = GOP size + Min-I-interval - 1.
|
|
13770
13788
|
:param min_qp:
|
|
13771
13789
|
:param num_ref_frames: The number of reference frames to use. The encoder might use more than requested if you use B-frames or interlaced encoding.
|
|
@@ -13833,6 +13851,7 @@ class CfnChannel(
|
|
|
13833
13851
|
level="level",
|
|
13834
13852
|
look_ahead_rate_control="lookAheadRateControl",
|
|
13835
13853
|
max_bitrate=123,
|
|
13854
|
+
min_bitrate=123,
|
|
13836
13855
|
min_iInterval=123,
|
|
13837
13856
|
min_qp=123,
|
|
13838
13857
|
num_ref_frames=123,
|
|
@@ -13884,6 +13903,7 @@ class CfnChannel(
|
|
|
13884
13903
|
check_type(argname="argument level", value=level, expected_type=type_hints["level"])
|
|
13885
13904
|
check_type(argname="argument look_ahead_rate_control", value=look_ahead_rate_control, expected_type=type_hints["look_ahead_rate_control"])
|
|
13886
13905
|
check_type(argname="argument max_bitrate", value=max_bitrate, expected_type=type_hints["max_bitrate"])
|
|
13906
|
+
check_type(argname="argument min_bitrate", value=min_bitrate, expected_type=type_hints["min_bitrate"])
|
|
13887
13907
|
check_type(argname="argument min_i_interval", value=min_i_interval, expected_type=type_hints["min_i_interval"])
|
|
13888
13908
|
check_type(argname="argument min_qp", value=min_qp, expected_type=type_hints["min_qp"])
|
|
13889
13909
|
check_type(argname="argument num_ref_frames", value=num_ref_frames, expected_type=type_hints["num_ref_frames"])
|
|
@@ -13951,6 +13971,8 @@ class CfnChannel(
|
|
|
13951
13971
|
self._values["look_ahead_rate_control"] = look_ahead_rate_control
|
|
13952
13972
|
if max_bitrate is not None:
|
|
13953
13973
|
self._values["max_bitrate"] = max_bitrate
|
|
13974
|
+
if min_bitrate is not None:
|
|
13975
|
+
self._values["min_bitrate"] = min_bitrate
|
|
13954
13976
|
if min_i_interval is not None:
|
|
13955
13977
|
self._values["min_i_interval"] = min_i_interval
|
|
13956
13978
|
if min_qp is not None:
|
|
@@ -14227,6 +14249,14 @@ class CfnChannel(
|
|
|
14227
14249
|
result = self._values.get("max_bitrate")
|
|
14228
14250
|
return typing.cast(typing.Optional[jsii.Number], result)
|
|
14229
14251
|
|
|
14252
|
+
@builtins.property
|
|
14253
|
+
def min_bitrate(self) -> typing.Optional[jsii.Number]:
|
|
14254
|
+
'''
|
|
14255
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-h264settings.html#cfn-medialive-channel-h264settings-minbitrate
|
|
14256
|
+
'''
|
|
14257
|
+
result = self._values.get("min_bitrate")
|
|
14258
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
14259
|
+
|
|
14230
14260
|
@builtins.property
|
|
14231
14261
|
def min_i_interval(self) -> typing.Optional[jsii.Number]:
|
|
14232
14262
|
'''Meaningful only if sceneChangeDetect is set to enabled.
|
|
@@ -14677,12 +14707,15 @@ class CfnChannel(
|
|
|
14677
14707
|
"flicker_aq": "flickerAq",
|
|
14678
14708
|
"framerate_denominator": "framerateDenominator",
|
|
14679
14709
|
"framerate_numerator": "framerateNumerator",
|
|
14710
|
+
"gop_b_reference": "gopBReference",
|
|
14680
14711
|
"gop_closed_cadence": "gopClosedCadence",
|
|
14712
|
+
"gop_num_b_frames": "gopNumBFrames",
|
|
14681
14713
|
"gop_size": "gopSize",
|
|
14682
14714
|
"gop_size_units": "gopSizeUnits",
|
|
14683
14715
|
"level": "level",
|
|
14684
14716
|
"look_ahead_rate_control": "lookAheadRateControl",
|
|
14685
14717
|
"max_bitrate": "maxBitrate",
|
|
14718
|
+
"min_bitrate": "minBitrate",
|
|
14686
14719
|
"min_i_interval": "minIInterval",
|
|
14687
14720
|
"min_qp": "minQp",
|
|
14688
14721
|
"mv_over_picture_boundaries": "mvOverPictureBoundaries",
|
|
@@ -14695,6 +14728,7 @@ class CfnChannel(
|
|
|
14695
14728
|
"scan_type": "scanType",
|
|
14696
14729
|
"scene_change_detect": "sceneChangeDetect",
|
|
14697
14730
|
"slices": "slices",
|
|
14731
|
+
"subgop_length": "subgopLength",
|
|
14698
14732
|
"tier": "tier",
|
|
14699
14733
|
"tile_height": "tileHeight",
|
|
14700
14734
|
"tile_padding": "tilePadding",
|
|
@@ -14721,12 +14755,15 @@ class CfnChannel(
|
|
|
14721
14755
|
flicker_aq: typing.Optional[builtins.str] = None,
|
|
14722
14756
|
framerate_denominator: typing.Optional[jsii.Number] = None,
|
|
14723
14757
|
framerate_numerator: typing.Optional[jsii.Number] = None,
|
|
14758
|
+
gop_b_reference: typing.Optional[builtins.str] = None,
|
|
14724
14759
|
gop_closed_cadence: typing.Optional[jsii.Number] = None,
|
|
14760
|
+
gop_num_b_frames: typing.Optional[jsii.Number] = None,
|
|
14725
14761
|
gop_size: typing.Optional[jsii.Number] = None,
|
|
14726
14762
|
gop_size_units: typing.Optional[builtins.str] = None,
|
|
14727
14763
|
level: typing.Optional[builtins.str] = None,
|
|
14728
14764
|
look_ahead_rate_control: typing.Optional[builtins.str] = None,
|
|
14729
14765
|
max_bitrate: typing.Optional[jsii.Number] = None,
|
|
14766
|
+
min_bitrate: typing.Optional[jsii.Number] = None,
|
|
14730
14767
|
min_i_interval: typing.Optional[jsii.Number] = None,
|
|
14731
14768
|
min_qp: typing.Optional[jsii.Number] = None,
|
|
14732
14769
|
mv_over_picture_boundaries: typing.Optional[builtins.str] = None,
|
|
@@ -14739,6 +14776,7 @@ class CfnChannel(
|
|
|
14739
14776
|
scan_type: typing.Optional[builtins.str] = None,
|
|
14740
14777
|
scene_change_detect: typing.Optional[builtins.str] = None,
|
|
14741
14778
|
slices: typing.Optional[jsii.Number] = None,
|
|
14779
|
+
subgop_length: typing.Optional[builtins.str] = None,
|
|
14742
14780
|
tier: typing.Optional[builtins.str] = None,
|
|
14743
14781
|
tile_height: typing.Optional[jsii.Number] = None,
|
|
14744
14782
|
tile_padding: typing.Optional[builtins.str] = None,
|
|
@@ -14764,12 +14802,15 @@ class CfnChannel(
|
|
|
14764
14802
|
:param flicker_aq: If set to enabled, adjust quantization within each frame to reduce flicker or 'pop' on I-frames.
|
|
14765
14803
|
:param framerate_denominator: Framerate denominator.
|
|
14766
14804
|
:param framerate_numerator: Framerate numerator - framerate is a fraction, e.g. 24000 / 1001 = 23.976 fps.
|
|
14805
|
+
:param gop_b_reference:
|
|
14767
14806
|
:param gop_closed_cadence: Frequency of closed GOPs. In streaming applications, it is recommended that this be set to 1 so a decoder joining mid-stream will receive an IDR frame as quickly as possible. Setting this value to 0 will break output segmenting.
|
|
14807
|
+
:param gop_num_b_frames:
|
|
14768
14808
|
:param gop_size: GOP size (keyframe interval) in units of either frames or seconds per gopSizeUnits. If gopSizeUnits is frames, gopSize must be an integer and must be greater than or equal to 1. If gopSizeUnits is seconds, gopSize must be greater than 0, but need not be an integer.
|
|
14769
14809
|
:param gop_size_units: Indicates if the gopSize is specified in frames or seconds. If seconds the system will convert the gopSize into a frame count at run time.
|
|
14770
14810
|
:param level: H.265 Level.
|
|
14771
14811
|
:param look_ahead_rate_control: Amount of lookahead. A value of low can decrease latency and memory usage, while high can produce better quality for certain content.
|
|
14772
14812
|
:param max_bitrate: For QVBR: See the tooltip for Quality level.
|
|
14813
|
+
:param min_bitrate:
|
|
14773
14814
|
:param min_i_interval: Only meaningful if sceneChangeDetect is set to enabled. Defaults to 5 if multiplex rate control is used. Enforces separation between repeated (cadence) I-frames and I-frames inserted by Scene Change Detection. If a scene change I-frame is within I-interval frames of a cadence I-frame, the GOP is shrunk and/or stretched to the scene change I-frame. GOP stretch requires enabling lookahead as well as setting I-interval. The normal cadence resumes for the next GOP. Note: Maximum GOP stretch = GOP size + Min-I-interval - 1
|
|
14774
14815
|
:param min_qp:
|
|
14775
14816
|
:param mv_over_picture_boundaries:
|
|
@@ -14782,6 +14823,7 @@ class CfnChannel(
|
|
|
14782
14823
|
:param scan_type: Sets the scan type of the output to progressive or top-field-first interlaced.
|
|
14783
14824
|
:param scene_change_detect: Scene change detection.
|
|
14784
14825
|
:param slices: Number of slices per picture. Must be less than or equal to the number of macroblock rows for progressive pictures, and less than or equal to half the number of macroblock rows for interlaced pictures. This field is optional; when no value is specified the encoder will choose the number of slices based on encode resolution.
|
|
14826
|
+
:param subgop_length:
|
|
14785
14827
|
:param tier: H.265 Tier.
|
|
14786
14828
|
:param tile_height:
|
|
14787
14829
|
:param tile_padding:
|
|
@@ -14831,12 +14873,15 @@ class CfnChannel(
|
|
|
14831
14873
|
flicker_aq="flickerAq",
|
|
14832
14874
|
framerate_denominator=123,
|
|
14833
14875
|
framerate_numerator=123,
|
|
14876
|
+
gop_bReference="gopBReference",
|
|
14834
14877
|
gop_closed_cadence=123,
|
|
14878
|
+
gop_num_bFrames=123,
|
|
14835
14879
|
gop_size=123,
|
|
14836
14880
|
gop_size_units="gopSizeUnits",
|
|
14837
14881
|
level="level",
|
|
14838
14882
|
look_ahead_rate_control="lookAheadRateControl",
|
|
14839
14883
|
max_bitrate=123,
|
|
14884
|
+
min_bitrate=123,
|
|
14840
14885
|
min_iInterval=123,
|
|
14841
14886
|
min_qp=123,
|
|
14842
14887
|
mv_over_picture_boundaries="mvOverPictureBoundaries",
|
|
@@ -14849,6 +14894,7 @@ class CfnChannel(
|
|
|
14849
14894
|
scan_type="scanType",
|
|
14850
14895
|
scene_change_detect="sceneChangeDetect",
|
|
14851
14896
|
slices=123,
|
|
14897
|
+
subgop_length="subgopLength",
|
|
14852
14898
|
tier="tier",
|
|
14853
14899
|
tile_height=123,
|
|
14854
14900
|
tile_padding="tilePadding",
|
|
@@ -14877,12 +14923,15 @@ class CfnChannel(
|
|
|
14877
14923
|
check_type(argname="argument flicker_aq", value=flicker_aq, expected_type=type_hints["flicker_aq"])
|
|
14878
14924
|
check_type(argname="argument framerate_denominator", value=framerate_denominator, expected_type=type_hints["framerate_denominator"])
|
|
14879
14925
|
check_type(argname="argument framerate_numerator", value=framerate_numerator, expected_type=type_hints["framerate_numerator"])
|
|
14926
|
+
check_type(argname="argument gop_b_reference", value=gop_b_reference, expected_type=type_hints["gop_b_reference"])
|
|
14880
14927
|
check_type(argname="argument gop_closed_cadence", value=gop_closed_cadence, expected_type=type_hints["gop_closed_cadence"])
|
|
14928
|
+
check_type(argname="argument gop_num_b_frames", value=gop_num_b_frames, expected_type=type_hints["gop_num_b_frames"])
|
|
14881
14929
|
check_type(argname="argument gop_size", value=gop_size, expected_type=type_hints["gop_size"])
|
|
14882
14930
|
check_type(argname="argument gop_size_units", value=gop_size_units, expected_type=type_hints["gop_size_units"])
|
|
14883
14931
|
check_type(argname="argument level", value=level, expected_type=type_hints["level"])
|
|
14884
14932
|
check_type(argname="argument look_ahead_rate_control", value=look_ahead_rate_control, expected_type=type_hints["look_ahead_rate_control"])
|
|
14885
14933
|
check_type(argname="argument max_bitrate", value=max_bitrate, expected_type=type_hints["max_bitrate"])
|
|
14934
|
+
check_type(argname="argument min_bitrate", value=min_bitrate, expected_type=type_hints["min_bitrate"])
|
|
14886
14935
|
check_type(argname="argument min_i_interval", value=min_i_interval, expected_type=type_hints["min_i_interval"])
|
|
14887
14936
|
check_type(argname="argument min_qp", value=min_qp, expected_type=type_hints["min_qp"])
|
|
14888
14937
|
check_type(argname="argument mv_over_picture_boundaries", value=mv_over_picture_boundaries, expected_type=type_hints["mv_over_picture_boundaries"])
|
|
@@ -14895,6 +14944,7 @@ class CfnChannel(
|
|
|
14895
14944
|
check_type(argname="argument scan_type", value=scan_type, expected_type=type_hints["scan_type"])
|
|
14896
14945
|
check_type(argname="argument scene_change_detect", value=scene_change_detect, expected_type=type_hints["scene_change_detect"])
|
|
14897
14946
|
check_type(argname="argument slices", value=slices, expected_type=type_hints["slices"])
|
|
14947
|
+
check_type(argname="argument subgop_length", value=subgop_length, expected_type=type_hints["subgop_length"])
|
|
14898
14948
|
check_type(argname="argument tier", value=tier, expected_type=type_hints["tier"])
|
|
14899
14949
|
check_type(argname="argument tile_height", value=tile_height, expected_type=type_hints["tile_height"])
|
|
14900
14950
|
check_type(argname="argument tile_padding", value=tile_padding, expected_type=type_hints["tile_padding"])
|
|
@@ -14929,8 +14979,12 @@ class CfnChannel(
|
|
|
14929
14979
|
self._values["framerate_denominator"] = framerate_denominator
|
|
14930
14980
|
if framerate_numerator is not None:
|
|
14931
14981
|
self._values["framerate_numerator"] = framerate_numerator
|
|
14982
|
+
if gop_b_reference is not None:
|
|
14983
|
+
self._values["gop_b_reference"] = gop_b_reference
|
|
14932
14984
|
if gop_closed_cadence is not None:
|
|
14933
14985
|
self._values["gop_closed_cadence"] = gop_closed_cadence
|
|
14986
|
+
if gop_num_b_frames is not None:
|
|
14987
|
+
self._values["gop_num_b_frames"] = gop_num_b_frames
|
|
14934
14988
|
if gop_size is not None:
|
|
14935
14989
|
self._values["gop_size"] = gop_size
|
|
14936
14990
|
if gop_size_units is not None:
|
|
@@ -14941,6 +14995,8 @@ class CfnChannel(
|
|
|
14941
14995
|
self._values["look_ahead_rate_control"] = look_ahead_rate_control
|
|
14942
14996
|
if max_bitrate is not None:
|
|
14943
14997
|
self._values["max_bitrate"] = max_bitrate
|
|
14998
|
+
if min_bitrate is not None:
|
|
14999
|
+
self._values["min_bitrate"] = min_bitrate
|
|
14944
15000
|
if min_i_interval is not None:
|
|
14945
15001
|
self._values["min_i_interval"] = min_i_interval
|
|
14946
15002
|
if min_qp is not None:
|
|
@@ -14965,6 +15021,8 @@ class CfnChannel(
|
|
|
14965
15021
|
self._values["scene_change_detect"] = scene_change_detect
|
|
14966
15022
|
if slices is not None:
|
|
14967
15023
|
self._values["slices"] = slices
|
|
15024
|
+
if subgop_length is not None:
|
|
15025
|
+
self._values["subgop_length"] = subgop_length
|
|
14968
15026
|
if tier is not None:
|
|
14969
15027
|
self._values["tier"] = tier
|
|
14970
15028
|
if tile_height is not None:
|
|
@@ -15108,6 +15166,14 @@ class CfnChannel(
|
|
|
15108
15166
|
result = self._values.get("framerate_numerator")
|
|
15109
15167
|
return typing.cast(typing.Optional[jsii.Number], result)
|
|
15110
15168
|
|
|
15169
|
+
@builtins.property
|
|
15170
|
+
def gop_b_reference(self) -> typing.Optional[builtins.str]:
|
|
15171
|
+
'''
|
|
15172
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-h265settings.html#cfn-medialive-channel-h265settings-gopbreference
|
|
15173
|
+
'''
|
|
15174
|
+
result = self._values.get("gop_b_reference")
|
|
15175
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
15176
|
+
|
|
15111
15177
|
@builtins.property
|
|
15112
15178
|
def gop_closed_cadence(self) -> typing.Optional[jsii.Number]:
|
|
15113
15179
|
'''Frequency of closed GOPs.
|
|
@@ -15119,6 +15185,14 @@ class CfnChannel(
|
|
|
15119
15185
|
result = self._values.get("gop_closed_cadence")
|
|
15120
15186
|
return typing.cast(typing.Optional[jsii.Number], result)
|
|
15121
15187
|
|
|
15188
|
+
@builtins.property
|
|
15189
|
+
def gop_num_b_frames(self) -> typing.Optional[jsii.Number]:
|
|
15190
|
+
'''
|
|
15191
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-h265settings.html#cfn-medialive-channel-h265settings-gopnumbframes
|
|
15192
|
+
'''
|
|
15193
|
+
result = self._values.get("gop_num_b_frames")
|
|
15194
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
15195
|
+
|
|
15122
15196
|
@builtins.property
|
|
15123
15197
|
def gop_size(self) -> typing.Optional[jsii.Number]:
|
|
15124
15198
|
'''GOP size (keyframe interval) in units of either frames or seconds per gopSizeUnits.
|
|
@@ -15171,6 +15245,14 @@ class CfnChannel(
|
|
|
15171
15245
|
result = self._values.get("max_bitrate")
|
|
15172
15246
|
return typing.cast(typing.Optional[jsii.Number], result)
|
|
15173
15247
|
|
|
15248
|
+
@builtins.property
|
|
15249
|
+
def min_bitrate(self) -> typing.Optional[jsii.Number]:
|
|
15250
|
+
'''
|
|
15251
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-h265settings.html#cfn-medialive-channel-h265settings-minbitrate
|
|
15252
|
+
'''
|
|
15253
|
+
result = self._values.get("min_bitrate")
|
|
15254
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
15255
|
+
|
|
15174
15256
|
@builtins.property
|
|
15175
15257
|
def min_i_interval(self) -> typing.Optional[jsii.Number]:
|
|
15176
15258
|
'''Only meaningful if sceneChangeDetect is set to enabled.
|
|
@@ -15293,6 +15375,14 @@ class CfnChannel(
|
|
|
15293
15375
|
result = self._values.get("slices")
|
|
15294
15376
|
return typing.cast(typing.Optional[jsii.Number], result)
|
|
15295
15377
|
|
|
15378
|
+
@builtins.property
|
|
15379
|
+
def subgop_length(self) -> typing.Optional[builtins.str]:
|
|
15380
|
+
'''
|
|
15381
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-h265settings.html#cfn-medialive-channel-h265settings-subgoplength
|
|
15382
|
+
'''
|
|
15383
|
+
result = self._values.get("subgop_length")
|
|
15384
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
15385
|
+
|
|
15296
15386
|
@builtins.property
|
|
15297
15387
|
def tier(self) -> typing.Optional[builtins.str]:
|
|
15298
15388
|
'''H.265 Tier.
|
|
@@ -26893,6 +26983,7 @@ class CfnChannel(
|
|
|
26893
26983
|
level="level",
|
|
26894
26984
|
look_ahead_rate_control="lookAheadRateControl",
|
|
26895
26985
|
max_bitrate=123,
|
|
26986
|
+
min_bitrate=123,
|
|
26896
26987
|
min_iInterval=123,
|
|
26897
26988
|
par_denominator=123,
|
|
26898
26989
|
par_numerator=123,
|
|
@@ -26951,6 +27042,7 @@ class CfnChannel(
|
|
|
26951
27042
|
level="level",
|
|
26952
27043
|
look_ahead_rate_control="lookAheadRateControl",
|
|
26953
27044
|
max_bitrate=123,
|
|
27045
|
+
min_bitrate=123,
|
|
26954
27046
|
min_iInterval=123,
|
|
26955
27047
|
min_qp=123,
|
|
26956
27048
|
num_ref_frames=123,
|
|
@@ -27008,12 +27100,15 @@ class CfnChannel(
|
|
|
27008
27100
|
flicker_aq="flickerAq",
|
|
27009
27101
|
framerate_denominator=123,
|
|
27010
27102
|
framerate_numerator=123,
|
|
27103
|
+
gop_bReference="gopBReference",
|
|
27011
27104
|
gop_closed_cadence=123,
|
|
27105
|
+
gop_num_bFrames=123,
|
|
27012
27106
|
gop_size=123,
|
|
27013
27107
|
gop_size_units="gopSizeUnits",
|
|
27014
27108
|
level="level",
|
|
27015
27109
|
look_ahead_rate_control="lookAheadRateControl",
|
|
27016
27110
|
max_bitrate=123,
|
|
27111
|
+
min_bitrate=123,
|
|
27017
27112
|
min_iInterval=123,
|
|
27018
27113
|
min_qp=123,
|
|
27019
27114
|
mv_over_picture_boundaries="mvOverPictureBoundaries",
|
|
@@ -27026,6 +27121,7 @@ class CfnChannel(
|
|
|
27026
27121
|
scan_type="scanType",
|
|
27027
27122
|
scene_change_detect="sceneChangeDetect",
|
|
27028
27123
|
slices=123,
|
|
27124
|
+
subgop_length="subgopLength",
|
|
27029
27125
|
tier="tier",
|
|
27030
27126
|
tile_height=123,
|
|
27031
27127
|
tile_padding="tilePadding",
|
|
@@ -27225,6 +27321,7 @@ class CfnChannel(
|
|
|
27225
27321
|
level="level",
|
|
27226
27322
|
look_ahead_rate_control="lookAheadRateControl",
|
|
27227
27323
|
max_bitrate=123,
|
|
27324
|
+
min_bitrate=123,
|
|
27228
27325
|
min_iInterval=123,
|
|
27229
27326
|
par_denominator=123,
|
|
27230
27327
|
par_numerator=123,
|
|
@@ -27283,6 +27380,7 @@ class CfnChannel(
|
|
|
27283
27380
|
level="level",
|
|
27284
27381
|
look_ahead_rate_control="lookAheadRateControl",
|
|
27285
27382
|
max_bitrate=123,
|
|
27383
|
+
min_bitrate=123,
|
|
27286
27384
|
min_iInterval=123,
|
|
27287
27385
|
min_qp=123,
|
|
27288
27386
|
num_ref_frames=123,
|
|
@@ -27340,12 +27438,15 @@ class CfnChannel(
|
|
|
27340
27438
|
flicker_aq="flickerAq",
|
|
27341
27439
|
framerate_denominator=123,
|
|
27342
27440
|
framerate_numerator=123,
|
|
27441
|
+
gop_bReference="gopBReference",
|
|
27343
27442
|
gop_closed_cadence=123,
|
|
27443
|
+
gop_num_bFrames=123,
|
|
27344
27444
|
gop_size=123,
|
|
27345
27445
|
gop_size_units="gopSizeUnits",
|
|
27346
27446
|
level="level",
|
|
27347
27447
|
look_ahead_rate_control="lookAheadRateControl",
|
|
27348
27448
|
max_bitrate=123,
|
|
27449
|
+
min_bitrate=123,
|
|
27349
27450
|
min_iInterval=123,
|
|
27350
27451
|
min_qp=123,
|
|
27351
27452
|
mv_over_picture_boundaries="mvOverPictureBoundaries",
|
|
@@ -27358,6 +27459,7 @@ class CfnChannel(
|
|
|
27358
27459
|
scan_type="scanType",
|
|
27359
27460
|
scene_change_detect="sceneChangeDetect",
|
|
27360
27461
|
slices=123,
|
|
27462
|
+
subgop_length="subgopLength",
|
|
27361
27463
|
tier="tier",
|
|
27362
27464
|
tile_height=123,
|
|
27363
27465
|
tile_padding="tilePadding",
|
|
@@ -35309,6 +35411,7 @@ def _typecheckingstub__1911156090a37730cd16cc0d13076f448f8b192dca9427883cf77e884
|
|
|
35309
35411
|
level: typing.Optional[builtins.str] = None,
|
|
35310
35412
|
look_ahead_rate_control: typing.Optional[builtins.str] = None,
|
|
35311
35413
|
max_bitrate: typing.Optional[jsii.Number] = None,
|
|
35414
|
+
min_bitrate: typing.Optional[jsii.Number] = None,
|
|
35312
35415
|
min_i_interval: typing.Optional[jsii.Number] = None,
|
|
35313
35416
|
par_denominator: typing.Optional[jsii.Number] = None,
|
|
35314
35417
|
par_numerator: typing.Optional[jsii.Number] = None,
|
|
@@ -35824,6 +35927,7 @@ def _typecheckingstub__b5cab7f49556648d7d963fdbb4cfd87845bc6a70172808b1847d7a218
|
|
|
35824
35927
|
level: typing.Optional[builtins.str] = None,
|
|
35825
35928
|
look_ahead_rate_control: typing.Optional[builtins.str] = None,
|
|
35826
35929
|
max_bitrate: typing.Optional[jsii.Number] = None,
|
|
35930
|
+
min_bitrate: typing.Optional[jsii.Number] = None,
|
|
35827
35931
|
min_i_interval: typing.Optional[jsii.Number] = None,
|
|
35828
35932
|
min_qp: typing.Optional[jsii.Number] = None,
|
|
35829
35933
|
num_ref_frames: typing.Optional[jsii.Number] = None,
|
|
@@ -35882,12 +35986,15 @@ def _typecheckingstub__ba24f075b346c08bd6351ec946aa6352e1a32fe09c8751f612abee3e6
|
|
|
35882
35986
|
flicker_aq: typing.Optional[builtins.str] = None,
|
|
35883
35987
|
framerate_denominator: typing.Optional[jsii.Number] = None,
|
|
35884
35988
|
framerate_numerator: typing.Optional[jsii.Number] = None,
|
|
35989
|
+
gop_b_reference: typing.Optional[builtins.str] = None,
|
|
35885
35990
|
gop_closed_cadence: typing.Optional[jsii.Number] = None,
|
|
35991
|
+
gop_num_b_frames: typing.Optional[jsii.Number] = None,
|
|
35886
35992
|
gop_size: typing.Optional[jsii.Number] = None,
|
|
35887
35993
|
gop_size_units: typing.Optional[builtins.str] = None,
|
|
35888
35994
|
level: typing.Optional[builtins.str] = None,
|
|
35889
35995
|
look_ahead_rate_control: typing.Optional[builtins.str] = None,
|
|
35890
35996
|
max_bitrate: typing.Optional[jsii.Number] = None,
|
|
35997
|
+
min_bitrate: typing.Optional[jsii.Number] = None,
|
|
35891
35998
|
min_i_interval: typing.Optional[jsii.Number] = None,
|
|
35892
35999
|
min_qp: typing.Optional[jsii.Number] = None,
|
|
35893
36000
|
mv_over_picture_boundaries: typing.Optional[builtins.str] = None,
|
|
@@ -35900,6 +36007,7 @@ def _typecheckingstub__ba24f075b346c08bd6351ec946aa6352e1a32fe09c8751f612abee3e6
|
|
|
35900
36007
|
scan_type: typing.Optional[builtins.str] = None,
|
|
35901
36008
|
scene_change_detect: typing.Optional[builtins.str] = None,
|
|
35902
36009
|
slices: typing.Optional[jsii.Number] = None,
|
|
36010
|
+
subgop_length: typing.Optional[builtins.str] = None,
|
|
35903
36011
|
tier: typing.Optional[builtins.str] = None,
|
|
35904
36012
|
tile_height: typing.Optional[jsii.Number] = None,
|
|
35905
36013
|
tile_padding: typing.Optional[builtins.str] = None,
|
aws_cdk/aws_mwaa/__init__.py
CHANGED
|
@@ -135,7 +135,7 @@ class CfnEnvironmentProps:
|
|
|
135
135
|
|
|
136
136
|
:param name: The name of your Amazon MWAA environment.
|
|
137
137
|
:param airflow_configuration_options: A list of key-value pairs containing the Airflow configuration options for your environment. For example, ``core.default_timezone: utc`` . To learn more, see `Apache Airflow configuration options <https://docs.aws.amazon.com/mwaa/latest/userguide/configuring-env-variables.html>`_ .
|
|
138
|
-
:param airflow_version: The version of Apache Airflow to use for the environment. If no value is specified, defaults to the latest version. If you specify a newer version number for an existing environment, the version update requires some service interruption before taking effect. *Allowed Values* : ``
|
|
138
|
+
:param airflow_version: The version of Apache Airflow to use for the environment. If no value is specified, defaults to the latest version. If you specify a newer version number for an existing environment, the version update requires some service interruption before taking effect. *Allowed Values* : ``2.7.2`` | ``2.8.1`` | ``2.9.2`` | ``2.10.1`` | ``2.10.3`` | ``3.0.6`` (latest)
|
|
139
139
|
:param dag_s3_path: The relative path to the DAGs folder on your Amazon S3 bucket. For example, ``dags`` . To learn more, see `Adding or updating DAGs <https://docs.aws.amazon.com/mwaa/latest/userguide/configuring-dag-folder.html>`_ .
|
|
140
140
|
:param endpoint_management: Defines whether the VPC endpoints configured for the environment are created, and managed, by the customer or by Amazon MWAA. If set to ``SERVICE`` , Amazon MWAA will create and manage the required VPC endpoints in your VPC. If set to ``CUSTOMER`` , you must create, and manage, the VPC endpoints in your VPC.
|
|
141
141
|
:param environment_class: The environment class type. Valid values: ``mw1.micro`` , ``mw1.small`` , ``mw1.medium`` , ``mw1.large`` , ``mw1.1large`` , and ``mw1.2large`` . To learn more, see `Amazon MWAA environment class <https://docs.aws.amazon.com/mwaa/latest/userguide/environment-class.html>`_ .
|
|
@@ -343,7 +343,7 @@ class CfnEnvironmentProps:
|
|
|
343
343
|
|
|
344
344
|
If you specify a newer version number for an existing environment, the version update requires some service interruption before taking effect.
|
|
345
345
|
|
|
346
|
-
*Allowed Values* : ``
|
|
346
|
+
*Allowed Values* : ``2.7.2`` | ``2.8.1`` | ``2.9.2`` | ``2.10.1`` | ``2.10.3`` | ``3.0.6`` (latest)
|
|
347
347
|
|
|
348
348
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaa-environment.html#cfn-mwaa-environment-airflowversion
|
|
349
349
|
'''
|
|
@@ -849,7 +849,7 @@ class CfnEnvironment(
|
|
|
849
849
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
850
850
|
:param name: The name of your Amazon MWAA environment.
|
|
851
851
|
:param airflow_configuration_options: A list of key-value pairs containing the Airflow configuration options for your environment. For example, ``core.default_timezone: utc`` . To learn more, see `Apache Airflow configuration options <https://docs.aws.amazon.com/mwaa/latest/userguide/configuring-env-variables.html>`_ .
|
|
852
|
-
:param airflow_version: The version of Apache Airflow to use for the environment. If no value is specified, defaults to the latest version. If you specify a newer version number for an existing environment, the version update requires some service interruption before taking effect. *Allowed Values* : ``
|
|
852
|
+
:param airflow_version: The version of Apache Airflow to use for the environment. If no value is specified, defaults to the latest version. If you specify a newer version number for an existing environment, the version update requires some service interruption before taking effect. *Allowed Values* : ``2.7.2`` | ``2.8.1`` | ``2.9.2`` | ``2.10.1`` | ``2.10.3`` | ``3.0.6`` (latest)
|
|
853
853
|
:param dag_s3_path: The relative path to the DAGs folder on your Amazon S3 bucket. For example, ``dags`` . To learn more, see `Adding or updating DAGs <https://docs.aws.amazon.com/mwaa/latest/userguide/configuring-dag-folder.html>`_ .
|
|
854
854
|
:param endpoint_management: Defines whether the VPC endpoints configured for the environment are created, and managed, by the customer or by Amazon MWAA. If set to ``SERVICE`` , Amazon MWAA will create and manage the required VPC endpoints in your VPC. If set to ``CUSTOMER`` , you must create, and manage, the VPC endpoints in your VPC.
|
|
855
855
|
:param environment_class: The environment class type. Valid values: ``mw1.micro`` , ``mw1.small`` , ``mw1.medium`` , ``mw1.large`` , ``mw1.1large`` , and ``mw1.2large`` . To learn more, see `Amazon MWAA environment class <https://docs.aws.amazon.com/mwaa/latest/userguide/environment-class.html>`_ .
|
|
@@ -1636,7 +1636,7 @@ class CfnEnvironment(
|
|
|
1636
1636
|
|
|
1637
1637
|
:param cloud_watch_log_group_arn: The ARN of the CloudWatch Logs log group for each type of Apache Airflow log type that you have enabled. .. epigraph:: ``CloudWatchLogGroupArn`` is available only as a return value, accessible when specified as an attribute in the ```Fn:GetAtt`` <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaa-environment.html#aws-resource-mwaa-environment-return-values>`_ intrinsic function. Any value you provide for ``CloudWatchLogGroupArn`` is discarded by Amazon MWAA.
|
|
1638
1638
|
:param enabled: Indicates whether to enable the Apache Airflow log type (e.g. ``DagProcessingLogs`` ) in CloudWatch Logs.
|
|
1639
|
-
:param log_level: Defines the Apache Airflow logs to send for the log type (e.g. ``DagProcessingLogs`` ) to CloudWatch Logs.
|
|
1639
|
+
:param log_level: Defines the Apache Airflow logs to send for the log type (e.g. ``DagProcessingLogs`` ) to CloudWatch Logs.
|
|
1640
1640
|
|
|
1641
1641
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mwaa-environment-moduleloggingconfiguration.html
|
|
1642
1642
|
:exampleMetadata: fixture=_generated
|
|
@@ -1692,7 +1692,7 @@ class CfnEnvironment(
|
|
|
1692
1692
|
|
|
1693
1693
|
@builtins.property
|
|
1694
1694
|
def log_level(self) -> typing.Optional[builtins.str]:
|
|
1695
|
-
'''Defines the Apache Airflow logs to send for the log type (e.g. ``DagProcessingLogs`` ) to CloudWatch Logs.
|
|
1695
|
+
'''Defines the Apache Airflow logs to send for the log type (e.g. ``DagProcessingLogs`` ) to CloudWatch Logs.
|
|
1696
1696
|
|
|
1697
1697
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mwaa-environment-moduleloggingconfiguration.html#cfn-mwaa-environment-moduleloggingconfiguration-loglevel
|
|
1698
1698
|
'''
|