aws-cdk-lib 2.167.2__py3-none-any.whl → 2.169.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 +2083 -0
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.167.2.jsii.tgz → aws-cdk-lib@2.169.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_accessanalyzer/__init__.py +244 -13
  5. aws_cdk/aws_applicationautoscaling/__init__.py +1691 -95
  6. aws_cdk/aws_applicationinsights/__init__.py +41 -0
  7. aws_cdk/aws_applicationsignals/__init__.py +124 -0
  8. aws_cdk/aws_autoscaling/__init__.py +743 -7
  9. aws_cdk/aws_batch/__init__.py +202 -5
  10. aws_cdk/aws_bedrock/__init__.py +12 -12
  11. aws_cdk/aws_cleanrooms/__init__.py +17 -8
  12. aws_cdk/aws_cloudformation/__init__.py +2571 -492
  13. aws_cdk/aws_cloudfront/__init__.py +281 -0
  14. aws_cdk/aws_cloudfront/experimental/__init__.py +5 -0
  15. aws_cdk/aws_cloudfront_origins/__init__.py +714 -132
  16. aws_cdk/aws_cloudtrail/__init__.py +52 -14
  17. aws_cdk/aws_codebuild/__init__.py +670 -4
  18. aws_cdk/aws_connect/__init__.py +378 -0
  19. aws_cdk/aws_connectcampaignsv2/__init__.py +3376 -0
  20. aws_cdk/aws_customerprofiles/__init__.py +44 -0
  21. aws_cdk/aws_deadline/__init__.py +299 -6
  22. aws_cdk/aws_dynamodb/__init__.py +359 -16
  23. aws_cdk/aws_ec2/__init__.py +19 -6
  24. aws_cdk/aws_ecs/__init__.py +231 -12
  25. aws_cdk/aws_efs/__init__.py +61 -4
  26. aws_cdk/aws_eks/__init__.py +116 -0
  27. aws_cdk/aws_elasticloadbalancingv2/__init__.py +160 -11
  28. aws_cdk/aws_fis/__init__.py +495 -0
  29. aws_cdk/aws_gamelift/__init__.py +3204 -1104
  30. aws_cdk/aws_iot/__init__.py +209 -0
  31. aws_cdk/aws_iotfleetwise/__init__.py +550 -0
  32. aws_cdk/aws_iotsitewise/__init__.py +6 -3
  33. aws_cdk/aws_ivs/__init__.py +458 -0
  34. aws_cdk/aws_kinesisfirehose/__init__.py +756 -8
  35. aws_cdk/aws_lambda/__init__.py +634 -259
  36. aws_cdk/aws_lambda_destinations/__init__.py +73 -0
  37. aws_cdk/aws_lambda_event_sources/__init__.py +102 -2
  38. aws_cdk/aws_location/__init__.py +18 -18
  39. aws_cdk/aws_mediastore/__init__.py +22 -10
  40. aws_cdk/aws_opensearchservice/__init__.py +6 -0
  41. aws_cdk/aws_quicksight/__init__.py +35 -19
  42. aws_cdk/aws_rbin/__init__.py +902 -0
  43. aws_cdk/aws_rds/__init__.py +166 -3
  44. aws_cdk/aws_route53resolver/__init__.py +76 -19
  45. aws_cdk/aws_sagemaker/__init__.py +32 -0
  46. aws_cdk/aws_securityhub/__init__.py +11 -14
  47. aws_cdk/aws_ses/__init__.py +58 -5
  48. aws_cdk/aws_sns/__init__.py +593 -8
  49. aws_cdk/aws_sns_subscriptions/__init__.py +68 -22
  50. aws_cdk/aws_stepfunctions_tasks/__init__.py +1601 -8
  51. aws_cdk/aws_synthetics/__init__.py +46 -0
  52. aws_cdk/aws_transfer/__init__.py +0 -8
  53. aws_cdk/aws_vpclattice/__init__.py +157 -2
  54. aws_cdk/aws_wisdom/__init__.py +113 -69
  55. {aws_cdk_lib-2.167.2.dist-info → aws_cdk_lib-2.169.0.dist-info}/METADATA +1 -1
  56. {aws_cdk_lib-2.167.2.dist-info → aws_cdk_lib-2.169.0.dist-info}/RECORD +60 -58
  57. {aws_cdk_lib-2.167.2.dist-info → aws_cdk_lib-2.169.0.dist-info}/LICENSE +0 -0
  58. {aws_cdk_lib-2.167.2.dist-info → aws_cdk_lib-2.169.0.dist-info}/NOTICE +0 -0
  59. {aws_cdk_lib-2.167.2.dist-info → aws_cdk_lib-2.169.0.dist-info}/WHEEL +0 -0
  60. {aws_cdk_lib-2.167.2.dist-info → aws_cdk_lib-2.169.0.dist-info}/top_level.txt +0 -0
