aws-cdk.aws-ivs-alpha 2.157.0a0__tar.gz → 2.159.0a0__tar.gz

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.aws-ivs-alpha might be problematic. Click here for more details.

Files changed (20) hide show
  1. {aws_cdk_aws_ivs_alpha-2.157.0a0/src/aws_cdk.aws_ivs_alpha.egg-info → aws_cdk_aws_ivs_alpha-2.159.0a0}/PKG-INFO +16 -4
  2. {aws_cdk_aws_ivs_alpha-2.157.0a0 → aws_cdk_aws_ivs_alpha-2.159.0a0}/README.md +12 -0
  3. {aws_cdk_aws_ivs_alpha-2.157.0a0 → aws_cdk_aws_ivs_alpha-2.159.0a0}/setup.py +5 -5
  4. {aws_cdk_aws_ivs_alpha-2.157.0a0 → aws_cdk_aws_ivs_alpha-2.159.0a0}/src/aws_cdk/aws_ivs_alpha/__init__.py +57 -5
  5. aws_cdk_aws_ivs_alpha-2.159.0a0/src/aws_cdk/aws_ivs_alpha/_jsii/__init__.py +45 -0
  6. aws_cdk_aws_ivs_alpha-2.159.0a0/src/aws_cdk/aws_ivs_alpha/_jsii/aws-ivs-alpha@2.159.0-alpha.0.jsii.tgz +0 -0
  7. {aws_cdk_aws_ivs_alpha-2.157.0a0 → aws_cdk_aws_ivs_alpha-2.159.0a0/src/aws_cdk.aws_ivs_alpha.egg-info}/PKG-INFO +16 -4
  8. {aws_cdk_aws_ivs_alpha-2.157.0a0 → aws_cdk_aws_ivs_alpha-2.159.0a0}/src/aws_cdk.aws_ivs_alpha.egg-info/SOURCES.txt +1 -1
  9. aws_cdk_aws_ivs_alpha-2.159.0a0/src/aws_cdk.aws_ivs_alpha.egg-info/requires.txt +5 -0
  10. aws_cdk_aws_ivs_alpha-2.157.0a0/src/aws_cdk/aws_ivs_alpha/_jsii/__init__.py +0 -30
  11. aws_cdk_aws_ivs_alpha-2.157.0a0/src/aws_cdk/aws_ivs_alpha/_jsii/aws-ivs-alpha@2.157.0-alpha.0.jsii.tgz +0 -0
  12. aws_cdk_aws_ivs_alpha-2.157.0a0/src/aws_cdk.aws_ivs_alpha.egg-info/requires.txt +0 -5
  13. {aws_cdk_aws_ivs_alpha-2.157.0a0 → aws_cdk_aws_ivs_alpha-2.159.0a0}/LICENSE +0 -0
  14. {aws_cdk_aws_ivs_alpha-2.157.0a0 → aws_cdk_aws_ivs_alpha-2.159.0a0}/MANIFEST.in +0 -0
  15. {aws_cdk_aws_ivs_alpha-2.157.0a0 → aws_cdk_aws_ivs_alpha-2.159.0a0}/NOTICE +0 -0
  16. {aws_cdk_aws_ivs_alpha-2.157.0a0 → aws_cdk_aws_ivs_alpha-2.159.0a0}/pyproject.toml +0 -0
  17. {aws_cdk_aws_ivs_alpha-2.157.0a0 → aws_cdk_aws_ivs_alpha-2.159.0a0}/setup.cfg +0 -0
  18. {aws_cdk_aws_ivs_alpha-2.157.0a0 → aws_cdk_aws_ivs_alpha-2.159.0a0}/src/aws_cdk/aws_ivs_alpha/py.typed +0 -0
  19. {aws_cdk_aws_ivs_alpha-2.157.0a0 → aws_cdk_aws_ivs_alpha-2.159.0a0}/src/aws_cdk.aws_ivs_alpha.egg-info/dependency_links.txt +0 -0
  20. {aws_cdk_aws_ivs_alpha-2.157.0a0 → aws_cdk_aws_ivs_alpha-2.159.0a0}/src/aws_cdk.aws_ivs_alpha.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aws-cdk.aws-ivs-alpha
3
- Version: 2.157.0a0
3
+ Version: 2.159.0a0
4
4
  Summary: The CDK Construct Library for AWS::IVS
