aws-cdk-lib 2.117.0__py3-none-any.whl → 2.119.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 +138 -25
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.117.0.jsii.tgz → aws-cdk-lib@2.119.0.jsii.tgz} +0 -0
- aws_cdk/amzn_sdc/__init__.py +496 -0
- aws_cdk/aws_appsync/__init__.py +94 -22
- aws_cdk/aws_autoscaling/__init__.py +139 -74
- aws_cdk/aws_certificatemanager/__init__.py +164 -3
- aws_cdk/aws_cloud9/__init__.py +3 -3
- aws_cdk/aws_cloudfront/__init__.py +853 -38
- aws_cdk/aws_cloudtrail/__init__.py +54 -34
- aws_cdk/aws_cloudwatch_actions/__init__.py +105 -0
- aws_cdk/aws_codebuild/__init__.py +46 -5
- aws_cdk/aws_codecommit/__init__.py +9 -3
- aws_cdk/aws_codepipeline_actions/__init__.py +54 -0
- aws_cdk/aws_codetest/__init__.py +788 -0
- aws_cdk/aws_cognito/__init__.py +104 -0
- aws_cdk/aws_connect/__init__.py +626 -78
- aws_cdk/aws_docdb/__init__.py +442 -0
- aws_cdk/aws_dynamodb/__init__.py +14 -0
- aws_cdk/aws_ec2/__init__.py +372 -44
- aws_cdk/aws_ecs/__init__.py +192 -35
- aws_cdk/aws_emrserverless/__init__.py +20 -13
- aws_cdk/aws_events/__init__.py +90 -1
- aws_cdk/aws_fis/__init__.py +12 -32
- aws_cdk/aws_globalaccelerator/__init__.py +19 -0
- aws_cdk/aws_glue/__init__.py +329 -0
- aws_cdk/aws_iam/__init__.py +50 -24
- aws_cdk/aws_iot/__init__.py +112 -0
- aws_cdk/aws_iotsitewise/__init__.py +4 -4
- aws_cdk/aws_kendra/__init__.py +10 -5
- aws_cdk/aws_kinesisfirehose/__init__.py +111 -0
- aws_cdk/aws_lambda/__init__.py +180 -407
- aws_cdk/aws_location/__init__.py +1132 -17
- aws_cdk/aws_mediatailor/__init__.py +120 -17
- aws_cdk/aws_networkfirewall/__init__.py +2 -2
- aws_cdk/aws_networkmanager/__init__.py +1 -1
- aws_cdk/aws_omics/__init__.py +4 -4
- aws_cdk/aws_opensearchservice/__init__.py +58 -0
- aws_cdk/aws_pinpoint/__init__.py +14 -6
- aws_cdk/aws_pipes/__init__.py +7 -2
- aws_cdk/aws_rds/__init__.py +247 -16
- aws_cdk/aws_redshift/__init__.py +103 -0
- aws_cdk/aws_route53/__init__.py +68 -20
- aws_cdk/aws_s3/__init__.py +2 -4
- aws_cdk/aws_s3objectlambda/__init__.py +2 -2
- aws_cdk/aws_servicecatalogappregistry/__init__.py +3 -3
- aws_cdk/aws_signer/__init__.py +27 -4
- aws_cdk/aws_ssm/__init__.py +76 -13
- aws_cdk/aws_stepfunctions/__init__.py +110 -5
- aws_cdk/aws_stepfunctions_tasks/__init__.py +84 -29
- aws_cdk/pipelines/__init__.py +136 -37
- {aws_cdk_lib-2.117.0.dist-info → aws_cdk_lib-2.119.0.dist-info}/LICENSE +1 -1
- {aws_cdk_lib-2.117.0.dist-info → aws_cdk_lib-2.119.0.dist-info}/METADATA +98 -12
- {aws_cdk_lib-2.117.0.dist-info → aws_cdk_lib-2.119.0.dist-info}/NOTICE +1 -1
- {aws_cdk_lib-2.117.0.dist-info → aws_cdk_lib-2.119.0.dist-info}/RECORD +57 -55
- {aws_cdk_lib-2.117.0.dist-info → aws_cdk_lib-2.119.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.117.0.dist-info → aws_cdk_lib-2.119.0.dist-info}/top_level.txt +0 -0
|
@@ -103,7 +103,10 @@ class CfnChannel(
|
|
|
103
103
|
key="key",
|
|
104
104
|
value="value"
|
|
105
105
|
)],
|
|
106
|
-
tier="tier"
|
|
106
|
+
tier="tier",
|
|
107
|
+
time_shift_configuration=mediatailor.CfnChannel.TimeShiftConfigurationProperty(
|
|
108
|
+
max_time_delay_seconds=123
|
|
109
|
+
)
|
|
107
110
|
)
|
|
108
111
|
'''
|
|
109
112
|
|
|
@@ -119,6 +122,7 @@ class CfnChannel(
|
|
|
119
122
|
log_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnChannel.LogConfigurationForChannelProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
120
123
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
121
124
|
tier: typing.Optional[builtins.str] = None,
|
|
125
|
+
time_shift_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnChannel.TimeShiftConfigurationProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
122
126
|
) -> None:
|
|
123
127
|
'''
|
|
124
128
|
:param scope: Scope in which this resource is defined.
|
|
@@ -130,6 +134,7 @@ class CfnChannel(
|
|
|
130
134
|
:param log_configuration: The log configuration.
|
|
131
135
|
:param tags: The tags to assign to the channel. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see `Tagging AWS Elemental MediaTailor Resources <https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html>`_ .
|
|
132
136
|
:param tier: The tier for this channel. STANDARD tier channels can contain live programs.
|
|
137
|
+
:param time_shift_configuration: The configuration for time-shifted viewing.
|
|
133
138
|
'''
|
|
134
139
|
if __debug__:
|
|
135
140
|
type_hints = typing.get_type_hints(_typecheckingstub__95afc802641850838d7d754c58072c279165a93bff5fc055789c1090a21b9714)
|
|
@@ -143,6 +148,7 @@ class CfnChannel(
|
|
|
143
148
|
log_configuration=log_configuration,
|
|
144
149
|
tags=tags,
|
|
145
150
|
tier=tier,
|
|
151
|
+
time_shift_configuration=time_shift_configuration,
|
|
146
152
|
)
|
|
147
153
|
|
|
148
154
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
@@ -296,6 +302,24 @@ class CfnChannel(
|
|
|
296
302
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
297
303
|
jsii.set(self, "tier", value)
|
|
298
304
|
|
|
305
|
+
@builtins.property
|
|
306
|
+
@jsii.member(jsii_name="timeShiftConfiguration")
|
|
307
|
+
def time_shift_configuration(
|
|
308
|
+
self,
|
|
309
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnChannel.TimeShiftConfigurationProperty"]]:
|
|
310
|
+
'''The configuration for time-shifted viewing.'''
|
|
311
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnChannel.TimeShiftConfigurationProperty"]], jsii.get(self, "timeShiftConfiguration"))
|
|
312
|
+
|
|
313
|
+
@time_shift_configuration.setter
|
|
314
|
+
def time_shift_configuration(
|
|
315
|
+
self,
|
|
316
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnChannel.TimeShiftConfigurationProperty"]],
|
|
317
|
+
) -> None:
|
|
318
|
+
if __debug__:
|
|
319
|
+
type_hints = typing.get_type_hints(_typecheckingstub__5b3c40cad99c53a2773855f4cd98f257598efcf21fd51b6bb734064a33f180c7)
|
|
320
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
321
|
+
jsii.set(self, "timeShiftConfiguration", value)
|
|
322
|
+
|
|
299
323
|
@jsii.data_type(
|
|
300
324
|
jsii_type="aws-cdk-lib.aws_mediatailor.CfnChannel.DashPlaylistSettingsProperty",
|
|
301
325
|
jsii_struct_bases=[],
|
|
@@ -317,10 +341,10 @@ class CfnChannel(
|
|
|
317
341
|
) -> None:
|
|
318
342
|
'''Dash manifest configuration parameters.
|
|
319
343
|
|
|
320
|
-
:param manifest_window_seconds: The total duration (in seconds) of each manifest. Minimum value: ``30`` seconds. Maximum value: ``3600`` seconds.
|
|
321
|
-
:param min_buffer_time_seconds: Minimum amount of content (measured in seconds) that a player must keep available in the buffer. Minimum value: ``2`` seconds. Maximum value: ``60`` seconds.
|
|
322
|
-
:param min_update_period_seconds: Minimum amount of time (in seconds) that the player should wait before requesting updates to the manifest. Minimum value: ``2`` seconds. Maximum value: ``60`` seconds.
|
|
323
|
-
:param suggested_presentation_delay_seconds: Amount of time (in seconds) that the player should be from the live point at the end of the manifest. Minimum value: ``2`` seconds. Maximum value: ``60`` seconds.
|
|
344
|
+
:param manifest_window_seconds: The total duration (in seconds) of each manifest. Minimum value: ``30`` seconds. Maximum value: ``3600`` seconds.
|
|
345
|
+
:param min_buffer_time_seconds: Minimum amount of content (measured in seconds) that a player must keep available in the buffer. Minimum value: ``2`` seconds. Maximum value: ``60`` seconds.
|
|
346
|
+
:param min_update_period_seconds: Minimum amount of time (in seconds) that the player should wait before requesting updates to the manifest. Minimum value: ``2`` seconds. Maximum value: ``60`` seconds.
|
|
347
|
+
:param suggested_presentation_delay_seconds: Amount of time (in seconds) that the player should be from the live point at the end of the manifest. Minimum value: ``2`` seconds. Maximum value: ``60`` seconds.
|
|
324
348
|
|
|
325
349
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-channel-dashplaylistsettings.html
|
|
326
350
|
:exampleMetadata: fixture=_generated
|
|
@@ -360,8 +384,6 @@ class CfnChannel(
|
|
|
360
384
|
|
|
361
385
|
Minimum value: ``30`` seconds. Maximum value: ``3600`` seconds.
|
|
362
386
|
|
|
363
|
-
:default: - 0
|
|
364
|
-
|
|
365
387
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-channel-dashplaylistsettings.html#cfn-mediatailor-channel-dashplaylistsettings-manifestwindowseconds
|
|
366
388
|
'''
|
|
367
389
|
result = self._values.get("manifest_window_seconds")
|
|
@@ -373,8 +395,6 @@ class CfnChannel(
|
|
|
373
395
|
|
|
374
396
|
Minimum value: ``2`` seconds. Maximum value: ``60`` seconds.
|
|
375
397
|
|
|
376
|
-
:default: - 0
|
|
377
|
-
|
|
378
398
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-channel-dashplaylistsettings.html#cfn-mediatailor-channel-dashplaylistsettings-minbuffertimeseconds
|
|
379
399
|
'''
|
|
380
400
|
result = self._values.get("min_buffer_time_seconds")
|
|
@@ -386,8 +406,6 @@ class CfnChannel(
|
|
|
386
406
|
|
|
387
407
|
Minimum value: ``2`` seconds. Maximum value: ``60`` seconds.
|
|
388
408
|
|
|
389
|
-
:default: - 0
|
|
390
|
-
|
|
391
409
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-channel-dashplaylistsettings.html#cfn-mediatailor-channel-dashplaylistsettings-minupdateperiodseconds
|
|
392
410
|
'''
|
|
393
411
|
result = self._values.get("min_update_period_seconds")
|
|
@@ -399,8 +417,6 @@ class CfnChannel(
|
|
|
399
417
|
|
|
400
418
|
Minimum value: ``2`` seconds. Maximum value: ``60`` seconds.
|
|
401
419
|
|
|
402
|
-
:default: - 0
|
|
403
|
-
|
|
404
420
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-channel-dashplaylistsettings.html#cfn-mediatailor-channel-dashplaylistsettings-suggestedpresentationdelayseconds
|
|
405
421
|
'''
|
|
406
422
|
result = self._values.get("suggested_presentation_delay_seconds")
|
|
@@ -435,7 +451,7 @@ class CfnChannel(
|
|
|
435
451
|
'''HLS playlist configuration parameters.
|
|
436
452
|
|
|
437
453
|
:param ad_markup_type: Determines the type of SCTE 35 tags to use in ad markup. Specify ``DATERANGE`` to use ``DATERANGE`` tags (for live or VOD content). Specify ``SCTE35_ENHANCED`` to use ``EXT-X-CUE-OUT`` and ``EXT-X-CUE-IN`` tags (for VOD content only).
|
|
438
|
-
:param manifest_window_seconds: The total duration (in seconds) of each manifest. Minimum value: ``30`` seconds. Maximum value: ``3600`` seconds.
|
|
454
|
+
:param manifest_window_seconds: The total duration (in seconds) of each manifest. Minimum value: ``30`` seconds. Maximum value: ``3600`` seconds.
|
|
439
455
|
|
|
440
456
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-channel-hlsplaylistsettings.html
|
|
441
457
|
:exampleMetadata: fixture=_generated
|
|
@@ -478,8 +494,6 @@ class CfnChannel(
|
|
|
478
494
|
|
|
479
495
|
Minimum value: ``30`` seconds. Maximum value: ``3600`` seconds.
|
|
480
496
|
|
|
481
|
-
:default: - 0
|
|
482
|
-
|
|
483
497
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-channel-hlsplaylistsettings.html#cfn-mediatailor-channel-hlsplaylistsettings-manifestwindowseconds
|
|
484
498
|
'''
|
|
485
499
|
result = self._values.get("manifest_window_seconds")
|
|
@@ -748,6 +762,60 @@ class CfnChannel(
|
|
|
748
762
|
k + "=" + repr(v) for k, v in self._values.items()
|
|
749
763
|
)
|
|
750
764
|
|
|
765
|
+
@jsii.data_type(
|
|
766
|
+
jsii_type="aws-cdk-lib.aws_mediatailor.CfnChannel.TimeShiftConfigurationProperty",
|
|
767
|
+
jsii_struct_bases=[],
|
|
768
|
+
name_mapping={"max_time_delay_seconds": "maxTimeDelaySeconds"},
|
|
769
|
+
)
|
|
770
|
+
class TimeShiftConfigurationProperty:
|
|
771
|
+
def __init__(self, *, max_time_delay_seconds: jsii.Number) -> None:
|
|
772
|
+
'''The configuration for time-shifted viewing.
|
|
773
|
+
|
|
774
|
+
:param max_time_delay_seconds: The maximum time delay for time-shifted viewing. The minimum allowed maximum time delay is 0 seconds, and the maximum allowed maximum time delay is 21600 seconds (6 hours).
|
|
775
|
+
|
|
776
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-channel-timeshiftconfiguration.html
|
|
777
|
+
:exampleMetadata: fixture=_generated
|
|
778
|
+
|
|
779
|
+
Example::
|
|
780
|
+
|
|
781
|
+
# The code below shows an example of how to instantiate this type.
|
|
782
|
+
# The values are placeholders you should change.
|
|
783
|
+
from aws_cdk import aws_mediatailor as mediatailor
|
|
784
|
+
|
|
785
|
+
time_shift_configuration_property = mediatailor.CfnChannel.TimeShiftConfigurationProperty(
|
|
786
|
+
max_time_delay_seconds=123
|
|
787
|
+
)
|
|
788
|
+
'''
|
|
789
|
+
if __debug__:
|
|
790
|
+
type_hints = typing.get_type_hints(_typecheckingstub__9e6f8310362aba9a6cdbcee3376c31f278a1a77eb2cfdd2c6e322b1b49d57eaa)
|
|
791
|
+
check_type(argname="argument max_time_delay_seconds", value=max_time_delay_seconds, expected_type=type_hints["max_time_delay_seconds"])
|
|
792
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
793
|
+
"max_time_delay_seconds": max_time_delay_seconds,
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
@builtins.property
|
|
797
|
+
def max_time_delay_seconds(self) -> jsii.Number:
|
|
798
|
+
'''The maximum time delay for time-shifted viewing.
|
|
799
|
+
|
|
800
|
+
The minimum allowed maximum time delay is 0 seconds, and the maximum allowed maximum time delay is 21600 seconds (6 hours).
|
|
801
|
+
|
|
802
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-channel-timeshiftconfiguration.html#cfn-mediatailor-channel-timeshiftconfiguration-maxtimedelayseconds
|
|
803
|
+
'''
|
|
804
|
+
result = self._values.get("max_time_delay_seconds")
|
|
805
|
+
assert result is not None, "Required property 'max_time_delay_seconds' is missing"
|
|
806
|
+
return typing.cast(jsii.Number, result)
|
|
807
|
+
|
|
808
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
809
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
810
|
+
|
|
811
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
812
|
+
return not (rhs == self)
|
|
813
|
+
|
|
814
|
+
def __repr__(self) -> str:
|
|
815
|
+
return "TimeShiftConfigurationProperty(%s)" % ", ".join(
|
|
816
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
817
|
+
)
|
|
818
|
+
|
|
751
819
|
|
|
752
820
|
@jsii.implements(_IInspectable_c2943556)
|
|
753
821
|
class CfnChannelPolicy(
|
|
@@ -943,6 +1011,7 @@ class CfnChannelPolicyProps:
|
|
|
943
1011
|
"log_configuration": "logConfiguration",
|
|
944
1012
|
"tags": "tags",
|
|
945
1013
|
"tier": "tier",
|
|
1014
|
+
"time_shift_configuration": "timeShiftConfiguration",
|
|
946
1015
|
},
|
|
947
1016
|
)
|
|
948
1017
|
class CfnChannelProps:
|
|
@@ -956,6 +1025,7 @@ class CfnChannelProps:
|
|
|
956
1025
|
log_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnChannel.LogConfigurationForChannelProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
957
1026
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
958
1027
|
tier: typing.Optional[builtins.str] = None,
|
|
1028
|
+
time_shift_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnChannel.TimeShiftConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
959
1029
|
) -> None:
|
|
960
1030
|
'''Properties for defining a ``CfnChannel``.
|
|
961
1031
|
|
|
@@ -966,6 +1036,7 @@ class CfnChannelProps:
|
|
|
966
1036
|
:param log_configuration: The log configuration.
|
|
967
1037
|
:param tags: The tags to assign to the channel. Tags are key-value pairs that you can associate with Amazon resources to help with organization, access control, and cost tracking. For more information, see `Tagging AWS Elemental MediaTailor Resources <https://docs.aws.amazon.com/mediatailor/latest/ug/tagging.html>`_ .
|
|
968
1038
|
:param tier: The tier for this channel. STANDARD tier channels can contain live programs.
|
|
1039
|
+
:param time_shift_configuration: The configuration for time-shifted viewing.
|
|
969
1040
|
|
|
970
1041
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediatailor-channel.html
|
|
971
1042
|
:exampleMetadata: fixture=_generated
|
|
@@ -1008,7 +1079,10 @@ class CfnChannelProps:
|
|
|
1008
1079
|
key="key",
|
|
1009
1080
|
value="value"
|
|
1010
1081
|
)],
|
|
1011
|
-
tier="tier"
|
|
1082
|
+
tier="tier",
|
|
1083
|
+
time_shift_configuration=mediatailor.CfnChannel.TimeShiftConfigurationProperty(
|
|
1084
|
+
max_time_delay_seconds=123
|
|
1085
|
+
)
|
|
1012
1086
|
)
|
|
1013
1087
|
'''
|
|
1014
1088
|
if __debug__:
|
|
@@ -1020,6 +1094,7 @@ class CfnChannelProps:
|
|
|
1020
1094
|
check_type(argname="argument log_configuration", value=log_configuration, expected_type=type_hints["log_configuration"])
|
|
1021
1095
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
1022
1096
|
check_type(argname="argument tier", value=tier, expected_type=type_hints["tier"])
|
|
1097
|
+
check_type(argname="argument time_shift_configuration", value=time_shift_configuration, expected_type=type_hints["time_shift_configuration"])
|
|
1023
1098
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
1024
1099
|
"channel_name": channel_name,
|
|
1025
1100
|
"outputs": outputs,
|
|
@@ -1033,6 +1108,8 @@ class CfnChannelProps:
|
|
|
1033
1108
|
self._values["tags"] = tags
|
|
1034
1109
|
if tier is not None:
|
|
1035
1110
|
self._values["tier"] = tier
|
|
1111
|
+
if time_shift_configuration is not None:
|
|
1112
|
+
self._values["time_shift_configuration"] = time_shift_configuration
|
|
1036
1113
|
|
|
1037
1114
|
@builtins.property
|
|
1038
1115
|
def channel_name(self) -> builtins.str:
|
|
@@ -1116,6 +1193,17 @@ class CfnChannelProps:
|
|
|
1116
1193
|
result = self._values.get("tier")
|
|
1117
1194
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
1118
1195
|
|
|
1196
|
+
@builtins.property
|
|
1197
|
+
def time_shift_configuration(
|
|
1198
|
+
self,
|
|
1199
|
+
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnChannel.TimeShiftConfigurationProperty]]:
|
|
1200
|
+
'''The configuration for time-shifted viewing.
|
|
1201
|
+
|
|
1202
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediatailor-channel.html#cfn-mediatailor-channel-timeshiftconfiguration
|
|
1203
|
+
'''
|
|
1204
|
+
result = self._values.get("time_shift_configuration")
|
|
1205
|
+
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnChannel.TimeShiftConfigurationProperty]], result)
|
|
1206
|
+
|
|
1119
1207
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
1120
1208
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
1121
1209
|
|
|
@@ -4060,6 +4148,7 @@ def _typecheckingstub__95afc802641850838d7d754c58072c279165a93bff5fc055789c1090a
|
|
|
4060
4148
|
log_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnChannel.LogConfigurationForChannelProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4061
4149
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4062
4150
|
tier: typing.Optional[builtins.str] = None,
|
|
4151
|
+
time_shift_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnChannel.TimeShiftConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4063
4152
|
) -> None:
|
|
4064
4153
|
"""Type checking stubs"""
|
|
4065
4154
|
pass
|
|
@@ -4118,6 +4207,12 @@ def _typecheckingstub__35198b30b0429365e601c60c11c6bb80791a3176a301d1fac563832c0
|
|
|
4118
4207
|
"""Type checking stubs"""
|
|
4119
4208
|
pass
|
|
4120
4209
|
|
|
4210
|
+
def _typecheckingstub__5b3c40cad99c53a2773855f4cd98f257598efcf21fd51b6bb734064a33f180c7(
|
|
4211
|
+
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnChannel.TimeShiftConfigurationProperty]],
|
|
4212
|
+
) -> None:
|
|
4213
|
+
"""Type checking stubs"""
|
|
4214
|
+
pass
|
|
4215
|
+
|
|
4121
4216
|
def _typecheckingstub__e53b76fce032c9b5b0b3ab03b03ec40f7f01e061c77ffbd9e3b0101056eecfb5(
|
|
4122
4217
|
*,
|
|
4123
4218
|
manifest_window_seconds: typing.Optional[jsii.Number] = None,
|
|
@@ -4161,6 +4256,13 @@ def _typecheckingstub__87bdd7eb43c3b69dcc5175fbdbdf3f64ecc1bea153e89e341c467115c
|
|
|
4161
4256
|
"""Type checking stubs"""
|
|
4162
4257
|
pass
|
|
4163
4258
|
|
|
4259
|
+
def _typecheckingstub__9e6f8310362aba9a6cdbcee3376c31f278a1a77eb2cfdd2c6e322b1b49d57eaa(
|
|
4260
|
+
*,
|
|
4261
|
+
max_time_delay_seconds: jsii.Number,
|
|
4262
|
+
) -> None:
|
|
4263
|
+
"""Type checking stubs"""
|
|
4264
|
+
pass
|
|
4265
|
+
|
|
4164
4266
|
def _typecheckingstub__31394bd173fe2beb5213e9badd5aafc6ea2b160b870f8a0efcdd0c7418364408(
|
|
4165
4267
|
scope: _constructs_77d1e7e8.Construct,
|
|
4166
4268
|
id: builtins.str,
|
|
@@ -4212,6 +4314,7 @@ def _typecheckingstub__34f9c53dfc17c104058553b2c51bffbfeea7885ab9628618cedcaf863
|
|
|
4212
4314
|
log_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnChannel.LogConfigurationForChannelProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4213
4315
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4214
4316
|
tier: typing.Optional[builtins.str] = None,
|
|
4317
|
+
time_shift_configuration: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnChannel.TimeShiftConfigurationProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4215
4318
|
) -> None:
|
|
4216
4319
|
"""Type checking stubs"""
|
|
4217
4320
|
pass
|
|
@@ -901,7 +901,7 @@ class CfnFirewallPolicy(
|
|
|
901
901
|
:param stateful_rule_group_references: References to the stateful rule groups that are used in the policy. These define the inspection criteria in stateful rules.
|
|
902
902
|
:param stateless_custom_actions: The custom action definitions that are available for use in the firewall policy's ``StatelessDefaultActions`` setting. You name each custom action that you define, and then you can use it by name in your default actions specifications.
|
|
903
903
|
:param stateless_rule_group_references: References to the stateless rule groups that are used in the policy. These define the matching criteria in stateless rules.
|
|
904
|
-
:param tls_inspection_configuration_arn:
|
|
904
|
+
:param tls_inspection_configuration_arn: The Amazon Resource Name (ARN) of the TLS inspection configuration.
|
|
905
905
|
|
|
906
906
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-firewallpolicy-firewallpolicy.html
|
|
907
907
|
:exampleMetadata: fixture=_generated
|
|
@@ -1104,7 +1104,7 @@ class CfnFirewallPolicy(
|
|
|
1104
1104
|
|
|
1105
1105
|
@builtins.property
|
|
1106
1106
|
def tls_inspection_configuration_arn(self) -> typing.Optional[builtins.str]:
|
|
1107
|
-
'''
|
|
1107
|
+
'''The Amazon Resource Name (ARN) of the TLS inspection configuration.
|
|
1108
1108
|
|
|
1109
1109
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-firewallpolicy-firewallpolicy.html#cfn-networkfirewall-firewallpolicy-firewallpolicy-tlsinspectionconfigurationarn
|
|
1110
1110
|
'''
|
|
@@ -2330,7 +2330,7 @@ class CfnDevice(
|
|
|
2330
2330
|
@builtins.property
|
|
2331
2331
|
@jsii.member(jsii_name="attrCreatedAt")
|
|
2332
2332
|
def attr_created_at(self) -> builtins.str:
|
|
2333
|
-
'''The time that the device was created.
|
|
2333
|
+
'''The date and time that the device was created.
|
|
2334
2334
|
|
|
2335
2335
|
:cloudformationAttribute: CreatedAt
|
|
2336
2336
|
'''
|
aws_cdk/aws_omics/__init__.py
CHANGED
|
@@ -2562,7 +2562,7 @@ class CfnWorkflow(
|
|
|
2562
2562
|
:param main: The path of the main definition file for the workflow.
|
|
2563
2563
|
:param name: The workflow's name.
|
|
2564
2564
|
:param parameter_template: The workflow's parameter template.
|
|
2565
|
-
:param storage_capacity: A storage capacity for the workflow in
|
|
2565
|
+
:param storage_capacity: A storage capacity for the workflow in gibibytes.
|
|
2566
2566
|
:param tags: Tags for the workflow.
|
|
2567
2567
|
'''
|
|
2568
2568
|
if __debug__:
|
|
@@ -2767,7 +2767,7 @@ class CfnWorkflow(
|
|
|
2767
2767
|
@builtins.property
|
|
2768
2768
|
@jsii.member(jsii_name="storageCapacity")
|
|
2769
2769
|
def storage_capacity(self) -> typing.Optional[jsii.Number]:
|
|
2770
|
-
'''A storage capacity for the workflow in
|
|
2770
|
+
'''A storage capacity for the workflow in gibibytes.'''
|
|
2771
2771
|
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "storageCapacity"))
|
|
2772
2772
|
|
|
2773
2773
|
@storage_capacity.setter
|
|
@@ -2904,7 +2904,7 @@ class CfnWorkflowProps:
|
|
|
2904
2904
|
:param main: The path of the main definition file for the workflow.
|
|
2905
2905
|
:param name: The workflow's name.
|
|
2906
2906
|
:param parameter_template: The workflow's parameter template.
|
|
2907
|
-
:param storage_capacity: A storage capacity for the workflow in
|
|
2907
|
+
:param storage_capacity: A storage capacity for the workflow in gibibytes.
|
|
2908
2908
|
:param tags: Tags for the workflow.
|
|
2909
2909
|
|
|
2910
2910
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html
|
|
@@ -3032,7 +3032,7 @@ class CfnWorkflowProps:
|
|
|
3032
3032
|
|
|
3033
3033
|
@builtins.property
|
|
3034
3034
|
def storage_capacity(self) -> typing.Optional[jsii.Number]:
|
|
3035
|
-
'''A storage capacity for the workflow in
|
|
3035
|
+
'''A storage capacity for the workflow in gibibytes.
|
|
3036
3036
|
|
|
3037
3037
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-storagecapacity
|
|
3038
3038
|
'''
|
|
@@ -464,6 +464,17 @@ domain = Domain(self, "Domain",
|
|
|
464
464
|
enable_auto_software_update=True
|
|
465
465
|
)
|
|
466
466
|
```
|
|
467
|
+
|
|
468
|
+
## IP address type
|
|
469
|
+
|
|
470
|
+
You can specify either dual stack or IPv4 as your IP address type.
|
|
471
|
+
|
|
472
|
+
```python
|
|
473
|
+
domain = Domain(self, "Domain",
|
|
474
|
+
version=EngineVersion.OPENSEARCH_1_3,
|
|
475
|
+
ip_address_type=IpAddressType.DUAL_STACK
|
|
476
|
+
)
|
|
477
|
+
```
|
|
467
478
|
'''
|
|
468
479
|
import abc
|
|
469
480
|
import builtins
|
|
@@ -4250,6 +4261,7 @@ class DomainAttributes:
|
|
|
4250
4261
|
"encryption_at_rest": "encryptionAtRest",
|
|
4251
4262
|
"enforce_https": "enforceHttps",
|
|
4252
4263
|
"fine_grained_access_control": "fineGrainedAccessControl",
|
|
4264
|
+
"ip_address_type": "ipAddressType",
|
|
4253
4265
|
"logging": "logging",
|
|
4254
4266
|
"node_to_node_encryption": "nodeToNodeEncryption",
|
|
4255
4267
|
"off_peak_window_enabled": "offPeakWindowEnabled",
|
|
@@ -4281,6 +4293,7 @@ class DomainProps:
|
|
|
4281
4293
|
encryption_at_rest: typing.Optional[typing.Union["EncryptionAtRestOptions", typing.Dict[builtins.str, typing.Any]]] = None,
|
|
4282
4294
|
enforce_https: typing.Optional[builtins.bool] = None,
|
|
4283
4295
|
fine_grained_access_control: typing.Optional[typing.Union[AdvancedSecurityOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
4296
|
+
ip_address_type: typing.Optional["IpAddressType"] = None,
|
|
4284
4297
|
logging: typing.Optional[typing.Union["LoggingOptions", typing.Dict[builtins.str, typing.Any]]] = None,
|
|
4285
4298
|
node_to_node_encryption: typing.Optional[builtins.bool] = None,
|
|
4286
4299
|
off_peak_window_enabled: typing.Optional[builtins.bool] = None,
|
|
@@ -4309,6 +4322,7 @@ class DomainProps:
|
|
|
4309
4322
|
:param encryption_at_rest: Encryption at rest options for the cluster. Default: - No encryption at rest
|
|
4310
4323
|
:param enforce_https: True to require that all traffic to the domain arrive over HTTPS. Default: - false
|
|
4311
4324
|
:param fine_grained_access_control: Specifies options for fine-grained access control. Requires Elasticsearch version 6.7 or later or OpenSearch version 1.0 or later. Enabling fine-grained access control also requires encryption of data at rest and node-to-node encryption, along with enforced HTTPS. Default: - fine-grained access control is disabled
|
|
4325
|
+
:param ip_address_type: Specify either dual stack or IPv4 as your IP address type. Dual stack allows you to share domain resources across IPv4 and IPv6 address types, and is the recommended option. If you set your IP address type to dual stack, you can't change your address type later. Default: - IpAddressType.IPV4
|
|
4312
4326
|
:param logging: Configuration log publishing configuration options. Default: - No logs are published
|
|
4313
4327
|
:param node_to_node_encryption: Specify true to enable node to node encryption. Requires Elasticsearch version 6.0 or later or OpenSearch version 1.0 or later. Default: - Node to node encryption is not enabled.
|
|
4314
4328
|
:param off_peak_window_enabled: Options for enabling a domain's off-peak window, during which OpenSearch Service can perform mandatory configuration changes on the domain. Off-peak windows were introduced on February 16, 2023. All domains created before this date have the off-peak window disabled by default. You must manually enable and configure the off-peak window for these domains. All domains created after this date will have the off-peak window enabled by default. You can't disable the off-peak window for a domain after it's enabled. Default: - Disabled for domains created before February 16, 2023. Enabled for domains created after. Enabled if ``offPeakWindowStart`` is set.
|
|
@@ -4371,6 +4385,7 @@ class DomainProps:
|
|
|
4371
4385
|
check_type(argname="argument encryption_at_rest", value=encryption_at_rest, expected_type=type_hints["encryption_at_rest"])
|
|
4372
4386
|
check_type(argname="argument enforce_https", value=enforce_https, expected_type=type_hints["enforce_https"])
|
|
4373
4387
|
check_type(argname="argument fine_grained_access_control", value=fine_grained_access_control, expected_type=type_hints["fine_grained_access_control"])
|
|
4388
|
+
check_type(argname="argument ip_address_type", value=ip_address_type, expected_type=type_hints["ip_address_type"])
|
|
4374
4389
|
check_type(argname="argument logging", value=logging, expected_type=type_hints["logging"])
|
|
4375
4390
|
check_type(argname="argument node_to_node_encryption", value=node_to_node_encryption, expected_type=type_hints["node_to_node_encryption"])
|
|
4376
4391
|
check_type(argname="argument off_peak_window_enabled", value=off_peak_window_enabled, expected_type=type_hints["off_peak_window_enabled"])
|
|
@@ -4411,6 +4426,8 @@ class DomainProps:
|
|
|
4411
4426
|
self._values["enforce_https"] = enforce_https
|
|
4412
4427
|
if fine_grained_access_control is not None:
|
|
4413
4428
|
self._values["fine_grained_access_control"] = fine_grained_access_control
|
|
4429
|
+
if ip_address_type is not None:
|
|
4430
|
+
self._values["ip_address_type"] = ip_address_type
|
|
4414
4431
|
if logging is not None:
|
|
4415
4432
|
self._values["logging"] = logging
|
|
4416
4433
|
if node_to_node_encryption is not None:
|
|
@@ -4577,6 +4594,19 @@ class DomainProps:
|
|
|
4577
4594
|
result = self._values.get("fine_grained_access_control")
|
|
4578
4595
|
return typing.cast(typing.Optional[AdvancedSecurityOptions], result)
|
|
4579
4596
|
|
|
4597
|
+
@builtins.property
|
|
4598
|
+
def ip_address_type(self) -> typing.Optional["IpAddressType"]:
|
|
4599
|
+
'''Specify either dual stack or IPv4 as your IP address type.
|
|
4600
|
+
|
|
4601
|
+
Dual stack allows you to share domain resources across IPv4 and IPv6 address types, and is the recommended option.
|
|
4602
|
+
|
|
4603
|
+
If you set your IP address type to dual stack, you can't change your address type later.
|
|
4604
|
+
|
|
4605
|
+
:default: - IpAddressType.IPV4
|
|
4606
|
+
'''
|
|
4607
|
+
result = self._values.get("ip_address_type")
|
|
4608
|
+
return typing.cast(typing.Optional["IpAddressType"], result)
|
|
4609
|
+
|
|
4580
4610
|
@builtins.property
|
|
4581
4611
|
def logging(self) -> typing.Optional["LoggingOptions"]:
|
|
4582
4612
|
'''Configuration log publishing configuration options.
|
|
@@ -6577,6 +6607,26 @@ class _IDomainProxy(
|
|
|
6577
6607
|
typing.cast(typing.Any, IDomain).__jsii_proxy_class__ = lambda : _IDomainProxy
|
|
6578
6608
|
|
|
6579
6609
|
|
|
6610
|
+
@jsii.enum(jsii_type="aws-cdk-lib.aws_opensearchservice.IpAddressType")
|
|
6611
|
+
class IpAddressType(enum.Enum):
|
|
6612
|
+
'''The IP address type for the domain.
|
|
6613
|
+
|
|
6614
|
+
:exampleMetadata: infused
|
|
6615
|
+
|
|
6616
|
+
Example::
|
|
6617
|
+
|
|
6618
|
+
domain = Domain(self, "Domain",
|
|
6619
|
+
version=EngineVersion.OPENSEARCH_1_3,
|
|
6620
|
+
ip_address_type=IpAddressType.DUAL_STACK
|
|
6621
|
+
)
|
|
6622
|
+
'''
|
|
6623
|
+
|
|
6624
|
+
IPV4 = "IPV4"
|
|
6625
|
+
'''IPv4 addresses only.'''
|
|
6626
|
+
DUAL_STACK = "DUAL_STACK"
|
|
6627
|
+
'''IPv4 and IPv6 addresses.'''
|
|
6628
|
+
|
|
6629
|
+
|
|
6580
6630
|
@jsii.data_type(
|
|
6581
6631
|
jsii_type="aws-cdk-lib.aws_opensearchservice.LoggingOptions",
|
|
6582
6632
|
jsii_struct_bases=[],
|
|
@@ -6923,6 +6973,8 @@ class TLSSecurityPolicy(enum.Enum):
|
|
|
6923
6973
|
'''Cipher suite TLS 1.0.'''
|
|
6924
6974
|
TLS_1_2 = "TLS_1_2"
|
|
6925
6975
|
'''Cipher suite TLS 1.2.'''
|
|
6976
|
+
TLS_1_2_PFS = "TLS_1_2_PFS"
|
|
6977
|
+
'''Cipher suite TLS 1.2 to 1.3 with perfect forward secrecy (PFS).'''
|
|
6926
6978
|
|
|
6927
6979
|
|
|
6928
6980
|
@jsii.data_type(
|
|
@@ -7128,6 +7180,7 @@ class Domain(
|
|
|
7128
7180
|
encryption_at_rest: typing.Optional[typing.Union[EncryptionAtRestOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
7129
7181
|
enforce_https: typing.Optional[builtins.bool] = None,
|
|
7130
7182
|
fine_grained_access_control: typing.Optional[typing.Union[AdvancedSecurityOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
7183
|
+
ip_address_type: typing.Optional[IpAddressType] = None,
|
|
7131
7184
|
logging: typing.Optional[typing.Union[LoggingOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
7132
7185
|
node_to_node_encryption: typing.Optional[builtins.bool] = None,
|
|
7133
7186
|
off_peak_window_enabled: typing.Optional[builtins.bool] = None,
|
|
@@ -7157,6 +7210,7 @@ class Domain(
|
|
|
7157
7210
|
:param encryption_at_rest: Encryption at rest options for the cluster. Default: - No encryption at rest
|
|
7158
7211
|
:param enforce_https: True to require that all traffic to the domain arrive over HTTPS. Default: - false
|
|
7159
7212
|
:param fine_grained_access_control: Specifies options for fine-grained access control. Requires Elasticsearch version 6.7 or later or OpenSearch version 1.0 or later. Enabling fine-grained access control also requires encryption of data at rest and node-to-node encryption, along with enforced HTTPS. Default: - fine-grained access control is disabled
|
|
7213
|
+
:param ip_address_type: Specify either dual stack or IPv4 as your IP address type. Dual stack allows you to share domain resources across IPv4 and IPv6 address types, and is the recommended option. If you set your IP address type to dual stack, you can't change your address type later. Default: - IpAddressType.IPV4
|
|
7160
7214
|
:param logging: Configuration log publishing configuration options. Default: - No logs are published
|
|
7161
7215
|
:param node_to_node_encryption: Specify true to enable node to node encryption. Requires Elasticsearch version 6.0 or later or OpenSearch version 1.0 or later. Default: - Node to node encryption is not enabled.
|
|
7162
7216
|
:param off_peak_window_enabled: Options for enabling a domain's off-peak window, during which OpenSearch Service can perform mandatory configuration changes on the domain. Off-peak windows were introduced on February 16, 2023. All domains created before this date have the off-peak window disabled by default. You must manually enable and configure the off-peak window for these domains. All domains created after this date will have the off-peak window enabled by default. You can't disable the off-peak window for a domain after it's enabled. Default: - Disabled for domains created before February 16, 2023. Enabled for domains created after. Enabled if ``offPeakWindowStart`` is set.
|
|
@@ -7188,6 +7242,7 @@ class Domain(
|
|
|
7188
7242
|
encryption_at_rest=encryption_at_rest,
|
|
7189
7243
|
enforce_https=enforce_https,
|
|
7190
7244
|
fine_grained_access_control=fine_grained_access_control,
|
|
7245
|
+
ip_address_type=ip_address_type,
|
|
7191
7246
|
logging=logging,
|
|
7192
7247
|
node_to_node_encryption=node_to_node_encryption,
|
|
7193
7248
|
off_peak_window_enabled=off_peak_window_enabled,
|
|
@@ -8118,6 +8173,7 @@ __all__ = [
|
|
|
8118
8173
|
"EncryptionAtRestOptions",
|
|
8119
8174
|
"EngineVersion",
|
|
8120
8175
|
"IDomain",
|
|
8176
|
+
"IpAddressType",
|
|
8121
8177
|
"LoggingOptions",
|
|
8122
8178
|
"SAMLOptionsProperty",
|
|
8123
8179
|
"TLSSecurityPolicy",
|
|
@@ -8551,6 +8607,7 @@ def _typecheckingstub__0435b5d94950ff07269642dd229e13535b70e6b92e19fbea5906bff08
|
|
|
8551
8607
|
encryption_at_rest: typing.Optional[typing.Union[EncryptionAtRestOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
8552
8608
|
enforce_https: typing.Optional[builtins.bool] = None,
|
|
8553
8609
|
fine_grained_access_control: typing.Optional[typing.Union[AdvancedSecurityOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
8610
|
+
ip_address_type: typing.Optional[IpAddressType] = None,
|
|
8554
8611
|
logging: typing.Optional[typing.Union[LoggingOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
8555
8612
|
node_to_node_encryption: typing.Optional[builtins.bool] = None,
|
|
8556
8613
|
off_peak_window_enabled: typing.Optional[builtins.bool] = None,
|
|
@@ -8733,6 +8790,7 @@ def _typecheckingstub__3b55c263a445ddb2a2f58a555600f616a7f051ea1adc2ff24d3c1b949
|
|
|
8733
8790
|
encryption_at_rest: typing.Optional[typing.Union[EncryptionAtRestOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
8734
8791
|
enforce_https: typing.Optional[builtins.bool] = None,
|
|
8735
8792
|
fine_grained_access_control: typing.Optional[typing.Union[AdvancedSecurityOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
8793
|
+
ip_address_type: typing.Optional[IpAddressType] = None,
|
|
8736
8794
|
logging: typing.Optional[typing.Union[LoggingOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
8737
8795
|
node_to_node_encryption: typing.Optional[builtins.bool] = None,
|
|
8738
8796
|
off_peak_window_enabled: typing.Optional[builtins.bool] = None,
|
aws_cdk/aws_pinpoint/__init__.py
CHANGED
|
@@ -9232,9 +9232,9 @@ class CfnGCMChannel(
|
|
|
9232
9232
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
9233
9233
|
:param application_id: The unique identifier for the Amazon Pinpoint application that the GCM channel applies to.
|
|
9234
9234
|
:param api_key: The Web API key, also called the *server key* , that you received from Google to communicate with Google services.
|
|
9235
|
-
:param default_authentication_method:
|
|
9235
|
+
:param default_authentication_method: The default authentication method used for GCM. Values are either "TOKEN" or "KEY". Defaults to "KEY".
|
|
9236
9236
|
:param enabled: Specifies whether to enable the GCM channel for the Amazon Pinpoint application.
|
|
9237
|
-
:param service_json:
|
|
9237
|
+
:param service_json: The contents of the JSON file provided by Google during registration in order to generate an access token for authentication. For more information see `Migrate from legacy FCM APIs to HTTP v1 <https://docs.aws.amazon.com/https://firebase.google.com/docs/cloud-messaging/migrate-v1>`_ .
|
|
9238
9238
|
'''
|
|
9239
9239
|
if __debug__:
|
|
9240
9240
|
type_hints = typing.get_type_hints(_typecheckingstub__fb3f8f63a6157e10547523707b6985118a3e678783d2603097b290368727ae6a)
|
|
@@ -9325,6 +9325,7 @@ class CfnGCMChannel(
|
|
|
9325
9325
|
@builtins.property
|
|
9326
9326
|
@jsii.member(jsii_name="defaultAuthenticationMethod")
|
|
9327
9327
|
def default_authentication_method(self) -> typing.Optional[builtins.str]:
|
|
9328
|
+
'''The default authentication method used for GCM.'''
|
|
9328
9329
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "defaultAuthenticationMethod"))
|
|
9329
9330
|
|
|
9330
9331
|
@default_authentication_method.setter
|
|
@@ -9358,6 +9359,7 @@ class CfnGCMChannel(
|
|
|
9358
9359
|
@builtins.property
|
|
9359
9360
|
@jsii.member(jsii_name="serviceJson")
|
|
9360
9361
|
def service_json(self) -> typing.Optional[builtins.str]:
|
|
9362
|
+
'''The contents of the JSON file provided by Google during registration in order to generate an access token for authentication.'''
|
|
9361
9363
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "serviceJson"))
|
|
9362
9364
|
|
|
9363
9365
|
@service_json.setter
|
|
@@ -9393,9 +9395,9 @@ class CfnGCMChannelProps:
|
|
|
9393
9395
|
|
|
9394
9396
|
:param application_id: The unique identifier for the Amazon Pinpoint application that the GCM channel applies to.
|
|
9395
9397
|
:param api_key: The Web API key, also called the *server key* , that you received from Google to communicate with Google services.
|
|
9396
|
-
:param default_authentication_method:
|
|
9398
|
+
:param default_authentication_method: The default authentication method used for GCM. Values are either "TOKEN" or "KEY". Defaults to "KEY".
|
|
9397
9399
|
:param enabled: Specifies whether to enable the GCM channel for the Amazon Pinpoint application.
|
|
9398
|
-
:param service_json:
|
|
9400
|
+
:param service_json: The contents of the JSON file provided by Google during registration in order to generate an access token for authentication. For more information see `Migrate from legacy FCM APIs to HTTP v1 <https://docs.aws.amazon.com/https://firebase.google.com/docs/cloud-messaging/migrate-v1>`_ .
|
|
9399
9401
|
|
|
9400
9402
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html
|
|
9401
9403
|
:exampleMetadata: fixture=_generated
|
|
@@ -9456,7 +9458,10 @@ class CfnGCMChannelProps:
|
|
|
9456
9458
|
|
|
9457
9459
|
@builtins.property
|
|
9458
9460
|
def default_authentication_method(self) -> typing.Optional[builtins.str]:
|
|
9459
|
-
'''
|
|
9461
|
+
'''The default authentication method used for GCM.
|
|
9462
|
+
|
|
9463
|
+
Values are either "TOKEN" or "KEY". Defaults to "KEY".
|
|
9464
|
+
|
|
9460
9465
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-defaultauthenticationmethod
|
|
9461
9466
|
'''
|
|
9462
9467
|
result = self._values.get("default_authentication_method")
|
|
@@ -9475,7 +9480,10 @@ class CfnGCMChannelProps:
|
|
|
9475
9480
|
|
|
9476
9481
|
@builtins.property
|
|
9477
9482
|
def service_json(self) -> typing.Optional[builtins.str]:
|
|
9478
|
-
'''
|
|
9483
|
+
'''The contents of the JSON file provided by Google during registration in order to generate an access token for authentication.
|
|
9484
|
+
|
|
9485
|
+
For more information see `Migrate from legacy FCM APIs to HTTP v1 <https://docs.aws.amazon.com/https://firebase.google.com/docs/cloud-messaging/migrate-v1>`_ .
|
|
9486
|
+
|
|
9479
9487
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.html#cfn-pinpoint-gcmchannel-servicejson
|
|
9480
9488
|
'''
|
|
9481
9489
|
result = self._values.get("service_json")
|
aws_cdk/aws_pipes/__init__.py
CHANGED
|
@@ -57,9 +57,12 @@ class CfnPipe(
|
|
|
57
57
|
metaclass=jsii.JSIIMeta,
|
|
58
58
|
jsii_type="aws-cdk-lib.aws_pipes.CfnPipe",
|
|
59
59
|
):
|
|
60
|
-
'''
|
|
60
|
+
'''Specifies a pipe.
|
|
61
61
|
|
|
62
62
|
Amazon EventBridge Pipes connect event sources to targets and reduces the need for specialized knowledge and integration code.
|
|
63
|
+
.. epigraph::
|
|
64
|
+
|
|
65
|
+
As an aid to help you jumpstart developing CloudFormation templates, the EventBridge console enables you to create templates from the existing pipes in your account. For more information, see `Generate an CloudFormation template from EventBridge Pipes <https://docs.aws.amazon.com/eventbridge/latest/userguide/pipes-generate-template.html>`_ in the *Amazon EventBridge User Guide* .
|
|
63
66
|
|
|
64
67
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pipes-pipe.html
|
|
65
68
|
:cloudformationResource: AWS::Pipes::Pipe
|
|
@@ -2824,7 +2827,7 @@ class CfnPipe(
|
|
|
2824
2827
|
|
|
2825
2828
|
:param cloudwatch_logs_log_destination: The logging configuration settings for the pipe.
|
|
2826
2829
|
:param firehose_log_destination: The Amazon Kinesis Data Firehose logging configuration settings for the pipe.
|
|
2827
|
-
:param include_execution_data: Whether the execution data (specifically, the ``payload`` , ``awsRequest`` , and ``awsResponse`` fields) is included in the log messages for this pipe. This applies to all log destinations for the pipe. For more information, see `Including execution data in logs <https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-logs.html#eb-pipes-logs-execution-data>`_ in the *Amazon EventBridge User Guide* .
|
|
2830
|
+
:param include_execution_data: Whether the execution data (specifically, the ``payload`` , ``awsRequest`` , and ``awsResponse`` fields) is included in the log messages for this pipe. This applies to all log destinations for the pipe. For more information, see `Including execution data in logs <https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-logs.html#eb-pipes-logs-execution-data>`_ in the *Amazon EventBridge User Guide* . *Allowed values:* ``ALL``
|
|
2828
2831
|
:param level: The level of logging detail to include. This applies to all log destinations for the pipe.
|
|
2829
2832
|
:param s3_log_destination: The Amazon S3 logging configuration settings for the pipe.
|
|
2830
2833
|
|
|
@@ -2903,6 +2906,8 @@ class CfnPipe(
|
|
|
2903
2906
|
|
|
2904
2907
|
For more information, see `Including execution data in logs <https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-logs.html#eb-pipes-logs-execution-data>`_ in the *Amazon EventBridge User Guide* .
|
|
2905
2908
|
|
|
2909
|
+
*Allowed values:* ``ALL``
|
|
2910
|
+
|
|
2906
2911
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipelogconfiguration.html#cfn-pipes-pipe-pipelogconfiguration-includeexecutiondata
|
|
2907
2912
|
'''
|
|
2908
2913
|
result = self._values.get("include_execution_data")
|