@@ -3875,7 +3875,7 @@ class CfnDashboard(
3875
3875
  '''
3876
3876
  :param scope: Scope in which this resource is defined.
3877
3877
  :param id: Construct identifier for this resource (unique in its scope).
3878
- :param dashboard_definition: The dashboard definition specified in a JSON literal. For detailed information, see `Creating dashboards (CLI) <https://docs.aws.amazon.com/iot-sitewise/latest/userguide/create-dashboards-using-aws-cli.html>`_ in the *AWS IoT SiteWise User Guide* .
3878
+ :param dashboard_definition: The dashboard definition specified in a JSON literal. - AWS IoT SiteWise Monitor (Classic) see `Create dashboards ( AWS CLI ) <https://docs.aws.amazon.com/iot-sitewise/latest/userguide/create-dashboards-using-aws-cli.html>`_ - AWS IoT SiteWise Monitor (AI-aware) see `Create dashboards ( AWS CLI ) <https://docs.aws.amazon.com/iot-sitewise/latest/userguide/create-dashboards-ai-dashboard-cli.html>`_ in the *AWS IoT SiteWise User Guide*
3879
3879
  :param dashboard_description: A description for the dashboard.
3880
3880
  :param dashboard_name: A friendly name for the dashboard.
3881
3881
  :param project_id: The ID of the project in which to create the dashboard.
@@ -4045,7 +4045,7 @@ class CfnDashboardProps:
4045
4045
  ) -> None:
4046
4046
  '''Properties for defining a ``CfnDashboard``.
4047
4047
 
4048
- :param dashboard_definition: The dashboard definition specified in a JSON literal. For detailed information, see `Creating dashboards (CLI) <https://docs.aws.amazon.com/iot-sitewise/latest/userguide/create-dashboards-using-aws-cli.html>`_ in the *AWS IoT SiteWise User Guide* .
4048
+ :param dashboard_definition: The dashboard definition specified in a JSON literal. - AWS IoT SiteWise Monitor (Classic) see `Create dashboards ( AWS CLI ) <https://docs.aws.amazon.com/iot-sitewise/latest/userguide/create-dashboards-using-aws-cli.html>`_ - AWS IoT SiteWise Monitor (AI-aware) see `Create dashboards ( AWS CLI ) <https://docs.aws.amazon.com/iot-sitewise/latest/userguide/create-dashboards-ai-dashboard-cli.html>`_ in the *AWS IoT SiteWise User Guide*
4049
4049
  :param dashboard_description: A description for the dashboard.
4050
4050
  :param dashboard_name: A friendly name for the dashboard.
4051
4051
  :param project_id: The ID of the project in which to create the dashboard.
@@ -4094,7 +4094,10 @@ class CfnDashboardProps:
4094
4094
  def dashboard_definition(self) -> builtins.str:
4095
4095
  '''The dashboard definition specified in a JSON literal.
4096
4096
 
4097
- For detailed information, see `Creating dashboards (CLI) <https://docs.aws.amazon.com/iot-sitewise/latest/userguide/create-dashboards-using-aws-cli.html>`_ in the *AWS IoT SiteWise User Guide* .
4097
+ - AWS IoT SiteWise Monitor (Classic) see `Create dashboards ( AWS CLI ) <https://docs.aws.amazon.com/iot-sitewise/latest/userguide/create-dashboards-using-aws-cli.html>`_
4098
+ - AWS IoT SiteWise Monitor (AI-aware) see `Create dashboards ( AWS CLI ) <https://docs.aws.amazon.com/iot-sitewise/latest/userguide/create-dashboards-ai-dashboard-cli.html>`_
4099
+
4100
+ in the *AWS IoT SiteWise User Guide*
4098
4101
 
4099
4102
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-dashboard.html#cfn-iotsitewise-dashboard-dashboarddefinition
4100
4103
  '''
@@ -949,6 +949,388 @@ class CfnEncoderConfigurationProps:
949
949
  )