5
5
  Home-page: https://github.com/aws/aws-cdk
6
6
  Author: Amazon Web Services
@@ -23,11 +23,11 @@ Requires-Python: ~=3.8
23
23
  Description-Content-Type: text/markdown
24
24
  License-File: LICENSE
25
25
  License-File: NOTICE
26
- Requires-Dist: aws-cdk-lib<3.0.0,>=2.157.0
26
+ Requires-Dist: aws-cdk-lib<3.0.0,>=2.159.0
27
27
  Requires-Dist: constructs<11.0.0,>=10.0.0
28
- Requires-Dist: jsii<2.0.0,>=1.102.0
28
+ Requires-Dist: jsii<2.0.0,>=1.103.1
29
29
  Requires-Dist: publication>=0.0.3
30
- Requires-Dist: typeguard~=2.13.3
30
+ Requires-Dist: typeguard<5.0.0,>=2.13.3
31
31
 
32
32
  # AWS::IVS Construct Library
33
33
 
@@ -85,6 +85,18 @@ my_channel = ivs.Channel(self, "myChannel",
85
85
  )
86
86
  ```
87
87
 
88
+ If you want to use RTMP ingest, set `insecureIngest` property to `true`.
89
+ By default, `insecureIngest` is `false` which means using RTMPS ingest.
90
+
91
+ **⚠ Note:** RTMP ingest might result in reduced security for your streams. AWS recommends that you use RTMPS for ingest, unless you have specific and verified use cases. For more information, see [Encoder Settings](https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/streaming-config.html#streaming-config-settings).
92
+
93
+ ```python
94
+ my_rtmp_channel = ivs.Channel(self, "myRtmpChannel",
95
+ type=ivs.ChannelType.STANDARD,
96
+ insecure_ingest=True
97
+ )
98
+ ```
99
+
88
100
  ### Importing an existing channel
89
101
 
90
102
  You can reference an existing channel, for example, if you need to create a
@@ -54,6 +54,18 @@ my_channel = ivs.Channel(self, "myChannel",
54
54
  )
55
55
  ```
56
56
 
