aws-cdk-lib 2.210.0__py3-none-any.whl → 2.212.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 +404 -54
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.210.0.jsii.tgz → aws-cdk-lib@2.212.0.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +2 -1
- aws_cdk/aws_apigateway/__init__.py +2 -0
- aws_cdk/aws_apigatewayv2/__init__.py +1798 -74
- aws_cdk/aws_appconfig/__init__.py +9 -0
- aws_cdk/aws_appintegrations/__init__.py +395 -0
- aws_cdk/aws_arcregionswitch/__init__.py +5080 -0
- aws_cdk/aws_athena/__init__.py +23 -19
- aws_cdk/aws_autoscaling/__init__.py +6 -6
- aws_cdk/aws_batch/__init__.py +725 -55
- aws_cdk/aws_bedrock/__init__.py +18 -0
- aws_cdk/aws_billingconductor/__init__.py +3 -3
- aws_cdk/aws_cassandra/__init__.py +28 -1
- aws_cdk/aws_cloudfront/__init__.py +39 -8
- aws_cdk/aws_codebuild/__init__.py +122 -0
- aws_cdk/aws_codepipeline/__init__.py +51 -50
- aws_cdk/aws_cognito/__init__.py +9 -2
- aws_cdk/aws_connect/__init__.py +40 -15
- aws_cdk/aws_datazone/__init__.py +118 -77
- aws_cdk/aws_dax/__init__.py +39 -0
- aws_cdk/aws_deadline/__init__.py +166 -7
- aws_cdk/aws_docdb/__init__.py +20 -11
- aws_cdk/aws_dynamodb/__init__.py +246 -36
- aws_cdk/aws_ec2/__init__.py +1044 -111
- aws_cdk/aws_ecr/__init__.py +274 -0
- aws_cdk/aws_ecs/__init__.py +1637 -137
- aws_cdk/aws_eks/__init__.py +53 -3
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +31 -17
- aws_cdk/aws_entityresolution/__init__.py +240 -45
- aws_cdk/aws_evs/__init__.py +20 -45
- aws_cdk/aws_gameliftstreams/__init__.py +7 -6
- aws_cdk/aws_glue/__init__.py +18 -9
- aws_cdk/aws_guardduty/__init__.py +1233 -113
- aws_cdk/aws_imagebuilder/__init__.py +34 -20
- aws_cdk/aws_inspectorv2/__init__.py +1516 -0
- aws_cdk/aws_iot/__init__.py +387 -0
- aws_cdk/aws_iotsitewise/__init__.py +1247 -139
- aws_cdk/aws_ivs/__init__.py +443 -33
- aws_cdk/aws_kinesisfirehose/__init__.py +2 -0
- aws_cdk/aws_lakeformation/__init__.py +1 -1
- aws_cdk/aws_lambda/__init__.py +9 -9
- aws_cdk/aws_lightsail/__init__.py +590 -0
- aws_cdk/aws_logs/__init__.py +97 -3
- aws_cdk/aws_medialive/__init__.py +270 -7
- aws_cdk/aws_mediapackagev2/__init__.py +204 -6
- aws_cdk/aws_neptune/__init__.py +41 -2
- aws_cdk/aws_networkfirewall/__init__.py +490 -134
- aws_cdk/aws_observabilityadmin/__init__.py +1468 -0
- aws_cdk/aws_omics/__init__.py +1 -1
- aws_cdk/aws_opensearchserverless/__init__.py +2 -2
- aws_cdk/aws_opensearchservice/__init__.py +128 -0
- aws_cdk/aws_opsworks/__init__.py +125 -125
- aws_cdk/aws_opsworkscm/__init__.py +1 -53
- aws_cdk/aws_pcs/__init__.py +49 -5
- aws_cdk/aws_qbusiness/__init__.py +3 -3
- aws_cdk/aws_quicksight/__init__.py +188 -83
- aws_cdk/aws_rds/__init__.py +245 -103
- aws_cdk/aws_s3/__init__.py +56 -1
- aws_cdk/aws_s3express/__init__.py +56 -1
- aws_cdk/aws_s3tables/__init__.py +2 -2
- aws_cdk/aws_sagemaker/__init__.py +4080 -223
- aws_cdk/aws_ses/__init__.py +172 -9
- aws_cdk/aws_sqs/__init__.py +4 -3
- aws_cdk/aws_ssm/__init__.py +8 -4
- aws_cdk/aws_stepfunctions_tasks/__init__.py +16 -9
- aws_cdk/aws_synthetics/__init__.py +116 -0
- aws_cdk/aws_verifiedpermissions/__init__.py +23 -2
- aws_cdk/aws_wisdom/__init__.py +2 -2
- aws_cdk/aws_workspacesweb/__init__.py +949 -157
- aws_cdk/cx_api/__init__.py +22 -0
- {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.212.0.dist-info}/METADATA +335 -15
- {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.212.0.dist-info}/RECORD +78 -76
- {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.212.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.212.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.212.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.212.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_ses/__init__.py
CHANGED
|
@@ -804,7 +804,7 @@ class ByoDkimOptions:
|
|
|
804
804
|
)
|
|
805
805
|
|
|
806
806
|
|
|
807
|
-
@jsii.implements(_IInspectable_c2943556)
|
|
807
|
+
@jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
|
|
808
808
|
class CfnConfigurationSet(
|
|
809
809
|
_CfnResource_9df397a6,
|
|
810
810
|
metaclass=jsii.JSIIMeta,
|
|
@@ -853,6 +853,10 @@ class CfnConfigurationSet(
|
|
|
853
853
|
suppression_options=ses.CfnConfigurationSet.SuppressionOptionsProperty(
|
|
854
854
|
suppressed_reasons=["suppressedReasons"]
|
|
855
855
|
),
|
|
856
|
+
tags=[CfnTag(
|
|
857
|
+
key="key",
|
|
858
|
+
value="value"
|
|
859
|
+
)],
|
|
856
860
|
tracking_options=ses.CfnConfigurationSet.TrackingOptionsProperty(
|
|
857
861
|
custom_redirect_domain="customRedirectDomain",
|
|
858
862
|
https_policy="httpsPolicy"
|
|
@@ -878,6 +882,7 @@ class CfnConfigurationSet(
|
|
|
878
882
|
reputation_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnConfigurationSet.ReputationOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
879
883
|
sending_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnConfigurationSet.SendingOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
880
884
|
suppression_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnConfigurationSet.SuppressionOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
885
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
881
886
|
tracking_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnConfigurationSet.TrackingOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
882
887
|
vdm_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnConfigurationSet.VdmOptionsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
883
888
|
) -> None:
|
|
@@ -889,6 +894,7 @@ class CfnConfigurationSet(
|
|
|
889
894
|
:param reputation_options: An object that defines whether or not Amazon SES collects reputation metrics for the emails that you send that use the configuration set.
|
|
890
895
|
:param sending_options: An object that defines whether or not Amazon SES can send email that you send using the configuration set.
|
|
891
896
|
:param suppression_options: An object that contains information about the suppression list preferences for your account.
|
|
897
|
+
:param tags: An array of objects that define the tags (keys and values) that are associated with the configuration set.
|
|
892
898
|
:param tracking_options: An object that defines the open and click tracking options for emails that you send using the configuration set.
|
|
893
899
|
:param vdm_options: The Virtual Deliverability Manager (VDM) options that apply to the configuration set.
|
|
894
900
|
'''
|
|
@@ -902,6 +908,7 @@ class CfnConfigurationSet(
|
|
|
902
908
|
reputation_options=reputation_options,
|
|
903
909
|
sending_options=sending_options,
|
|
904
910
|
suppression_options=suppression_options,
|
|
911
|
+
tags=tags,
|
|
905
912
|
tracking_options=tracking_options,
|
|
906
913
|
vdm_options=vdm_options,
|
|
907
914
|
)
|
|
@@ -938,6 +945,12 @@ class CfnConfigurationSet(
|
|
|
938
945
|
'''The CloudFormation resource type name for this resource class.'''
|
|
939
946
|
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
940
947
|
|
|
948
|
+
@builtins.property
|
|
949
|
+
@jsii.member(jsii_name="cdkTagManager")
|
|
950
|
+
def cdk_tag_manager(self) -> _TagManager_0a598cb3:
|
|
951
|
+
'''Tag Manager which manages the tags for this resource.'''
|
|
952
|
+
return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
|
|
953
|
+
|
|
941
954
|
@builtins.property
|
|
942
955
|
@jsii.member(jsii_name="cfnProperties")
|
|
943
956
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
@@ -1031,6 +1044,19 @@ class CfnConfigurationSet(
|
|
|
1031
1044
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1032
1045
|
jsii.set(self, "suppressionOptions", value) # pyright: ignore[reportArgumentType]
|
|
1033
1046
|
|
|
1047
|
+
@builtins.property
|
|
1048
|
+
@jsii.member(jsii_name="tags")
|
|
1049
|
+
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
1050
|
+
'''An array of objects that define the tags (keys and values) that are associated with the configuration set.'''
|
|
1051
|
+
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
1052
|
+
|
|
1053
|
+
@tags.setter
|
|
1054
|
+
def tags(self, value: typing.Optional[typing.List[_CfnTag_f6864754]]) -> None:
|
|
1055
|
+
if __debug__:
|
|
1056
|
+
type_hints = typing.get_type_hints(_typecheckingstub__c62b9f68ee9b0075b17aa0e2ad90c86281aa22d6d7e67129dbeee761ce2c5d4f)
|
|
1057
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
1058
|
+
jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
|
|
1059
|
+
|
|
1034
1060
|
@builtins.property
|
|
1035
1061
|
@jsii.member(jsii_name="trackingOptions")
|
|
1036
1062
|
def tracking_options(
|
|
@@ -2429,6 +2455,7 @@ class CfnConfigurationSetEventDestinationProps:
|
|
|
2429
2455
|
"reputation_options": "reputationOptions",
|
|
2430
2456
|
"sending_options": "sendingOptions",
|
|
2431
2457
|
"suppression_options": "suppressionOptions",
|
|
2458
|
+
"tags": "tags",
|
|
2432
2459
|
"tracking_options": "trackingOptions",
|
|
2433
2460
|
"vdm_options": "vdmOptions",
|
|
2434
2461
|
},
|
|
@@ -2442,6 +2469,7 @@ class CfnConfigurationSetProps:
|
|
|
2442
2469
|
reputation_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConfigurationSet.ReputationOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2443
2470
|
sending_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConfigurationSet.SendingOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2444
2471
|
suppression_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConfigurationSet.SuppressionOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2472
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2445
2473
|
tracking_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConfigurationSet.TrackingOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2446
2474
|
vdm_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConfigurationSet.VdmOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2447
2475
|
) -> None:
|
|
@@ -2452,6 +2480,7 @@ class CfnConfigurationSetProps:
|
|
|
2452
2480
|
:param reputation_options: An object that defines whether or not Amazon SES collects reputation metrics for the emails that you send that use the configuration set.
|
|
2453
2481
|
:param sending_options: An object that defines whether or not Amazon SES can send email that you send using the configuration set.
|
|
2454
2482
|
:param suppression_options: An object that contains information about the suppression list preferences for your account.
|
|
2483
|
+
:param tags: An array of objects that define the tags (keys and values) that are associated with the configuration set.
|
|
2455
2484
|
:param tracking_options: An object that defines the open and click tracking options for emails that you send using the configuration set.
|
|
2456
2485
|
:param vdm_options: The Virtual Deliverability Manager (VDM) options that apply to the configuration set.
|
|
2457
2486
|
|
|
@@ -2480,6 +2509,10 @@ class CfnConfigurationSetProps:
|
|
|
2480
2509
|
suppression_options=ses.CfnConfigurationSet.SuppressionOptionsProperty(
|
|
2481
2510
|
suppressed_reasons=["suppressedReasons"]
|
|
2482
2511
|
),
|
|
2512
|
+
tags=[CfnTag(
|
|
2513
|
+
key="key",
|
|
2514
|
+
value="value"
|
|
2515
|
+
)],
|
|
2483
2516
|
tracking_options=ses.CfnConfigurationSet.TrackingOptionsProperty(
|
|
2484
2517
|
custom_redirect_domain="customRedirectDomain",
|
|
2485
2518
|
https_policy="httpsPolicy"
|
|
@@ -2501,6 +2534,7 @@ class CfnConfigurationSetProps:
|
|
|
2501
2534
|
check_type(argname="argument reputation_options", value=reputation_options, expected_type=type_hints["reputation_options"])
|
|
2502
2535
|
check_type(argname="argument sending_options", value=sending_options, expected_type=type_hints["sending_options"])
|
|
2503
2536
|
check_type(argname="argument suppression_options", value=suppression_options, expected_type=type_hints["suppression_options"])
|
|
2537
|
+
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
2504
2538
|
check_type(argname="argument tracking_options", value=tracking_options, expected_type=type_hints["tracking_options"])
|
|
2505
2539
|
check_type(argname="argument vdm_options", value=vdm_options, expected_type=type_hints["vdm_options"])
|
|
2506
2540
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
@@ -2514,6 +2548,8 @@ class CfnConfigurationSetProps:
|
|
|
2514
2548
|
self._values["sending_options"] = sending_options
|
|
2515
2549
|
if suppression_options is not None:
|
|
2516
2550
|
self._values["suppression_options"] = suppression_options
|
|
2551
|
+
if tags is not None:
|
|
2552
|
+
self._values["tags"] = tags
|
|
2517
2553
|
if tracking_options is not None:
|
|
2518
2554
|
self._values["tracking_options"] = tracking_options
|
|
2519
2555
|
if vdm_options is not None:
|
|
@@ -2575,6 +2611,15 @@ class CfnConfigurationSetProps:
|
|
|
2575
2611
|
result = self._values.get("suppression_options")
|
|
2576
2612
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnConfigurationSet.SuppressionOptionsProperty]], result)
|
|
2577
2613
|
|
|
2614
|
+
@builtins.property
|
|
2615
|
+
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
2616
|
+
'''An array of objects that define the tags (keys and values) that are associated with the configuration set.
|
|
2617
|
+
|
|
2618
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html#cfn-ses-configurationset-tags
|
|
2619
|
+
'''
|
|
2620
|
+
result = self._values.get("tags")
|
|
2621
|
+
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
|
|
2622
|
+
|
|
2578
2623
|
@builtins.property
|
|
2579
2624
|
def tracking_options(
|
|
2580
2625
|
self,
|
|
@@ -3005,7 +3050,7 @@ class CfnContactListProps:
|
|
|
3005
3050
|
)
|
|
3006
3051
|
|
|
3007
3052
|
|
|
3008
|
-
@jsii.implements(_IInspectable_c2943556)
|
|
3053
|
+
@jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
|
|
3009
3054
|
class CfnDedicatedIpPool(
|
|
3010
3055
|
_CfnResource_9df397a6,
|
|
3011
3056
|
metaclass=jsii.JSIIMeta,
|
|
@@ -3030,7 +3075,11 @@ class CfnDedicatedIpPool(
|
|
|
3030
3075
|
|
|
3031
3076
|
cfn_dedicated_ip_pool = ses.CfnDedicatedIpPool(self, "MyCfnDedicatedIpPool",
|
|
3032
3077
|
pool_name="poolName",
|
|
3033
|
-
scaling_mode="scalingMode"
|
|
3078
|
+
scaling_mode="scalingMode",
|
|
3079
|
+
tags=[CfnTag(
|
|
3080
|
+
key="key",
|
|
3081
|
+
value="value"
|
|
3082
|
+
)]
|
|
3034
3083
|
)
|
|
3035
3084
|
'''
|
|
3036
3085
|
|
|
@@ -3041,18 +3090,22 @@ class CfnDedicatedIpPool(
|
|
|
3041
3090
|
*,
|
|
3042
3091
|
pool_name: typing.Optional[builtins.str] = None,
|
|
3043
3092
|
scaling_mode: typing.Optional[builtins.str] = None,
|
|
3093
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3044
3094
|
) -> None:
|
|
3045
3095
|
'''
|
|
3046
3096
|
:param scope: Scope in which this resource is defined.
|
|
3047
3097
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
3048
3098
|
:param pool_name: The name of the dedicated IP pool that the IP address is associated with.
|
|
3049
3099
|
:param scaling_mode: The type of scaling mode. The following options are available: - ``STANDARD`` - The customer controls which IPs are part of the dedicated IP pool. - ``MANAGED`` - The reputation and number of IPs are automatically managed by Amazon SES . The ``STANDARD`` option is selected by default if no value is specified. .. epigraph:: Updating *ScalingMode* doesn't require a replacement if you're updating its value from ``STANDARD`` to ``MANAGED`` . However, updating *ScalingMode* from ``MANAGED`` to ``STANDARD`` is not supported.
|
|
3100
|
+
:param tags: An object that defines the tags (keys and values) that you want to associate with the pool.
|
|
3050
3101
|
'''
|
|
3051
3102
|
if __debug__:
|
|
3052
3103
|
type_hints = typing.get_type_hints(_typecheckingstub__86a024e58c5549e30a3beca5bb152d09219a0cb42e6e02b0e95395595c9930e2)
|
|
3053
3104
|
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
3054
3105
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
3055
|
-
props = CfnDedicatedIpPoolProps(
|
|
3106
|
+
props = CfnDedicatedIpPoolProps(
|
|
3107
|
+
pool_name=pool_name, scaling_mode=scaling_mode, tags=tags
|
|
3108
|
+
)
|
|
3056
3109
|
|
|
3057
3110
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
3058
3111
|
|
|
@@ -3086,6 +3139,12 @@ class CfnDedicatedIpPool(
|
|
|
3086
3139
|
'''The CloudFormation resource type name for this resource class.'''
|
|
3087
3140
|
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
3088
3141
|
|
|
3142
|
+
@builtins.property
|
|
3143
|
+
@jsii.member(jsii_name="cdkTagManager")
|
|
3144
|
+
def cdk_tag_manager(self) -> _TagManager_0a598cb3:
|
|
3145
|
+
'''Tag Manager which manages the tags for this resource.'''
|
|
3146
|
+
return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
|
|
3147
|
+
|
|
3089
3148
|
@builtins.property
|
|
3090
3149
|
@jsii.member(jsii_name="cfnProperties")
|
|
3091
3150
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
@@ -3117,11 +3176,28 @@ class CfnDedicatedIpPool(
|
|
|
3117
3176
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3118
3177
|
jsii.set(self, "scalingMode", value) # pyright: ignore[reportArgumentType]
|
|
3119
3178
|
|
|
3179
|
+
@builtins.property
|
|
3180
|
+
@jsii.member(jsii_name="tags")
|
|
3181
|
+
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
3182
|
+
'''An object that defines the tags (keys and values) that you want to associate with the pool.'''
|
|
3183
|
+
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
3184
|
+
|
|
3185
|
+
@tags.setter
|
|
3186
|
+
def tags(self, value: typing.Optional[typing.List[_CfnTag_f6864754]]) -> None:
|
|
3187
|
+
if __debug__:
|
|
3188
|
+
type_hints = typing.get_type_hints(_typecheckingstub__fdfb8383d85d605dbc464ac070d5b1dbd7acd9e899b479c712bf9f4e9432f8d8)
|
|
3189
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3190
|
+
jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
|
|
3191
|
+
|
|
3120
3192
|
|
|
3121
3193
|
@jsii.data_type(
|
|
3122
3194
|
jsii_type="aws-cdk-lib.aws_ses.CfnDedicatedIpPoolProps",
|
|
3123
3195
|
jsii_struct_bases=[],
|
|
3124
|
-
name_mapping={
|
|
3196
|
+
name_mapping={
|
|
3197
|
+
"pool_name": "poolName",
|
|
3198
|
+
"scaling_mode": "scalingMode",
|
|
3199
|
+
"tags": "tags",
|
|
3200
|
+
},
|
|
3125
3201
|
)
|
|
3126
3202
|
class CfnDedicatedIpPoolProps:
|
|
3127
3203
|
def __init__(
|
|
@@ -3129,11 +3205,13 @@ class CfnDedicatedIpPoolProps:
|
|
|
3129
3205
|
*,
|
|
3130
3206
|
pool_name: typing.Optional[builtins.str] = None,
|
|
3131
3207
|
scaling_mode: typing.Optional[builtins.str] = None,
|
|
3208
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3132
3209
|
) -> None:
|
|
3133
3210
|
'''Properties for defining a ``CfnDedicatedIpPool``.
|
|
3134
3211
|
|
|
3135
3212
|
:param pool_name: The name of the dedicated IP pool that the IP address is associated with.
|
|
3136
3213
|
:param scaling_mode: The type of scaling mode. The following options are available: - ``STANDARD`` - The customer controls which IPs are part of the dedicated IP pool. - ``MANAGED`` - The reputation and number of IPs are automatically managed by Amazon SES . The ``STANDARD`` option is selected by default if no value is specified. .. epigraph:: Updating *ScalingMode* doesn't require a replacement if you're updating its value from ``STANDARD`` to ``MANAGED`` . However, updating *ScalingMode* from ``MANAGED`` to ``STANDARD`` is not supported.
|
|
3214
|
+
:param tags: An object that defines the tags (keys and values) that you want to associate with the pool.
|
|
3137
3215
|
|
|
3138
3216
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-dedicatedippool.html
|
|
3139
3217
|
:exampleMetadata: fixture=_generated
|
|
@@ -3146,18 +3224,25 @@ class CfnDedicatedIpPoolProps:
|
|
|
3146
3224
|
|
|
3147
3225
|
cfn_dedicated_ip_pool_props = ses.CfnDedicatedIpPoolProps(
|
|
3148
3226
|
pool_name="poolName",
|
|
3149
|
-
scaling_mode="scalingMode"
|
|
3227
|
+
scaling_mode="scalingMode",
|
|
3228
|
+
tags=[CfnTag(
|
|
3229
|
+
key="key",
|
|
3230
|
+
value="value"
|
|
3231
|
+
)]
|
|
3150
3232
|
)
|
|
3151
3233
|
'''
|
|
3152
3234
|
if __debug__:
|
|
3153
3235
|
type_hints = typing.get_type_hints(_typecheckingstub__ea1a308c0c75c9aabf33c8c8b6378da7534f946eff787acdd2dc100f0b482f56)
|
|
3154
3236
|
check_type(argname="argument pool_name", value=pool_name, expected_type=type_hints["pool_name"])
|
|
3155
3237
|
check_type(argname="argument scaling_mode", value=scaling_mode, expected_type=type_hints["scaling_mode"])
|
|
3238
|
+
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
3156
3239
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
3157
3240
|
if pool_name is not None:
|
|
3158
3241
|
self._values["pool_name"] = pool_name
|
|
3159
3242
|
if scaling_mode is not None:
|
|
3160
3243
|
self._values["scaling_mode"] = scaling_mode
|
|
3244
|
+
if tags is not None:
|
|
3245
|
+
self._values["tags"] = tags
|
|
3161
3246
|
|
|
3162
3247
|
@builtins.property
|
|
3163
3248
|
def pool_name(self) -> typing.Optional[builtins.str]:
|
|
@@ -3187,6 +3272,15 @@ class CfnDedicatedIpPoolProps:
|
|
|
3187
3272
|
result = self._values.get("scaling_mode")
|
|
3188
3273
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
3189
3274
|
|
|
3275
|
+
@builtins.property
|
|
3276
|
+
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
3277
|
+
'''An object that defines the tags (keys and values) that you want to associate with the pool.
|
|
3278
|
+
|
|
3279
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-dedicatedippool.html#cfn-ses-dedicatedippool-tags
|
|
3280
|
+
'''
|
|
3281
|
+
result = self._values.get("tags")
|
|
3282
|
+
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
|
|
3283
|
+
|
|
3190
3284
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
3191
3285
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
3192
3286
|
|
|
@@ -3199,7 +3293,7 @@ class CfnDedicatedIpPoolProps:
|
|
|
3199
3293
|
)
|
|
3200
3294
|
|
|
3201
3295
|
|
|
3202
|
-
@jsii.implements(_IInspectable_c2943556)
|
|
3296
|
+
@jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
|
|
3203
3297
|
class CfnEmailIdentity(
|
|
3204
3298
|
_CfnResource_9df397a6,
|
|
3205
3299
|
metaclass=jsii.JSIIMeta,
|
|
@@ -3246,7 +3340,11 @@ class CfnEmailIdentity(
|
|
|
3246
3340
|
mail_from_attributes=ses.CfnEmailIdentity.MailFromAttributesProperty(
|
|
3247
3341
|
behavior_on_mx_failure="behaviorOnMxFailure",
|
|
3248
3342
|
mail_from_domain="mailFromDomain"
|
|
3249
|
-
)
|
|
3343
|
+
),
|
|
3344
|
+
tags=[CfnTag(
|
|
3345
|
+
key="key",
|
|
3346
|
+
value="value"
|
|
3347
|
+
)]
|
|
3250
3348
|
)
|
|
3251
3349
|
'''
|
|
3252
3350
|
|
|
@@ -3261,6 +3359,7 @@ class CfnEmailIdentity(
|
|
|
3261
3359
|
dkim_signing_attributes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnEmailIdentity.DkimSigningAttributesProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3262
3360
|
feedback_attributes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnEmailIdentity.FeedbackAttributesProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3263
3361
|
mail_from_attributes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnEmailIdentity.MailFromAttributesProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3362
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3264
3363
|
) -> None:
|
|
3265
3364
|
'''
|
|
3266
3365
|
:param scope: Scope in which this resource is defined.
|
|
@@ -3271,6 +3370,7 @@ class CfnEmailIdentity(
|
|
|
3271
3370
|
:param dkim_signing_attributes: If your request includes this object, Amazon SES configures the identity to use Bring Your Own DKIM (BYODKIM) for DKIM authentication purposes, or, configures the key length to be used for `Easy DKIM <https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html>`_ . You can only specify this object if the email identity is a domain, as opposed to an address.
|
|
3272
3371
|
:param feedback_attributes: Used to enable or disable feedback forwarding for an identity.
|
|
3273
3372
|
:param mail_from_attributes: Used to enable or disable the custom Mail-From domain configuration for an email identity.
|
|
3373
|
+
:param tags: An array of objects that define the tags (keys and values) to associate with the email identity.
|
|
3274
3374
|
'''
|
|
3275
3375
|
if __debug__:
|
|
3276
3376
|
type_hints = typing.get_type_hints(_typecheckingstub__6dd153888b73988faf47365b573ef9e102d03faf2ff7fc2112c9b85962c0cc81)
|
|
@@ -3283,6 +3383,7 @@ class CfnEmailIdentity(
|
|
|
3283
3383
|
dkim_signing_attributes=dkim_signing_attributes,
|
|
3284
3384
|
feedback_attributes=feedback_attributes,
|
|
3285
3385
|
mail_from_attributes=mail_from_attributes,
|
|
3386
|
+
tags=tags,
|
|
3286
3387
|
)
|
|
3287
3388
|
|
|
3288
3389
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
@@ -3371,6 +3472,12 @@ class CfnEmailIdentity(
|
|
|
3371
3472
|
'''
|
|
3372
3473
|
return typing.cast(builtins.str, jsii.get(self, "attrDkimDnsTokenValue3"))
|
|
3373
3474
|
|
|
3475
|
+
@builtins.property
|
|
3476
|
+
@jsii.member(jsii_name="cdkTagManager")
|
|
3477
|
+
def cdk_tag_manager(self) -> _TagManager_0a598cb3:
|
|
3478
|
+
'''Tag Manager which manages the tags for this resource.'''
|
|
3479
|
+
return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
|
|
3480
|
+
|
|
3374
3481
|
@builtins.property
|
|
3375
3482
|
@jsii.member(jsii_name="cfnProperties")
|
|
3376
3483
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
@@ -3479,6 +3586,19 @@ class CfnEmailIdentity(
|
|
|
3479
3586
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3480
3587
|
jsii.set(self, "mailFromAttributes", value) # pyright: ignore[reportArgumentType]
|
|
3481
3588
|
|
|
3589
|
+
@builtins.property
|
|
3590
|
+
@jsii.member(jsii_name="tags")
|
|
3591
|
+
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
3592
|
+
'''An array of objects that define the tags (keys and values) to associate with the email identity.'''
|
|
3593
|
+
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
3594
|
+
|
|
3595
|
+
@tags.setter
|
|
3596
|
+
def tags(self, value: typing.Optional[typing.List[_CfnTag_f6864754]]) -> None:
|
|
3597
|
+
if __debug__:
|
|
3598
|
+
type_hints = typing.get_type_hints(_typecheckingstub__734a5169a3a8e4af6fa9920987d51d19a7ae6a49e4504934eb9c54d8bf21aa81)
|
|
3599
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3600
|
+
jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
|
|
3601
|
+
|
|
3482
3602
|
@jsii.data_type(
|
|
3483
3603
|
jsii_type="aws-cdk-lib.aws_ses.CfnEmailIdentity.ConfigurationSetAttributesProperty",
|
|
3484
3604
|
jsii_struct_bases=[],
|
|
@@ -3861,6 +3981,7 @@ class CfnEmailIdentity(
|
|
|
3861
3981
|
"dkim_signing_attributes": "dkimSigningAttributes",
|
|
3862
3982
|
"feedback_attributes": "feedbackAttributes",
|
|
3863
3983
|
"mail_from_attributes": "mailFromAttributes",
|
|
3984
|
+
"tags": "tags",
|
|
3864
3985
|
},
|
|
3865
3986
|
)
|
|
3866
3987
|
class CfnEmailIdentityProps:
|
|
@@ -3873,6 +3994,7 @@ class CfnEmailIdentityProps:
|
|
|
3873
3994
|
dkim_signing_attributes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEmailIdentity.DkimSigningAttributesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3874
3995
|
feedback_attributes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEmailIdentity.FeedbackAttributesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3875
3996
|
mail_from_attributes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEmailIdentity.MailFromAttributesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3997
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
3876
3998
|
) -> None:
|
|
3877
3999
|
'''Properties for defining a ``CfnEmailIdentity``.
|
|
3878
4000
|
|
|
@@ -3882,6 +4004,7 @@ class CfnEmailIdentityProps:
|
|
|
3882
4004
|
:param dkim_signing_attributes: If your request includes this object, Amazon SES configures the identity to use Bring Your Own DKIM (BYODKIM) for DKIM authentication purposes, or, configures the key length to be used for `Easy DKIM <https://docs.aws.amazon.com/ses/latest/DeveloperGuide/easy-dkim.html>`_ . You can only specify this object if the email identity is a domain, as opposed to an address.
|
|
3883
4005
|
:param feedback_attributes: Used to enable or disable feedback forwarding for an identity.
|
|
3884
4006
|
:param mail_from_attributes: Used to enable or disable the custom Mail-From domain configuration for an email identity.
|
|
4007
|
+
:param tags: An array of objects that define the tags (keys and values) to associate with the email identity.
|
|
3885
4008
|
|
|
3886
4009
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-emailidentity.html
|
|
3887
4010
|
:exampleMetadata: fixture=_generated
|
|
@@ -3913,7 +4036,11 @@ class CfnEmailIdentityProps:
|
|
|
3913
4036
|
mail_from_attributes=ses.CfnEmailIdentity.MailFromAttributesProperty(
|
|
3914
4037
|
behavior_on_mx_failure="behaviorOnMxFailure",
|
|
3915
4038
|
mail_from_domain="mailFromDomain"
|
|
3916
|
-
)
|
|
4039
|
+
),
|
|
4040
|
+
tags=[CfnTag(
|
|
4041
|
+
key="key",
|
|
4042
|
+
value="value"
|
|
4043
|
+
)]
|
|
3917
4044
|
)
|
|
3918
4045
|
'''
|
|
3919
4046
|
if __debug__:
|
|
@@ -3924,6 +4051,7 @@ class CfnEmailIdentityProps:
|
|
|
3924
4051
|
check_type(argname="argument dkim_signing_attributes", value=dkim_signing_attributes, expected_type=type_hints["dkim_signing_attributes"])
|
|
3925
4052
|
check_type(argname="argument feedback_attributes", value=feedback_attributes, expected_type=type_hints["feedback_attributes"])
|
|
3926
4053
|
check_type(argname="argument mail_from_attributes", value=mail_from_attributes, expected_type=type_hints["mail_from_attributes"])
|
|
4054
|
+
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
3927
4055
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
3928
4056
|
"email_identity": email_identity,
|
|
3929
4057
|
}
|
|
@@ -3937,6 +4065,8 @@ class CfnEmailIdentityProps:
|
|
|
3937
4065
|
self._values["feedback_attributes"] = feedback_attributes
|
|
3938
4066
|
if mail_from_attributes is not None:
|
|
3939
4067
|
self._values["mail_from_attributes"] = mail_from_attributes
|
|
4068
|
+
if tags is not None:
|
|
4069
|
+
self._values["tags"] = tags
|
|
3940
4070
|
|
|
3941
4071
|
@builtins.property
|
|
3942
4072
|
def email_identity(self) -> builtins.str:
|
|
@@ -4005,6 +4135,15 @@ class CfnEmailIdentityProps:
|
|
|
4005
4135
|
result = self._values.get("mail_from_attributes")
|
|
4006
4136
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnEmailIdentity.MailFromAttributesProperty]], result)
|
|
4007
4137
|
|
|
4138
|
+
@builtins.property
|
|
4139
|
+
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
4140
|
+
'''An array of objects that define the tags (keys and values) to associate with the email identity.
|
|
4141
|
+
|
|
4142
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-emailidentity.html#cfn-ses-emailidentity-tags
|
|
4143
|
+
'''
|
|
4144
|
+
result = self._values.get("tags")
|
|
4145
|
+
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
|
|
4146
|
+
|
|
4008
4147
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
4009
4148
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
4010
4149
|
|
|
@@ -18398,6 +18537,7 @@ def _typecheckingstub__ad84a733d05a7160c0517733c56c249f6a299231ebcf8e982ed1aeda9
|
|
|
18398
18537
|
reputation_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConfigurationSet.ReputationOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
18399
18538
|
sending_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConfigurationSet.SendingOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
18400
18539
|
suppression_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConfigurationSet.SuppressionOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
18540
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
18401
18541
|
tracking_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConfigurationSet.TrackingOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
18402
18542
|
vdm_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConfigurationSet.VdmOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
18403
18543
|
) -> None:
|
|
@@ -18446,6 +18586,12 @@ def _typecheckingstub__4d6e92203e0b0fb9ad18351409d2e930bd3b3881d922fcb2f2b38b337
|
|
|
18446
18586
|
"""Type checking stubs"""
|
|
18447
18587
|
pass
|
|
18448
18588
|
|
|
18589
|
+
def _typecheckingstub__c62b9f68ee9b0075b17aa0e2ad90c86281aa22d6d7e67129dbeee761ce2c5d4f(
|
|
18590
|
+
value: typing.Optional[typing.List[_CfnTag_f6864754]],
|
|
18591
|
+
) -> None:
|
|
18592
|
+
"""Type checking stubs"""
|
|
18593
|
+
pass
|
|
18594
|
+
|
|
18449
18595
|
def _typecheckingstub__0e2738cc83fe741aa7d2c58d5db581a79f89d7427a9504ac697d8f7dd2004ea9(
|
|
18450
18596
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnConfigurationSet.TrackingOptionsProperty]],
|
|
18451
18597
|
) -> None:
|
|
@@ -18618,6 +18764,7 @@ def _typecheckingstub__e27ed179dbf809eedecaf57207416cd1680782d0d3ab4c539486ad703
|
|
|
18618
18764
|
reputation_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConfigurationSet.ReputationOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
18619
18765
|
sending_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConfigurationSet.SendingOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
18620
18766
|
suppression_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConfigurationSet.SuppressionOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
18767
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
18621
18768
|
tracking_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConfigurationSet.TrackingOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
18622
18769
|
vdm_options: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConfigurationSet.VdmOptionsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
18623
18770
|
) -> None:
|
|
@@ -18698,6 +18845,7 @@ def _typecheckingstub__86a024e58c5549e30a3beca5bb152d09219a0cb42e6e02b0e95395595
|
|
|
18698
18845
|
*,
|
|
18699
18846
|
pool_name: typing.Optional[builtins.str] = None,
|
|
18700
18847
|
scaling_mode: typing.Optional[builtins.str] = None,
|
|
18848
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
18701
18849
|
) -> None:
|
|
18702
18850
|
"""Type checking stubs"""
|
|
18703
18851
|
pass
|
|
@@ -18726,10 +18874,17 @@ def _typecheckingstub__cfe768b550097b0e81974377ae65fba6791743f6787f72492af555cd1
|
|
|
18726
18874
|
"""Type checking stubs"""
|
|
18727
18875
|
pass
|
|
18728
18876
|
|
|
18877
|
+
def _typecheckingstub__fdfb8383d85d605dbc464ac070d5b1dbd7acd9e899b479c712bf9f4e9432f8d8(
|
|
18878
|
+
value: typing.Optional[typing.List[_CfnTag_f6864754]],
|
|
18879
|
+
) -> None:
|
|
18880
|
+
"""Type checking stubs"""
|
|
18881
|
+
pass
|
|
18882
|
+
|
|
18729
18883
|
def _typecheckingstub__ea1a308c0c75c9aabf33c8c8b6378da7534f946eff787acdd2dc100f0b482f56(
|
|
18730
18884
|
*,
|
|
18731
18885
|
pool_name: typing.Optional[builtins.str] = None,
|
|
18732
18886
|
scaling_mode: typing.Optional[builtins.str] = None,
|
|
18887
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
18733
18888
|
) -> None:
|
|
18734
18889
|
"""Type checking stubs"""
|
|
18735
18890
|
pass
|
|
@@ -18744,6 +18899,7 @@ def _typecheckingstub__6dd153888b73988faf47365b573ef9e102d03faf2ff7fc2112c9b8596
|
|
|
18744
18899
|
dkim_signing_attributes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEmailIdentity.DkimSigningAttributesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
18745
18900
|
feedback_attributes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEmailIdentity.FeedbackAttributesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
18746
18901
|
mail_from_attributes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEmailIdentity.MailFromAttributesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
18902
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
18747
18903
|
) -> None:
|
|
18748
18904
|
"""Type checking stubs"""
|
|
18749
18905
|
pass
|
|
@@ -18796,6 +18952,12 @@ def _typecheckingstub__3bfc642d317ef43c146d5f2aed5754d7210e533815ccd7d6339a4f094
|
|
|
18796
18952
|
"""Type checking stubs"""
|
|
18797
18953
|
pass
|
|
18798
18954
|
|
|
18955
|
+
def _typecheckingstub__734a5169a3a8e4af6fa9920987d51d19a7ae6a49e4504934eb9c54d8bf21aa81(
|
|
18956
|
+
value: typing.Optional[typing.List[_CfnTag_f6864754]],
|
|
18957
|
+
) -> None:
|
|
18958
|
+
"""Type checking stubs"""
|
|
18959
|
+
pass
|
|
18960
|
+
|
|
18799
18961
|
def _typecheckingstub__f43c178a47220933c21060d38f5105353a7af12378df167bc4dc7fca0fffa09c(
|
|
18800
18962
|
*,
|
|
18801
18963
|
configuration_set_name: typing.Optional[builtins.str] = None,
|
|
@@ -18842,6 +19004,7 @@ def _typecheckingstub__1981630fc48db9c9ef7ed37311c6a22c4456e2d316420d87e0ba41890
|
|
|
18842
19004
|
dkim_signing_attributes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEmailIdentity.DkimSigningAttributesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
18843
19005
|
feedback_attributes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEmailIdentity.FeedbackAttributesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
18844
19006
|
mail_from_attributes: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnEmailIdentity.MailFromAttributesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
19007
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
18845
19008
|
) -> None:
|
|
18846
19009
|
"""Type checking stubs"""
|
|
18847
19010
|
pass
|
aws_cdk/aws_sqs/__init__.py
CHANGED
|
@@ -261,7 +261,7 @@ class CfnQueue(
|
|
|
261
261
|
:param fifo_throughput_limit: For high throughput for FIFO queues, specifies whether the FIFO queue throughput quota applies to the entire queue or per message group. Valid values are ``perQueue`` and ``perMessageGroupId`` . To enable high throughput for a FIFO queue, set this attribute to ``perMessageGroupId`` *and* set the ``DeduplicationScope`` attribute to ``messageGroup`` . If you set these attributes to anything other than these values, normal throughput is in effect and deduplication occurs as specified. For more information, see `High throughput for FIFO queues <https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/high-throughput-fifo.html>`_ and `Quotas related to messages <https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/quotas-messages.html>`_ in the *Amazon SQS Developer Guide* .
|
|
262
262
|
:param kms_data_key_reuse_period_seconds: The length of time in seconds for which Amazon SQS can reuse a data key to encrypt or decrypt messages before calling AWS KMS again. The value must be an integer between 60 (1 minute) and 86,400 (24 hours). The default is 300 (5 minutes). .. epigraph:: A shorter time period provides better security, but results in more calls to AWS KMS , which might incur charges after Free Tier. For more information, see `Encryption at rest <https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html#sqs-how-does-the-data-key-reuse-period-work>`_ in the *Amazon SQS Developer Guide* .
|
|
263
263
|
:param kms_master_key_id: The ID of an AWS Key Management Service (KMS) for Amazon SQS , or a custom KMS. To use the AWS managed KMS for Amazon SQS , specify a (default) alias ARN, alias name (for example ``alias/aws/sqs`` ), key ARN, or key ID. For more information, see the following: - `Encryption at rest <https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html>`_ in the *Amazon SQS Developer Guide* - `CreateQueue <https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_CreateQueue.html>`_ in the *Amazon SQS API Reference* - `Request Parameters <https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters>`_ in the *AWS Key Management Service API Reference* - The Key Management Service (KMS) section of the `Security best practices for AWS Key Management Service <https://docs.aws.amazon.com/kms/latest/developerguide/best-practices.html>`_ in the *AWS Key Management Service Developer Guide*
|
|
264
|
-
:param maximum_message_size: The limit of how many bytes that a message can contain before Amazon SQS rejects it. You can specify an integer
|
|
264
|
+
:param maximum_message_size: The limit of how many bytes that a message can contain before Amazon SQS rejects it. You can specify an integer from 1,024 bytes (1 KiB) to 1,048,576 bytes (1 MiB). Default: 1,048,576 bytes (1 MiB).
|
|
265
265
|
:param message_retention_period: The number of seconds that Amazon SQS retains a message. You can specify an integer value from ``60`` seconds (1 minute) to ``1,209,600`` seconds (14 days). The default value is ``345,600`` seconds (4 days).
|
|
266
266
|
:param queue_name: A name for the queue. To create a FIFO queue, the name of your FIFO queue must end with the ``.fifo`` suffix. For more information, see `Amazon SQS FIFO queues <https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-fifo-queues.html>`_ in the *Amazon SQS Developer Guide* . If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the queue name. For more information, see `Name type <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html>`_ in the *AWS CloudFormation User Guide* . .. epigraph:: If you specify a name, you can't perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.
|
|
267
267
|
:param receive_message_wait_time_seconds: Specifies the duration, in seconds, that the ReceiveMessage action call waits until a message is in the queue in order to include it in the response, rather than returning an empty response if a message isn't yet available. You can specify an integer from 1 to 20. Short polling is used as the default or when you specify 0 for this property. For more information, see `Consuming messages using long polling <https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-short-and-long-polling.html#sqs-long-polling>`_ in the *Amazon SQS Developer Guide* .
|
|
@@ -1032,7 +1032,7 @@ class CfnQueueProps:
|
|
|
1032
1032
|
:param fifo_throughput_limit: For high throughput for FIFO queues, specifies whether the FIFO queue throughput quota applies to the entire queue or per message group. Valid values are ``perQueue`` and ``perMessageGroupId`` . To enable high throughput for a FIFO queue, set this attribute to ``perMessageGroupId`` *and* set the ``DeduplicationScope`` attribute to ``messageGroup`` . If you set these attributes to anything other than these values, normal throughput is in effect and deduplication occurs as specified. For more information, see `High throughput for FIFO queues <https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/high-throughput-fifo.html>`_ and `Quotas related to messages <https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/quotas-messages.html>`_ in the *Amazon SQS Developer Guide* .
|
|
1033
1033
|
:param kms_data_key_reuse_period_seconds: The length of time in seconds for which Amazon SQS can reuse a data key to encrypt or decrypt messages before calling AWS KMS again. The value must be an integer between 60 (1 minute) and 86,400 (24 hours). The default is 300 (5 minutes). .. epigraph:: A shorter time period provides better security, but results in more calls to AWS KMS , which might incur charges after Free Tier. For more information, see `Encryption at rest <https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html#sqs-how-does-the-data-key-reuse-period-work>`_ in the *Amazon SQS Developer Guide* .
|
|
1034
1034
|
:param kms_master_key_id: The ID of an AWS Key Management Service (KMS) for Amazon SQS , or a custom KMS. To use the AWS managed KMS for Amazon SQS , specify a (default) alias ARN, alias name (for example ``alias/aws/sqs`` ), key ARN, or key ID. For more information, see the following: - `Encryption at rest <https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-server-side-encryption.html>`_ in the *Amazon SQS Developer Guide* - `CreateQueue <https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_CreateQueue.html>`_ in the *Amazon SQS API Reference* - `Request Parameters <https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters>`_ in the *AWS Key Management Service API Reference* - The Key Management Service (KMS) section of the `Security best practices for AWS Key Management Service <https://docs.aws.amazon.com/kms/latest/developerguide/best-practices.html>`_ in the *AWS Key Management Service Developer Guide*
|
|
1035
|
-
:param maximum_message_size: The limit of how many bytes that a message can contain before Amazon SQS rejects it. You can specify an integer
|
|
1035
|
+
:param maximum_message_size: The limit of how many bytes that a message can contain before Amazon SQS rejects it. You can specify an integer from 1,024 bytes (1 KiB) to 1,048,576 bytes (1 MiB). Default: 1,048,576 bytes (1 MiB).
|
|
1036
1036
|
:param message_retention_period: The number of seconds that Amazon SQS retains a message. You can specify an integer value from ``60`` seconds (1 minute) to ``1,209,600`` seconds (14 days). The default value is ``345,600`` seconds (4 days).
|
|
1037
1037
|
:param queue_name: A name for the queue. To create a FIFO queue, the name of your FIFO queue must end with the ``.fifo`` suffix. For more information, see `Amazon SQS FIFO queues <https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-fifo-queues.html>`_ in the *Amazon SQS Developer Guide* . If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the queue name. For more information, see `Name type <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html>`_ in the *AWS CloudFormation User Guide* . .. epigraph:: If you specify a name, you can't perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.
|
|
1038
1038
|
:param receive_message_wait_time_seconds: Specifies the duration, in seconds, that the ReceiveMessage action call waits until a message is in the queue in order to include it in the response, rather than returning an empty response if a message isn't yet available. You can specify an integer from 1 to 20. Short polling is used as the default or when you specify 0 for this property. For more information, see `Consuming messages using long polling <https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-short-and-long-polling.html#sqs-long-polling>`_ in the *Amazon SQS Developer Guide* .
|
|
@@ -1225,7 +1225,8 @@ class CfnQueueProps:
|
|
|
1225
1225
|
def maximum_message_size(self) -> typing.Optional[jsii.Number]:
|
|
1226
1226
|
'''The limit of how many bytes that a message can contain before Amazon SQS rejects it.
|
|
1227
1227
|
|
|
1228
|
-
You can specify an integer
|
|
1228
|
+
You can specify an integer from 1,024 bytes (1 KiB) to 1,048,576 bytes (1 MiB).
|
|
1229
|
+
Default: 1,048,576 bytes (1 MiB).
|
|
1229
1230
|
|
|
1230
1231
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sqs-queue.html#cfn-sqs-queue-maximummessagesize
|
|
1231
1232
|
'''
|
aws_cdk/aws_ssm/__init__.py
CHANGED
|
@@ -5299,7 +5299,7 @@ class CfnPatchBaseline(
|
|
|
5299
5299
|
:param approved_patches: A list of explicitly approved patches for the baseline. For information about accepted formats for lists of approved patches and rejected patches, see `Package name formats for approved and rejected patch lists <https://docs.aws.amazon.com/systems-manager/latest/userguide/patch-manager-approved-rejected-package-name-formats.html>`_ in the *AWS Systems Manager User Guide* .
|
|
5300
5300
|
:param approved_patches_compliance_level: Defines the compliance level for approved patches. When an approved patch is reported as missing, this value describes the severity of the compliance violation. The default value is ``UNSPECIFIED`` . Default: - "UNSPECIFIED"
|
|
5301
5301
|
:param approved_patches_enable_non_security: Indicates whether the list of approved patches includes non-security updates that should be applied to the managed nodes. The default value is ``false`` . Applies to Linux managed nodes only. Default: - false
|
|
5302
|
-
:param available_security_updates_compliance_status:
|
|
5302
|
+
:param available_security_updates_compliance_status: Indicates the status you want to assign to security patches that are available but not approved because they don't meet the installation criteria specified in the patch baseline. Example scenario: Security patches that you might want installed can be skipped if you have specified a long period to wait after a patch is released before installation. If an update to the patch is released during your specified waiting period, the waiting period for installing the patch starts over. If the waiting period is too long, multiple versions of the patch could be released but never installed. Supported for Windows Server managed nodes only.
|
|
5303
5303
|
:param default_baseline: Indicates whether this is the default baseline. AWS Systems Manager supports creating multiple default patch baselines. For example, you can create a default patch baseline for each operating system. Default: - false
|
|
5304
5304
|
:param description: A description of the patch baseline.
|
|
5305
5305
|
:param global_filters: A set of global filters used to include patches in the baseline. .. epigraph:: The ``GlobalFilters`` parameter can be configured only by using the AWS CLI or an AWS SDK. It can't be configured from the Patch Manager console, and its value isn't displayed in the console.
|
|
@@ -5470,7 +5470,7 @@ class CfnPatchBaseline(
|
|
|
5470
5470
|
def available_security_updates_compliance_status(
|
|
5471
5471
|
self,
|
|
5472
5472
|
) -> typing.Optional[builtins.str]:
|
|
5473
|
-
'''
|
|
5473
|
+
'''Indicates the status you want to assign to security patches that are available but not approved because they don't meet the installation criteria specified in the patch baseline.'''
|
|
5474
5474
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "availableSecurityUpdatesComplianceStatus"))
|
|
5475
5475
|
|
|
5476
5476
|
@available_security_updates_compliance_status.setter
|
|
@@ -6146,7 +6146,7 @@ class CfnPatchBaselineProps:
|
|
|
6146
6146
|
:param approved_patches: A list of explicitly approved patches for the baseline. For information about accepted formats for lists of approved patches and rejected patches, see `Package name formats for approved and rejected patch lists <https://docs.aws.amazon.com/systems-manager/latest/userguide/patch-manager-approved-rejected-package-name-formats.html>`_ in the *AWS Systems Manager User Guide* .
|
|
6147
6147
|
:param approved_patches_compliance_level: Defines the compliance level for approved patches. When an approved patch is reported as missing, this value describes the severity of the compliance violation. The default value is ``UNSPECIFIED`` . Default: - "UNSPECIFIED"
|
|
6148
6148
|
:param approved_patches_enable_non_security: Indicates whether the list of approved patches includes non-security updates that should be applied to the managed nodes. The default value is ``false`` . Applies to Linux managed nodes only. Default: - false
|
|
6149
|
-
:param available_security_updates_compliance_status:
|
|
6149
|
+
:param available_security_updates_compliance_status: Indicates the status you want to assign to security patches that are available but not approved because they don't meet the installation criteria specified in the patch baseline. Example scenario: Security patches that you might want installed can be skipped if you have specified a long period to wait after a patch is released before installation. If an update to the patch is released during your specified waiting period, the waiting period for installing the patch starts over. If the waiting period is too long, multiple versions of the patch could be released but never installed. Supported for Windows Server managed nodes only.
|
|
6150
6150
|
:param default_baseline: Indicates whether this is the default baseline. AWS Systems Manager supports creating multiple default patch baselines. For example, you can create a default patch baseline for each operating system. Default: - false
|
|
6151
6151
|
:param description: A description of the patch baseline.
|
|
6152
6152
|
:param global_filters: A set of global filters used to include patches in the baseline. .. epigraph:: The ``GlobalFilters`` parameter can be configured only by using the AWS CLI or an AWS SDK. It can't be configured from the Patch Manager console, and its value isn't displayed in the console.
|
|
@@ -6324,7 +6324,11 @@ class CfnPatchBaselineProps:
|
|
|
6324
6324
|
def available_security_updates_compliance_status(
|
|
6325
6325
|
self,
|
|
6326
6326
|
) -> typing.Optional[builtins.str]:
|
|
6327
|
-
'''
|
|
6327
|
+
'''Indicates the status you want to assign to security patches that are available but not approved because they don't meet the installation criteria specified in the patch baseline.
|
|
6328
|
+
|
|
6329
|
+
Example scenario: Security patches that you might want installed can be skipped if you have specified a long period to wait after a patch is released before installation. If an update to the patch is released during your specified waiting period, the waiting period for installing the patch starts over. If the waiting period is too long, multiple versions of the patch could be released but never installed.
|
|
6330
|
+
|
|
6331
|
+
Supported for Windows Server managed nodes only.
|
|
6328
6332
|
|
|
6329
6333
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-availablesecurityupdatescompliancestatus
|
|
6330
6334
|
'''
|