950
950
 
951
951
 
952
+ @jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
953
+ class CfnIngestConfiguration(
954
+ _CfnResource_9df397a6,
955
+ metaclass=jsii.JSIIMeta,
956
+ jsii_type="aws-cdk-lib.aws_ivs.CfnIngestConfiguration",
957
+ ):
958
+ '''Resource Type definition for AWS::IVS::IngestConfiguration.
959
+
960
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-ingestconfiguration.html
961
+ :cloudformationResource: AWS::IVS::IngestConfiguration
962
+ :exampleMetadata: fixture=_generated
963
+
964
+ Example::
965
+
966
+ # The code below shows an example of how to instantiate this type.
967
+ # The values are placeholders you should change.
968
+ from aws_cdk import aws_ivs as ivs
969
+
970
+ cfn_ingest_configuration = ivs.CfnIngestConfiguration(self, "MyCfnIngestConfiguration",
971
+ ingest_protocol="ingestProtocol",
972
+ insecure_ingest=False,
973
+ name="name",
974
+ stage_arn="stageArn",
975
+ tags=[CfnTag(
976
+ key="key",
977
+ value="value"
978
+ )],
979
+ user_id="userId"
980
+ )
981
+ '''
982
+
983
+ def __init__(
984
+ self,
985
+ scope: _constructs_77d1e7e8.Construct,
986
+ id: builtins.str,
987
+ *,
988
+ ingest_protocol: typing.Optional[builtins.str] = None,
989
+ insecure_ingest: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
990
+ name: typing.Optional[builtins.str] = None,
991
+ stage_arn: typing.Optional[builtins.str] = None,
992
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
993
+ user_id: typing.Optional[builtins.str] = None,
994
+ ) -> None:
995
+ '''
996
+ :param scope: Scope in which this resource is defined.
997
+ :param id: Construct identifier for this resource (unique in its scope).
998
+ :param ingest_protocol: Ingest Protocol. Default: - "RTMPS"
999
+ :param insecure_ingest: Whether ingest configuration allows insecure ingest. Default: - false
1000
+ :param name: IngestConfiguration. Default: - "-"
1001
+ :param stage_arn: Stage ARN. A value other than an empty string indicates that stage is linked to IngestConfiguration. Default: "" (recording is disabled). Default: - ""
1002
+ :param tags: A list of key-value pairs that contain metadata for the asset model.
1003
+ :param user_id: User defined indentifier for participant associated with IngestConfiguration.
1004
+ '''
1005
+ if __debug__:
1006
+ type_hints = typing.get_type_hints(_typecheckingstub__c56f46c8c3462fcf78f3e0898b4048a399a031987b0a76a9193f42a0a98fcd5e)
1007
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
1008
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
1009
+ props = CfnIngestConfigurationProps(
1010
+ ingest_protocol=ingest_protocol,
1011
+ insecure_ingest=insecure_ingest,
1012
+ name=name,
1013
+ stage_arn=stage_arn,
1014
+ tags=tags,
1015
+ user_id=user_id,
1016
+ )
1017
+
1018
+ jsii.create(self.__class__, self, [scope, id, props])
1019
+
1020
+ @jsii.member(jsii_name="inspect")
1021
+ def inspect(self, inspector: _TreeInspector_488e0dd5) -> None:
1022
+ '''Examines the CloudFormation resource and discloses attributes.
1023
+
1024
+ :param inspector: tree inspector to collect and process attributes.
1025
+ '''
1026
+ if __debug__:
1027
+ type_hints = typing.get_type_hints(_typecheckingstub__e7a53bbb588815f0015c227540b92fa7ba4a33256116e056573299d99ef57574)
1028
+ check_type(argname="argument inspector", value=inspector, expected_type=type_hints["inspector"])
1029
+ return typing.cast(None, jsii.invoke(self, "inspect", [inspector]))
1030
+
1031
+ @jsii.member(jsii_name="renderProperties")
1032
+ def _render_properties(
1033
+ self,
1034
+ props: typing.Mapping[builtins.str, typing.Any],
1035
+ ) -> typing.Mapping[builtins.str, typing.Any]:
1036
+ '''
1037
+ :param props: -
1038
+ '''
1039
+ if __debug__:
1040
+ type_hints = typing.get_type_hints(_typecheckingstub__2f47d1d0418cb9d42da8be28f4cb517e4e83775aec57930b9ba318f95f6168c3)
1041
+ check_type(argname="argument props", value=props, expected_type=type_hints["props"])
1042
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.invoke(self, "renderProperties", [props]))
1043
+
1044
+ @jsii.python.classproperty
1045
+ @jsii.member(jsii_name="CFN_RESOURCE_TYPE_NAME")
1046
+ def CFN_RESOURCE_TYPE_NAME(cls) -> builtins.str:
1047
+ '''The CloudFormation resource type name for this resource class.'''
1048
+ return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
1049
+
1050
+ @builtins.property
1051
+ @jsii.member(jsii_name="attrArn")
1052
+ def attr_arn(self) -> builtins.str:
1053
+ '''IngestConfiguration ARN is automatically generated on creation and assigned as the unique identifier.
1054
+
1055
+ :cloudformationAttribute: Arn
1056
+ '''
1057
+ return typing.cast(builtins.str, jsii.get(self, "attrArn"))
1058
+
1059
+ @builtins.property
1060
+ @jsii.member(jsii_name="attrParticipantId")
1061
+ def attr_participant_id(self) -> builtins.str:
1062
+ '''Participant Id is automatically generated on creation and assigned.
1063
+
1064
+ :cloudformationAttribute: ParticipantId
1065
+ '''
1066
+ return typing.cast(builtins.str, jsii.get(self, "attrParticipantId"))
1067
+
1068
+ @builtins.property
1069
+ @jsii.member(jsii_name="attrState")
1070
+ def attr_state(self) -> builtins.str:
1071
+ '''State of IngestConfiguration which determines whether IngestConfiguration is in use or not.
1072
+
1073
+ :cloudformationAttribute: State
1074
+ '''
1075
+ return typing.cast(builtins.str, jsii.get(self, "attrState"))
1076
+
1077
+ @builtins.property
1078
+ @jsii.member(jsii_name="attrStreamKey")
1079
+ def attr_stream_key(self) -> builtins.str:
1080
+ '''Stream-key value.
1081
+
1082
+ :cloudformationAttribute: StreamKey
1083
+ '''
1084
+ return typing.cast(builtins.str, jsii.get(self, "attrStreamKey"))
1085
+
1086
+ @builtins.property
1087
+ @jsii.member(jsii_name="cdkTagManager")
1088
+ def cdk_tag_manager(self) -> _TagManager_0a598cb3:
1089
+ '''Tag Manager which manages the tags for this resource.'''
1090
+ return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
1091
+
1092
+ @builtins.property
1093
+ @jsii.member(jsii_name="cfnProperties")
1094
+ def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
1095
+ return typing.cast(typing.Mapping[builtins.str, typing.Any], jsii.get(self, "cfnProperties"))
1096
+
1097
+ @builtins.property
1098
+ @jsii.member(jsii_name="ingestProtocol")
1099
+ def ingest_protocol(self) -> typing.Optional[builtins.str]:
1100
+ '''Ingest Protocol.'''
1101
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "ingestProtocol"))
1102
+
1103
+ @ingest_protocol.setter
1104
+ def ingest_protocol(self, value: typing.Optional[builtins.str]) -> None:
1105
+ if __debug__:
1106
+ type_hints = typing.get_type_hints(_typecheckingstub__313ff481891bab6b5a8445b484bcb46c2d4e31789868f166495c526d0fe9002e)
1107
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1108
+ jsii.set(self, "ingestProtocol", value) # pyright: ignore[reportArgumentType]
1109
+
1110
+ @builtins.property
1111
+ @jsii.member(jsii_name="insecureIngest")
1112
+ def insecure_ingest(
1113
+ self,
1114
+ ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
1115
+ '''Whether ingest configuration allows insecure ingest.'''
1116
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], jsii.get(self, "insecureIngest"))
1117
+
1118
+ @insecure_ingest.setter
1119
+ def insecure_ingest(
1120
+ self,
1121
+ value: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]],
1122
+ ) -> None:
1123
+ if __debug__:
1124
+ type_hints = typing.get_type_hints(_typecheckingstub__8d0984e439ef9b3c25fe01666d92f1599a4bb2f408cc94a9bac3809e4fb8c00c)
1125
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1126
+ jsii.set(self, "insecureIngest", value) # pyright: ignore[reportArgumentType]
1127
+
1128
+ @builtins.property
1129
+ @jsii.member(jsii_name="name")
1130
+ def name(self) -> typing.Optional[builtins.str]:
1131
+ '''IngestConfiguration.'''
1132
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "name"))
1133
+
1134
+ @name.setter
1135
+ def name(self, value: typing.Optional[builtins.str]) -> None:
1136
+ if __debug__:
1137
+ type_hints = typing.get_type_hints(_typecheckingstub__d6ff791ee5d9887b8c66e010bf22c541fc5aa016c9908c44f04c9d7c7c5e71d5)
1138
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1139
+ jsii.set(self, "name", value) # pyright: ignore[reportArgumentType]
1140
+
1141
+ @builtins.property
1142
+ @jsii.member(jsii_name="stageArn")
1143
+ def stage_arn(self) -> typing.Optional[builtins.str]:
1144
+ '''Stage ARN.'''
1145
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "stageArn"))
1146
+
1147
+ @stage_arn.setter
1148
+ def stage_arn(self, value: typing.Optional[builtins.str]) -> None:
1149
+ if __debug__:
1150
+ type_hints = typing.get_type_hints(_typecheckingstub__4d63930d5464ce48d09d7120e42b1e7aa23bfb45a07d7c93dda8514184602ac2)
1151
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1152
+ jsii.set(self, "stageArn", value) # pyright: ignore[reportArgumentType]
1153
+
1154
+ @builtins.property
1155
+ @jsii.member(jsii_name="tags")
1156
+ def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
1157
+ '''A list of key-value pairs that contain metadata for the asset model.'''
1158
+ return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
1159
+
1160
+ @tags.setter
1161
+ def tags(self, value: typing.Optional[typing.List[_CfnTag_f6864754]]) -> None:
1162
+ if __debug__:
1163
+ type_hints = typing.get_type_hints(_typecheckingstub__87601b6a8bacd8fefd6cc75f708d5009dad0f359e9544422e980fffade00bb04)
1164
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1165
+ jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
1166
+
1167
+ @builtins.property
1168
+ @jsii.member(jsii_name="userId")
1169
+ def user_id(self) -> typing.Optional[builtins.str]:
1170
+ '''User defined indentifier for participant associated with IngestConfiguration.'''
1171
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "userId"))
1172
+
1173
+ @user_id.setter
1174
+ def user_id(self, value: typing.Optional[builtins.str]) -> None:
1175
+ if __debug__:
1176
+ type_hints = typing.get_type_hints(_typecheckingstub__b6c53b4493812dc096bfe5e107d3ab87615d06685c537ce27b9778a2701dd28b)
1177
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1178
+ jsii.set(self, "userId", value) # pyright: ignore[reportArgumentType]
1179
+
1180
+
1181
+ @jsii.data_type(
1182
+ jsii_type="aws-cdk-lib.aws_ivs.CfnIngestConfigurationProps",
1183
+ jsii_struct_bases=[],
1184
+ name_mapping={
1185
+ "ingest_protocol": "ingestProtocol",
1186
+ "insecure_ingest": "insecureIngest",
1187
+ "name": "name",
1188
+ "stage_arn": "stageArn",
1189
+ "tags": "tags",
1190
+ "user_id": "userId",
1191
+ },
1192
+ )
1193
+ class CfnIngestConfigurationProps:
1194
+ def __init__(
1195
+ self,
1196
+ *,
1197
+ ingest_protocol: typing.Optional[builtins.str] = None,
1198
+ insecure_ingest: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
1199
+ name: typing.Optional[builtins.str] = None,
1200
+ stage_arn: typing.Optional[builtins.str] = None,
1201
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
1202
+ user_id: typing.Optional[builtins.str] = None,
1203
+ ) -> None:
1204
+ '''Properties for defining a ``CfnIngestConfiguration``.
1205
+
1206
+ :param ingest_protocol: Ingest Protocol. Default: - "RTMPS"
1207
+ :param insecure_ingest: Whether ingest configuration allows insecure ingest. Default: - false
1208
+ :param name: IngestConfiguration. Default: - "-"
1209
+ :param stage_arn: Stage ARN. A value other than an empty string indicates that stage is linked to IngestConfiguration. Default: "" (recording is disabled). Default: - ""
1210
+ :param tags: A list of key-value pairs that contain metadata for the asset model.
1211
+ :param user_id: User defined indentifier for participant associated with IngestConfiguration.
1212
+
1213
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-ingestconfiguration.html
1214
+ :exampleMetadata: fixture=_generated
1215
+
1216
+ Example::
1217
+
1218
+ # The code below shows an example of how to instantiate this type.
1219
+ # The values are placeholders you should change.
1220
+ from aws_cdk import aws_ivs as ivs
1221
+
1222
+ cfn_ingest_configuration_props = ivs.CfnIngestConfigurationProps(
1223
+ ingest_protocol="ingestProtocol",
1224
+ insecure_ingest=False,
1225
+ name="name",
1226
+ stage_arn="stageArn",
1227
+ tags=[CfnTag(
1228
+ key="key",
1229
+ value="value"
1230
+ )],
1231
+ user_id="userId"
1232
+ )
1233
+ '''
1234
+ if __debug__:
1235
+ type_hints = typing.get_type_hints(_typecheckingstub__95e9b18dcfb57342b7d6f80c4ce0d7b8886a64f91d3622dce01cf4e958236e01)
1236
+ check_type(argname="argument ingest_protocol", value=ingest_protocol, expected_type=type_hints["ingest_protocol"])
1237
+ check_type(argname="argument insecure_ingest", value=insecure_ingest, expected_type=type_hints["insecure_ingest"])
1238
+ check_type(argname="argument name", value=name, expected_type=type_hints["name"])
1239
+ check_type(argname="argument stage_arn", value=stage_arn, expected_type=type_hints["stage_arn"])
1240
+ check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
1241
+ check_type(argname="argument user_id", value=user_id, expected_type=type_hints["user_id"])
1242
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
1243
+ if ingest_protocol is not None:
1244
+ self._values["ingest_protocol"] = ingest_protocol
1245
+ if insecure_ingest is not None:
1246
+ self._values["insecure_ingest"] = insecure_ingest
1247
+ if name is not None:
1248
+ self._values["name"] = name
1249
+ if stage_arn is not None:
1250
+ self._values["stage_arn"] = stage_arn
1251
+ if tags is not None:
1252
+ self._values["tags"] = tags
1253
+ if user_id is not None:
1254
+ self._values["user_id"] = user_id
1255
+
1256
+ @builtins.property
1257
+ def ingest_protocol(self) -> typing.Optional[builtins.str]:
1258
+ '''Ingest Protocol.
1259
+
1260
+ :default: - "RTMPS"
1261
+
1262
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-ingestconfiguration.html#cfn-ivs-ingestconfiguration-ingestprotocol
1263
+ '''
1264
+ result = self._values.get("ingest_protocol")
1265
+ return typing.cast(typing.Optional[builtins.str], result)
1266
+
1267
+ @builtins.property
1268
+ def insecure_ingest(
1269
+ self,
1270
+ ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
1271
+ '''Whether ingest configuration allows insecure ingest.
1272
+
1273
+ :default: - false
1274
+
1275
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-ingestconfiguration.html#cfn-ivs-ingestconfiguration-insecureingest
1276
+ '''
1277
+ result = self._values.get("insecure_ingest")
1278
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
1279
+
1280
+ @builtins.property
1281
+ def name(self) -> typing.Optional[builtins.str]:
1282
+ '''IngestConfiguration.
1283
+
1284
+ :default: - "-"
1285
+
1286
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-ingestconfiguration.html#cfn-ivs-ingestconfiguration-name
1287
+ '''
1288
+ result = self._values.get("name")
1289
+ return typing.cast(typing.Optional[builtins.str], result)
1290
+
1291
+ @builtins.property
1292
+ def stage_arn(self) -> typing.Optional[builtins.str]:
1293
+ '''Stage ARN.
1294
+
1295
+ A value other than an empty string indicates that stage is linked to IngestConfiguration. Default: "" (recording is disabled).
1296
+
1297
+ :default: - ""
1298
+
1299
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-ingestconfiguration.html#cfn-ivs-ingestconfiguration-stagearn
1300
+ '''
1301
+ result = self._values.get("stage_arn")
1302
+ return typing.cast(typing.Optional[builtins.str], result)
1303
+
1304
+ @builtins.property
1305
+ def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
1306
+ '''A list of key-value pairs that contain metadata for the asset model.
1307
+
1308
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-ingestconfiguration.html#cfn-ivs-ingestconfiguration-tags
1309
+ '''
1310
+ result = self._values.get("tags")
1311
+ return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
1312
+
1313
+ @builtins.property
1314
+ def user_id(self) -> typing.Optional[builtins.str]:
1315
+ '''User defined indentifier for participant associated with IngestConfiguration.
1316
+
1317
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-ingestconfiguration.html#cfn-ivs-ingestconfiguration-userid
1318
+ '''
1319
+ result = self._values.get("user_id")
1320
+ return typing.cast(typing.Optional[builtins.str], result)
1321
+
1322
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
1323
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
1324
+
1325
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
1326
+ return not (rhs == self)
1327
+
1328
+ def __repr__(self) -> str:
1329
+ return "CfnIngestConfigurationProps(%s)" % ", ".join(
1330
+ k + "=" + repr(v) for k, v in self._values.items()
1331
+ )
1332
+
1333
+
952
1334
  @jsii.implements(_IInspectable_c2943556, _ITaggable_36806126)
953
1335
  class CfnPlaybackKeyPair(
954
1336
  _CfnResource_9df397a6,
@@ -3413,6 +3795,8 @@ __all__ = [
3413
3795
  "CfnChannelProps",
3414
3796
  "CfnEncoderConfiguration",
3415
3797
  "CfnEncoderConfigurationProps",
3798
+ "CfnIngestConfiguration",
3799
+ "CfnIngestConfigurationProps",
3416
3800
  "CfnPlaybackKeyPair",
3417
3801
  "CfnPlaybackKeyPairProps",
3418
3802
  "CfnPlaybackRestrictionPolicy",
@@ -3581,6 +3965,80 @@ def _typecheckingstub__663e73ad8dc18892ff8c6aa7cec15d284adf341fe58eeb580e68cff0a
3581
3965
  """Type checking stubs"""
3582
3966
  pass
3583
3967
 
3968
+ def _typecheckingstub__c56f46c8c3462fcf78f3e0898b4048a399a031987b0a76a9193f42a0a98fcd5e(
3969
+ scope: _constructs_77d1e7e8.Construct,
3970
+ id: builtins.str,
3971
+ *,
3972
+ ingest_protocol: typing.Optional[builtins.str] = None,
3973
+ insecure_ingest: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
3974
+ name: typing.Optional[builtins.str] = None,
3975
+ stage_arn: typing.Optional[builtins.str] = None,
3976
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
3977
+ user_id: typing.Optional[builtins.str] = None,
3978
+ ) -> None:
3979
+ """Type checking stubs"""
3980
+ pass
3981
+
3982
+ def _typecheckingstub__e7a53bbb588815f0015c227540b92fa7ba4a33256116e056573299d99ef57574(
3983
+ inspector: _TreeInspector_488e0dd5,
3984
+ ) -> None:
3985
+ """Type checking stubs"""
3986
+ pass
3987
+
3988
+ def _typecheckingstub__2f47d1d0418cb9d42da8be28f4cb517e4e83775aec57930b9ba318f95f6168c3(
3989
+ props: typing.Mapping[builtins.str, typing.Any],
3990
+ ) -> None:
3991
+ """Type checking stubs"""
3992
+ pass
3993
+
3994
+ def _typecheckingstub__313ff481891bab6b5a8445b484bcb46c2d4e31789868f166495c526d0fe9002e(
3995
+ value: typing.Optional[builtins.str],
3996
+ ) -> None:
3997
+ """Type checking stubs"""
3998
+ pass
3999
+
4000
+ def _typecheckingstub__8d0984e439ef9b3c25fe01666d92f1599a4bb2f408cc94a9bac3809e4fb8c00c(
4001
+ value: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]],
4002
+ ) -> None:
4003
+ """Type checking stubs"""
4004
+ pass
4005
+
4006
+ def _typecheckingstub__d6ff791ee5d9887b8c66e010bf22c541fc5aa016c9908c44f04c9d7c7c5e71d5(
4007
+ value: typing.Optional[builtins.str],
4008
+ ) -> None:
4009
+ """Type checking stubs"""
4010
+ pass
4011
+
4012
+ def _typecheckingstub__4d63930d5464ce48d09d7120e42b1e7aa23bfb45a07d7c93dda8514184602ac2(
4013
+ value: typing.Optional[builtins.str],
4014
+ ) -> None:
4015
+ """Type checking stubs"""
4016
+ pass
4017
+
4018
+ def _typecheckingstub__87601b6a8bacd8fefd6cc75f708d5009dad0f359e9544422e980fffade00bb04(
4019
+ value: typing.Optional[typing.List[_CfnTag_f6864754]],
4020
+ ) -> None:
4021
+ """Type checking stubs"""
4022
+ pass
4023
+
4024
+ def _typecheckingstub__b6c53b4493812dc096bfe5e107d3ab87615d06685c537ce27b9778a2701dd28b(
4025
+ value: typing.Optional[builtins.str],
4026
+ ) -> None:
4027
+ """Type checking stubs"""
4028
+ pass
4029
+
4030
+ def _typecheckingstub__95e9b18dcfb57342b7d6f80c4ce0d7b8886a64f91d3622dce01cf4e958236e01(
4031
+ *,
4032
+ ingest_protocol: typing.Optional[builtins.str] = None,
4033
+ insecure_ingest: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
4034
+ name: typing.Optional[builtins.str] = None,
4035
+ stage_arn: typing.Optional[builtins.str] = None,
4036
+ tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
4037
+ user_id: typing.Optional[builtins.str] = None,
4038
+ ) -> None:
4039
+ """Type checking stubs"""
4040
+ pass
4041
+
3584
4042
  def _typecheckingstub__d8c9299641f93177a19cfd84cad783d859723e15238afc5b2487f08100163f85(
3585
4043
  scope: _constructs_77d1e7e8.Construct,
3586
4044
  id: builtins.str,