57
+ If you want to use RTMP ingest, set `insecureIngest` property to `true`.
58
+ By default, `insecureIngest` is `false` which means using RTMPS ingest.
59
+
60
+ **⚠ Note:** RTMP ingest might result in reduced security for your streams. AWS recommends that you use RTMPS for ingest, unless you have specific and verified use cases. For more information, see [Encoder Settings](https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/streaming-config.html#streaming-config-settings).
61
+
62
+ ```python
63
+ my_rtmp_channel = ivs.Channel(self, "myRtmpChannel",
64
+ type=ivs.ChannelType.STANDARD,
65
+ insecure_ingest=True
66
+ )
67
+ ```
68
+
57
69
  ### Importing an existing channel
58
70
 
59
71
  You can reference an existing channel, for example, if you need to create a
@@ -5,7 +5,7 @@ kwargs = json.loads(
5
5
  """
6
6
  {
7
7
  "name": "aws-cdk.aws-ivs-alpha",
8
- "version": "2.157.0.a0",
8
+ "version": "2.159.0.a0",
9
9
  "description": "The CDK Construct Library for AWS::IVS",
10
10
  "license": "Apache-2.0",
11
11
  "url": "https://github.com/aws/aws-cdk",
@@ -26,7 +26,7 @@ kwargs = json.loads(
26
26
  ],
27
27
  "package_data": {
28
28
  "aws_cdk.aws_ivs_alpha._jsii": [
29
- "aws-ivs-alpha@2.157.0-alpha.0.jsii.tgz"
29
+ "aws-ivs-alpha@2.159.0-alpha.0.jsii.tgz"
30
30
  ],
31
31
  "aws_cdk.aws_ivs_alpha": [
32
32
  "py.typed"
@@ -34,11 +34,11 @@ kwargs = json.loads(
34
34
  },
35
35
  "python_requires": "~=3.8",
36
36
  "install_requires": [
37
- "aws-cdk-lib>=2.157.0, <3.0.0",
37
+ "aws-cdk-lib>=2.159.0, <3.0.0",
38
38
  "constructs>=10.0.0, <11.0.0",
39
- "jsii>=1.102.0, <2.0.0",
39
+ "jsii>=1.103.1, <2.0.0",
40
40
  "publication>=0.0.3",
41
- "typeguard~=2.13.3"
41
+ "typeguard>=2.13.3,<5.0.0"
42
42
  ],
43
43
  "classifiers": [
44
44
  "Intended Audience :: Developers",
@@ -55,6 +55,18 @@ my_channel = ivs.Channel(self, "myChannel",
55
55
  )
56
56
  ```
57
57
 
58
+ If you want to use RTMP ingest, set `insecureIngest` property to `true`.
59
+ By default, `insecureIngest` is `false` which means using RTMPS ingest.
60
+
61
+ **⚠ Note:** RTMP ingest might result in reduced security for your streams. AWS recommends that you use RTMPS for ingest, unless you have specific and verified use cases. For more information, see [Encoder Settings](https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/streaming-config.html#streaming-config-settings).
62
+
63
+ ```python
64
+ my_rtmp_channel = ivs.Channel(self, "myRtmpChannel",
65
+ type=ivs.ChannelType.STANDARD,
66
+ insecure_ingest=True
67
+ )
68
+ ```
69
+
58
70
  ### Importing an existing channel
59
71
 
60
72
  You can reference an existing channel, for example, if you need to create a
@@ -117,7 +129,22 @@ import jsii
117
129
  import publication
118
130
  import typing_extensions
119
131
 
120
- from typeguard import check_type
132
+ import typeguard
133
+ from importlib.metadata import version as _metadata_package_version
134
+ TYPEGUARD_MAJOR_VERSION = int(_metadata_package_version('typeguard').split('.')[0])
135
+
136
+ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing.Any:
137
+ if TYPEGUARD_MAJOR_VERSION <= 2:
138
+ return typeguard.check_type(argname=argname, value=value, expected_type=expected_type) # type:ignore
139
+ else:
140
+ if isinstance(value, jsii._reference_map.InterfaceDynamicProxy): # pyright: ignore [reportAttributeAccessIssue]
141
+ pass
142
+ else:
143
+ if TYPEGUARD_MAJOR_VERSION == 3:
144
+ typeguard.config.collection_check_strategy = typeguard.CollectionCheckStrategy.ALL_ITEMS # type:ignore
145
+ typeguard.check_type(value=value, expected_type=expected_type) # type:ignore
146
+ else:
147
+ typeguard.check_type(value=value, expected_type=expected_type, collection_check_strategy=typeguard.CollectionCheckStrategy.ALL_ITEMS) # type:ignore
121
148
 
122
149
  from ._jsii import *
123
150
 
@@ -131,6 +158,7 @@ import constructs as _constructs_77d1e7e8
131
158
  name_mapping={
132
159
  "authorized": "authorized",
133
160
  "channel_name": "channelName",
161
+ "insecure_ingest": "insecureIngest",
134
162
  "latency_mode": "latencyMode",
135
163
  "preset": "preset",
136
164
  "type": "type",
@@ -142,6 +170,7 @@ class ChannelProps:
142
170
  *,
143
171
  authorized: typing.Optional[builtins.bool] = None,
144
172
  channel_name: typing.Optional[builtins.str] = None,
173
+ insecure_ingest: typing.Optional[builtins.bool] = None,
145
174
  latency_mode: typing.Optional["LatencyMode"] = None,
146
175
  preset: typing.Optional["Preset"] = None,
147
176
  type: typing.Optional["ChannelType"] = None,
@@ -150,6 +179,7 @@ class ChannelProps:
150
179
 
151
180
  :param authorized: (experimental) Whether the channel is authorized. If you wish to make an authorized channel, you will need to ensure that a PlaybackKeyPair has been uploaded to your account as this is used to validate the signed JWT that is required for authorization Default: false
152
181
  :param channel_name: (experimental) A name for the channel. Default: Automatically generated name
182
+ :param insecure_ingest: (experimental) Whether the channel allows insecure RTMP ingest. Default: false
153
183
  :param latency_mode: (experimental) Channel latency mode. Default: LatencyMode.LOW
154
184
  :param preset: (experimental) An optional transcode preset for the channel. Can be used for ADVANCED_HD and ADVANCED_SD channel types. When LOW or STANDARD is used, the preset will be overridden and set to none regardless of the value provided. Default: - Preset.HIGHER_BANDWIDTH_DELIVERY if channelType is ADVANCED_SD or ADVANCED_HD, none otherwise
155
185
  :param type: (experimental) The channel type, which determines the allowable resolution and bitrate. If you exceed the allowable resolution or bitrate, the stream will disconnect immediately Default: ChannelType.STANDARD
@@ -159,15 +189,16 @@ class ChannelProps:
159
189
 
160
190
  Example::
161
191
 
162
- my_channel = ivs.Channel(self, "myChannel",
163
- type=ivs.ChannelType.ADVANCED_HD,
164
- preset=ivs.Preset.CONSTRAINED_BANDWIDTH_DELIVERY
192
+ my_rtmp_channel = ivs.Channel(self, "myRtmpChannel",
193
+ type=ivs.ChannelType.STANDARD,
194
+ insecure_ingest=True
165
195
  )
166
196
  '''
167
197
  if __debug__:
168
198
  type_hints = typing.get_type_hints(_typecheckingstub__0ebf6a0e98bbd5b88d9676fbe616666a44f837cba80675eade5df1fea22c9d22)
169
199
  check_type(argname="argument authorized", value=authorized, expected_type=type_hints["authorized"])
170
200
  check_type(argname="argument channel_name", value=channel_name, expected_type=type_hints["channel_name"])
201
+ check_type(argname="argument insecure_ingest", value=insecure_ingest, expected_type=type_hints["insecure_ingest"])
171
202
  check_type(argname="argument latency_mode", value=latency_mode, expected_type=type_hints["latency_mode"])
172
203
  check_type(argname="argument preset", value=preset, expected_type=type_hints["preset"])
173
204
  check_type(argname="argument type", value=type, expected_type=type_hints["type"])
@@ -176,6 +207,8 @@ class ChannelProps:
176
207
  self._values["authorized"] = authorized
177
208
  if channel_name is not None:
178
209
  self._values["channel_name"] = channel_name
210
+ if insecure_ingest is not None:
211
+ self._values["insecure_ingest"] = insecure_ingest
179
212
  if latency_mode is not None:
180
213
  self._values["latency_mode"] = latency_mode
181
214
  if preset is not None:
@@ -209,6 +242,17 @@ class ChannelProps:
209
242
  result = self._values.get("channel_name")
210
243
  return typing.cast(typing.Optional[builtins.str], result)
211
244
 
245
+ @builtins.property
246
+ def insecure_ingest(self) -> typing.Optional[builtins.bool]:
247
+ '''(experimental) Whether the channel allows insecure RTMP ingest.
248
+
249
+ :default: false
250
+
251
+ :stability: experimental
252
+ '''
253
+ result = self._values.get("insecure_ingest")
254
+ return typing.cast(typing.Optional[builtins.bool], result)
255
+
212
256
  @builtins.property
213
257
  def latency_mode(self) -> typing.Optional["LatencyMode"]:
214
258
  '''(experimental) Channel latency mode.
@@ -797,7 +841,10 @@ class Channel(
797
841
 
798
842
  Example::
799
843
 
800
- my_channel = ivs.Channel.from_channel_arn(self, "Channel", my_channel_arn)
844
+ my_rtmp_channel = ivs.Channel(self, "myRtmpChannel",
845
+ type=ivs.ChannelType.STANDARD,
846
+ insecure_ingest=True
847
+ )
801
848
  '''
802
849
 
803
850
  def __init__(
@@ -807,6 +854,7 @@ class Channel(
807
854
  *,
808
855
  authorized: typing.Optional[builtins.bool] = None,
809
856
  channel_name: typing.Optional[builtins.str] = None,
857
+ insecure_ingest: typing.Optional[builtins.bool] = None,
810
858
  latency_mode: typing.Optional[LatencyMode] = None,
811
859
  preset: typing.Optional[Preset] = None,
812
860
  type: typing.Optional[ChannelType] = None,
@@ -816,6 +864,7 @@ class Channel(
816
864
  :param id: -
817
865
  :param authorized: (experimental) Whether the channel is authorized. If you wish to make an authorized channel, you will need to ensure that a PlaybackKeyPair has been uploaded to your account as this is used to validate the signed JWT that is required for authorization Default: false
818
866
  :param channel_name: (experimental) A name for the channel. Default: Automatically generated name
867
+ :param insecure_ingest: (experimental) Whether the channel allows insecure RTMP ingest. Default: false
819
868
  :param latency_mode: (experimental) Channel latency mode. Default: LatencyMode.LOW
820
869
  :param preset: (experimental) An optional transcode preset for the channel. Can be used for ADVANCED_HD and ADVANCED_SD channel types. When LOW or STANDARD is used, the preset will be overridden and set to none regardless of the value provided. Default: - Preset.HIGHER_BANDWIDTH_DELIVERY if channelType is ADVANCED_SD or ADVANCED_HD, none otherwise
821
870
  :param type: (experimental) The channel type, which determines the allowable resolution and bitrate. If you exceed the allowable resolution or bitrate, the stream will disconnect immediately Default: ChannelType.STANDARD
@@ -829,6 +878,7 @@ class Channel(
829
878
  props = ChannelProps(
830
879
  authorized=authorized,
831
880
  channel_name=channel_name,
881
+ insecure_ingest=insecure_ingest,
832
882
  latency_mode=latency_mode,
833
883
  preset=preset,
834
884
  type=type,
@@ -930,6 +980,7 @@ def _typecheckingstub__0ebf6a0e98bbd5b88d9676fbe616666a44f837cba80675eade5df1fea
930
980
  *,
931
981
  authorized: typing.Optional[builtins.bool] = None,
932
982
  channel_name: typing.Optional[builtins.str] = None,
983
+ insecure_ingest: typing.Optional[builtins.bool] = None,
933
984
  latency_mode: typing.Optional[LatencyMode] = None,
934
985
  preset: typing.Optional[Preset] = None,
935
986
  type: typing.Optional[ChannelType] = None,
@@ -983,6 +1034,7 @@ def _typecheckingstub__07139327925dc97a551bbf17c849a0f698e0c9c60d3da3f65f2b3d2be
983
1034
  *,
984
1035
  authorized: typing.Optional[builtins.bool] = None,
985
1036
  channel_name: typing.Optional[builtins.str] = None,
1037
+ insecure_ingest: typing.Optional[builtins.bool] = None,
986
1038
  latency_mode: typing.Optional[LatencyMode] = None,
987
1039
  preset: typing.Optional[Preset] = None,
988
1040
  type: typing.Optional[ChannelType] = None,
@@ -0,0 +1,45 @@
1
+ from pkgutil import extend_path
2
+ __path__ = extend_path(__path__, __name__)
3
+
4
+ import abc
5
+ import builtins
6
+ import datetime
7
+ import enum
8
+ import typing
9
+
10
+ import jsii
11
+ import publication
12
+ import typing_extensions
13
+
14
+ import typeguard
15
+ from importlib.metadata import version as _metadata_package_version
16
+ TYPEGUARD_MAJOR_VERSION = int(_metadata_package_version('typeguard').split('.')[0])
17
+
18
+ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing.Any:
19
+ if TYPEGUARD_MAJOR_VERSION <= 2:
20
+ return typeguard.check_type(argname=argname, value=value, expected_type=expected_type) # type:ignore
21
+ else:
22
+ if isinstance(value, jsii._reference_map.InterfaceDynamicProxy): # pyright: ignore [reportAttributeAccessIssue]
23
+ pass
24
+ else:
25
+ if TYPEGUARD_MAJOR_VERSION == 3:
26
+ typeguard.config.collection_check_strategy = typeguard.CollectionCheckStrategy.ALL_ITEMS # type:ignore
27
+ typeguard.check_type(value=value, expected_type=expected_type) # type:ignore
28
+ else:
29
+ typeguard.check_type(value=value, expected_type=expected_type, collection_check_strategy=typeguard.CollectionCheckStrategy.ALL_ITEMS) # type:ignore
30
+
31
+ import aws_cdk._jsii
32
+ import constructs._jsii
33
+
34
+ __jsii_assembly__ = jsii.JSIIAssembly.load(
35
+ "@aws-cdk/aws-ivs-alpha",
36
+ "2.159.0-alpha.0",
37
+ __name__[0:-6],
38
+ "aws-ivs-alpha@2.159.0-alpha.0.jsii.tgz",
39
+ )
40
+
41
+ __all__ = [
42
+ "__jsii_assembly__",
43
+ ]
44
+
45
+ publication.publish()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aws-cdk.aws-ivs-alpha
3
- Version: 2.157.0a0
3
+ Version: 2.159.0a0
4
4
  Summary: The CDK Construct Library for AWS::IVS
5
5
  Home-page: https://github.com/aws/aws-cdk
6
6
  Author: Amazon Web Services
@@ -23,11 +23,11 @@ Requires-Python: ~=3.8
23
23
  Description-Content-Type: text/markdown
24
24
  License-File: LICENSE
25
25
  License-File: NOTICE
26
- Requires-Dist: aws-cdk-lib<3.0.0,>=2.157.0
26
+ Requires-Dist: aws-cdk-lib<3.0.0,>=2.159.0
27
27
  Requires-Dist: constructs<11.0.0,>=10.0.0
28
- Requires-Dist: jsii<2.0.0,>=1.102.0
28
+ Requires-Dist: jsii<2.0.0,>=1.103.1
29
29
  Requires-Dist: publication>=0.0.3
30
- Requires-Dist: typeguard~=2.13.3
30
+ Requires-Dist: typeguard<5.0.0,>=2.13.3
31
31
 
32
32
  # AWS::IVS Construct Library
33
33
 
@@ -85,6 +85,18 @@ my_channel = ivs.Channel(self, "myChannel",
85
85
  )
86
86
  ```
87
87
 
88
+ If you want to use RTMP ingest, set `insecureIngest` property to `true`.
89
+ By default, `insecureIngest` is `false` which means using RTMPS ingest.
90
+
91
+ **⚠ Note:** RTMP ingest might result in reduced security for your streams. AWS recommends that you use RTMPS for ingest, unless you have specific and verified use cases. For more information, see [Encoder Settings](https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/streaming-config.html#streaming-config-settings).
92
+
93
+ ```python
94
+ my_rtmp_channel = ivs.Channel(self, "myRtmpChannel",
95
+ type=ivs.ChannelType.STANDARD,
96
+ insecure_ingest=True
97
+ )
98
+ ```
99
+
88
100
  ### Importing an existing channel
89
101
 
90
102
  You can reference an existing channel, for example, if you need to create a
@@ -12,4 +12,4 @@ src/aws_cdk.aws_ivs_alpha.egg-info/top_level.txt
12
12
  src/aws_cdk/aws_ivs_alpha/__init__.py
13
13
  src/aws_cdk/aws_ivs_alpha/py.typed
14
14
  src/aws_cdk/aws_ivs_alpha/_jsii/__init__.py
15
- src/aws_cdk/aws_ivs_alpha/_jsii/aws-ivs-alpha@2.157.0-alpha.0.jsii.tgz
15
+ src/aws_cdk/aws_ivs_alpha/_jsii/aws-ivs-alpha@2.159.0-alpha.0.jsii.tgz
@@ -0,0 +1,5 @@
1
+ aws-cdk-lib<3.0.0,>=2.159.0
2
+ constructs<11.0.0,>=10.0.0
3
+ jsii<2.0.0,>=1.103.1
4
+ publication>=0.0.3
5
+ typeguard<5.0.0,>=2.13.3
@@ -1,30 +0,0 @@
1
- from pkgutil import extend_path
2
- __path__ = extend_path(__path__, __name__)
3
-
4
- import abc
5
- import builtins
6
- import datetime
7
- import enum
8
- import typing
9
-
10
- import jsii
11
- import publication
12
- import typing_extensions
13
-
14
- from typeguard import check_type
15
-
16
- import aws_cdk._jsii
17
- import constructs._jsii
18
-
19
- __jsii_assembly__ = jsii.JSIIAssembly.load(
20
- "@aws-cdk/aws-ivs-alpha",
21
- "2.157.0-alpha.0",
22
- __name__[0:-6],
23
- "aws-ivs-alpha@2.157.0-alpha.0.jsii.tgz",
24
- )
25
-
26
- __all__ = [
27
- "__jsii_assembly__",
28
- ]
29
-
30
- publication.publish()
@@ -1,5 +0,0 @@
1
- aws-cdk-lib<3.0.0,>=2.157.0
2
- constructs<11.0.0,>=10.0.0
3
- jsii<2.0.0,>=1.102.0
4
- publication>=0.0.3
5
- typeguard~=2.13.3