aws-cdk-lib 2.175.1__py3-none-any.whl → 2.177.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of aws-cdk-lib might be problematic. Click here for more details.

Files changed (64) hide show
  1. aws_cdk/__init__.py +26 -7
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.175.1.jsii.tgz → aws-cdk-lib@2.177.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigatewayv2_integrations/__init__.py +161 -9
  5. aws_cdk/aws_appconfig/__init__.py +106 -24
  6. aws_cdk/aws_appsync/__init__.py +4 -3
  7. aws_cdk/aws_backup/__init__.py +18 -84
  8. aws_cdk/aws_batch/__init__.py +4 -2
  9. aws_cdk/aws_bedrock/__init__.py +5395 -2508
  10. aws_cdk/aws_cleanrooms/__init__.py +77 -34
  11. aws_cdk/aws_cloudformation/__init__.py +4 -2
  12. aws_cdk/aws_cloudfront/__init__.py +12 -2
  13. aws_cdk/aws_cloudfront/experimental/__init__.py +1 -1
  14. aws_cdk/aws_cloudfront_origins/__init__.py +33 -2
  15. aws_cdk/aws_cloudwatch/__init__.py +53 -49
  16. aws_cdk/aws_codebuild/__init__.py +36 -0
  17. aws_cdk/aws_codepipeline/__init__.py +35 -0
  18. aws_cdk/aws_cognito/__init__.py +285 -253
  19. aws_cdk/aws_customerprofiles/__init__.py +1060 -0
  20. aws_cdk/aws_datazone/__init__.py +195 -125
  21. aws_cdk/aws_docdb/__init__.py +29 -9
  22. aws_cdk/aws_dynamodb/__init__.py +77 -58
  23. aws_cdk/aws_ec2/__init__.py +16 -11
  24. aws_cdk/aws_ecs/__init__.py +127 -43
  25. aws_cdk/aws_efs/__init__.py +5 -5
  26. aws_cdk/aws_eks/__init__.py +24 -3
  27. aws_cdk/aws_elasticloadbalancingv2/__init__.py +41 -5
  28. aws_cdk/aws_emrserverless/__init__.py +86 -0
  29. aws_cdk/aws_fms/__init__.py +42 -0
  30. aws_cdk/aws_gamelift/__init__.py +8 -10
  31. aws_cdk/aws_healthlake/__init__.py +36 -40
  32. aws_cdk/aws_iam/__init__.py +8 -0
  33. aws_cdk/aws_imagebuilder/__init__.py +62 -48
  34. aws_cdk/aws_lambda/__init__.py +21 -8
  35. aws_cdk/aws_lambda_event_sources/__init__.py +9 -9
  36. aws_cdk/aws_lex/__init__.py +105 -0
  37. aws_cdk/aws_logs/__init__.py +59 -59
  38. aws_cdk/aws_mediaconvert/__init__.py +7 -3
  39. aws_cdk/aws_notifications/__init__.py +1390 -0
  40. aws_cdk/aws_notificationscontacts/__init__.py +593 -0
  41. aws_cdk/aws_organizations/__init__.py +5 -9
  42. aws_cdk/aws_rds/__init__.py +99 -30
  43. aws_cdk/aws_redshift/__init__.py +9 -5
  44. aws_cdk/aws_resiliencehub/__init__.py +41 -0
  45. aws_cdk/aws_route53/__init__.py +4 -4
  46. aws_cdk/aws_route53_targets/__init__.py +15 -15
  47. aws_cdk/aws_s3/__init__.py +794 -5
  48. aws_cdk/aws_s3_notifications/__init__.py +5 -5
  49. aws_cdk/aws_s3tables/__init__.py +2 -2
  50. aws_cdk/aws_ses/__init__.py +25 -4
  51. aws_cdk/aws_sns/__init__.py +39 -0
  52. aws_cdk/aws_ssm/__init__.py +14 -7
  53. aws_cdk/aws_ssmquicksetup/__init__.py +84 -84
  54. aws_cdk/aws_sso/__init__.py +9 -5
  55. aws_cdk/aws_synthetics/__init__.py +105 -32
  56. aws_cdk/cloud_assembly_schema/__init__.py +63 -4
  57. aws_cdk/cx_api/__init__.py +69 -8
  58. {aws_cdk_lib-2.175.1.dist-info → aws_cdk_lib-2.177.0.dist-info}/METADATA +3 -3
  59. {aws_cdk_lib-2.175.1.dist-info → aws_cdk_lib-2.177.0.dist-info}/RECORD +63 -62
  60. aws_cdk/aws_iot1click/__init__.py +0 -1193
  61. {aws_cdk_lib-2.175.1.dist-info → aws_cdk_lib-2.177.0.dist-info}/LICENSE +0 -0
  62. {aws_cdk_lib-2.175.1.dist-info → aws_cdk_lib-2.177.0.dist-info}/NOTICE +0 -0
  63. {aws_cdk_lib-2.175.1.dist-info → aws_cdk_lib-2.177.0.dist-info}/WHEEL +0 -0
  64. {aws_cdk_lib-2.175.1.dist-info → aws_cdk_lib-2.177.0.dist-info}/top_level.txt +0 -0
@@ -126,7 +126,7 @@ class LambdaDestination(
126
126
  @jsii.member(jsii_name="bind")
127
127
  def bind(
128
128
  self,
129
- _scope: _constructs_77d1e7e8.Construct,
129
+ scope: _constructs_77d1e7e8.Construct,
130
130
  bucket: _IBucket_42e086fd,
131
131
  ) -> _BucketNotificationDestinationConfig_a4c4f83d:
132
132
  '''Registers this resource to receive notifications for the specified bucket.
@@ -135,14 +135,14 @@ class LambdaDestination(
135
135
  pair and the result will be cached, so there is no need to implement
136
136
  idempotency in each destination.
137
137
 
138
- :param _scope: -
138
+ :param scope: -
139
139
  :param bucket: -
140
140
  '''
141
141
  if __debug__:
142
142
  type_hints = typing.get_type_hints(_typecheckingstub__72fb0e43c5d0bdebbc9b643b327c5cd42f851dbe4c4a6ac53bb2849787b3adec)
143
- check_type(argname="argument _scope", value=_scope, expected_type=type_hints["_scope"])
143
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
144
144
  check_type(argname="argument bucket", value=bucket, expected_type=type_hints["bucket"])
145
- return typing.cast(_BucketNotificationDestinationConfig_a4c4f83d, jsii.invoke(self, "bind", [_scope, bucket]))
145
+ return typing.cast(_BucketNotificationDestinationConfig_a4c4f83d, jsii.invoke(self, "bind", [scope, bucket]))
146
146
 
147
147
 
148
148
  @jsii.implements(_IBucketNotificationDestination_ae5ca51a)
@@ -255,7 +255,7 @@ def _typecheckingstub__aa31f009d508c5e9716ef8081ccf63abb6866ffbf349417ea81abf6f6
255
255
  pass
256
256
 
257
257
  def _typecheckingstub__72fb0e43c5d0bdebbc9b643b327c5cd42f851dbe4c4a6ac53bb2849787b3adec(
258
- _scope: _constructs_77d1e7e8.Construct,
258
+ scope: _constructs_77d1e7e8.Construct,
259
259
  bucket: _IBucket_42e086fd,
260
260
  ) -> None:
261
261
  """Type checking stubs"""
@@ -86,7 +86,7 @@ class CfnTableBucket(
86
86
 
87
87
  For more information, see `Creating a table bucket <https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-buckets-create.html>`_ in the *Amazon Simple Storage Service User Guide* .
88
88
 
89
- - **Permissions** - You must have the ``s3:CreateTableBucket`` permission to use this operation.
89
+ - **Permissions** - You must have the ``s3tables:CreateTableBucket`` permission to use this operation.
90
90
 
91
91
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablebucket.html
92
92
  :cloudformationResource: AWS::S3Tables::TableBucket
@@ -312,7 +312,7 @@ class CfnTableBucketPolicy(
312
312
 
313
313
  For more information, see `Adding a table bucket policy <https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-bucket-policy.html#table-bucket-policy-add>`_ in the *Amazon Simple Storage Service User Guide* .
314
314
 
315
- - **Permissions** - You must have the ``s3:PutTableBucketPolicy`` permission to use this operation.
315
+ - **Permissions** - You must have the ``s3tables:PutTableBucketPolicy`` permission to use this operation.
316
316
 
317
317
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablebucketpolicy.html
318
318
  :cloudformationResource: AWS::S3Tables::TableBucketPolicy
@@ -772,7 +772,8 @@ class CfnConfigurationSet(
772
772
  suppressed_reasons=["suppressedReasons"]
773
773
  ),
774
774
  tracking_options=ses.CfnConfigurationSet.TrackingOptionsProperty(
775
- custom_redirect_domain="customRedirectDomain"
775
+ custom_redirect_domain="customRedirectDomain",
776
+ https_policy="httpsPolicy"
776
777
  ),
777
778
  vdm_options=ses.CfnConfigurationSet.VdmOptionsProperty(
778
779
  dashboard_options=ses.CfnConfigurationSet.DashboardOptionsProperty(
@@ -1370,13 +1371,17 @@ class CfnConfigurationSet(
1370
1371
  @jsii.data_type(
1371
1372
  jsii_type="aws-cdk-lib.aws_ses.CfnConfigurationSet.TrackingOptionsProperty",
1372
1373
  jsii_struct_bases=[],
1373
- name_mapping={"custom_redirect_domain": "customRedirectDomain"},
1374
+ name_mapping={
1375
+ "custom_redirect_domain": "customRedirectDomain",
1376
+ "https_policy": "httpsPolicy",
1377
+ },
1374
1378
  )
1375
1379
  class TrackingOptionsProperty:
1376
1380
  def __init__(
1377
1381
  self,
1378
1382
  *,
1379
1383
  custom_redirect_domain: typing.Optional[builtins.str] = None,
1384
+ https_policy: typing.Optional[builtins.str] = None,
1380
1385
  ) -> None:
1381
1386
  '''An object that defines the tracking options for a configuration set.
1382
1387
 
@@ -1387,6 +1392,7 @@ class CfnConfigurationSet(
1387
1392
  For more information, see `Configuring Custom Domains to Handle Open and Click Tracking <https://docs.aws.amazon.com/ses/latest/dg/configure-custom-open-click-domains.html>`_ in the *Amazon SES Developer Guide* .
1388
1393
 
1389
1394
  :param custom_redirect_domain: The custom subdomain that is used to redirect email recipients to the Amazon SES event tracking domain.
1395
+ :param https_policy: The https policy to use for tracking open and click events.
1390
1396
 
1391
1397
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationset-trackingoptions.html
1392
1398
  :exampleMetadata: fixture=_generated
@@ -1398,15 +1404,19 @@ class CfnConfigurationSet(
1398
1404
  from aws_cdk import aws_ses as ses
1399
1405
 
1400
1406
  tracking_options_property = ses.CfnConfigurationSet.TrackingOptionsProperty(
1401
- custom_redirect_domain="customRedirectDomain"
1407
+ custom_redirect_domain="customRedirectDomain",
1408
+ https_policy="httpsPolicy"
1402
1409
  )
1403
1410
  '''
1404
1411
  if __debug__:
1405
1412
  type_hints = typing.get_type_hints(_typecheckingstub__9cb3a7d8357d451a88f3bdd86fea15ef7d167ba61579a61a8e1fe9eb6bfa73f2)
1406
1413
  check_type(argname="argument custom_redirect_domain", value=custom_redirect_domain, expected_type=type_hints["custom_redirect_domain"])
1414
+ check_type(argname="argument https_policy", value=https_policy, expected_type=type_hints["https_policy"])
1407
1415
  self._values: typing.Dict[builtins.str, typing.Any] = {}
1408
1416
  if custom_redirect_domain is not None:
1409
1417
  self._values["custom_redirect_domain"] = custom_redirect_domain
1418
+ if https_policy is not None:
1419
+ self._values["https_policy"] = https_policy
1410
1420
 
1411
1421
  @builtins.property
1412
1422
  def custom_redirect_domain(self) -> typing.Optional[builtins.str]:
@@ -1417,6 +1427,15 @@ class CfnConfigurationSet(
1417
1427
  result = self._values.get("custom_redirect_domain")
1418
1428
  return typing.cast(typing.Optional[builtins.str], result)
1419
1429
 
1430
+ @builtins.property
1431
+ def https_policy(self) -> typing.Optional[builtins.str]:
1432
+ '''The https policy to use for tracking open and click events.
1433
+
1434
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationset-trackingoptions.html#cfn-ses-configurationset-trackingoptions-httpspolicy
1435
+ '''
1436
+ result = self._values.get("https_policy")
1437
+ return typing.cast(typing.Optional[builtins.str], result)
1438
+
1420
1439
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
1421
1440
  return isinstance(rhs, self.__class__) and rhs._values == self._values
1422
1441
 
@@ -2380,7 +2399,8 @@ class CfnConfigurationSetProps:
2380
2399
  suppressed_reasons=["suppressedReasons"]
2381
2400
  ),
2382
2401
  tracking_options=ses.CfnConfigurationSet.TrackingOptionsProperty(
2383
- custom_redirect_domain="customRedirectDomain"
2402
+ custom_redirect_domain="customRedirectDomain",
2403
+ https_policy="httpsPolicy"
2384
2404
  ),
2385
2405
  vdm_options=ses.CfnConfigurationSet.VdmOptionsProperty(
2386
2406
  dashboard_options=ses.CfnConfigurationSet.DashboardOptionsProperty(
@@ -16937,6 +16957,7 @@ def _typecheckingstub__8d9a9f4a0b048a750b42ffb05bbf2f29193ab82552fe268e651a27bc5
16937
16957
  def _typecheckingstub__9cb3a7d8357d451a88f3bdd86fea15ef7d167ba61579a61a8e1fe9eb6bfa73f2(
16938
16958
  *,
16939
16959
  custom_redirect_domain: typing.Optional[builtins.str] = None,
16960
+ https_policy: typing.Optional[builtins.str] = None,
16940
16961
  ) -> None:
16941
16962
  """Type checking stubs"""
16942
16963
  pass
@@ -1126,6 +1126,7 @@ class CfnTopic(
1126
1126
  success_feedback_sample_rate="successFeedbackSampleRate"
1127
1127
  )],
1128
1128
  display_name="displayName",
1129
+ fifo_throughput_scope="fifoThroughputScope",
1129
1130
  fifo_topic=False,
1130
1131
  kms_master_key_id="kmsMasterKeyId",
1131
1132
  signature_version="signatureVersion",
@@ -1152,6 +1153,7 @@ class CfnTopic(
1152
1153
  data_protection_policy: typing.Any = None,
1153
1154
  delivery_status_logging: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTopic.LoggingConfigProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
1154
1155
  display_name: typing.Optional[builtins.str] = None,
1156
+ fifo_throughput_scope: typing.Optional[builtins.str] = None,
1155
1157
  fifo_topic: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
1156
1158
  kms_master_key_id: typing.Optional[builtins.str] = None,
1157
1159
  signature_version: typing.Optional[builtins.str] = None,
@@ -1168,6 +1170,7 @@ class CfnTopic(
1168
1170
  :param data_protection_policy: The body of the policy document you want to use for this topic. You can only add one policy per topic. The policy must be in JSON string format. Length Constraints: Maximum length of 30,720.
1169
1171
  :param delivery_status_logging: The ``DeliveryStatusLogging`` configuration enables you to log the delivery status of messages sent from your Amazon SNS topic to subscribed endpoints with the following supported delivery protocols:. - HTTP - Amazon Kinesis Data Firehose - AWS Lambda - Platform application endpoint - Amazon Simple Queue Service Once configured, log entries are sent to Amazon CloudWatch Logs.
1170
1172
  :param display_name: The display name to use for an Amazon SNS topic with SMS subscriptions. The display name must be maximum 100 characters long, including hyphens (-), underscores (_), spaces, and tabs.
1173
+ :param fifo_throughput_scope:
1171
1174
  :param fifo_topic: Set to true to create a FIFO topic.
1172
1175
  :param kms_master_key_id: The ID of an AWS managed customer master key (CMK) for Amazon SNS or a custom CMK. For more information, see `Key terms <https://docs.aws.amazon.com/sns/latest/dg/sns-server-side-encryption.html#sse-key-terms>`_ . For more examples, see ``[KeyId](https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters)`` in the *AWS Key Management Service API Reference* . This property applies only to `server-side-encryption <https://docs.aws.amazon.com/sns/latest/dg/sns-server-side-encryption.html>`_ .
1173
1176
  :param signature_version: The signature version corresponds to the hashing algorithm used while creating the signature of the notifications, subscription confirmations, or unsubscribe confirmation messages sent by Amazon SNS. By default, ``SignatureVersion`` is set to ``1`` .
@@ -1186,6 +1189,7 @@ class CfnTopic(
1186
1189
  data_protection_policy=data_protection_policy,
1187
1190
  delivery_status_logging=delivery_status_logging,
1188
1191
  display_name=display_name,
1192
+ fifo_throughput_scope=fifo_throughput_scope,
1189
1193
  fifo_topic=fifo_topic,
1190
1194
  kms_master_key_id=kms_master_key_id,
1191
1195
  signature_version=signature_version,
@@ -1331,6 +1335,18 @@ class CfnTopic(
1331
1335
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1332
1336
  jsii.set(self, "displayName", value) # pyright: ignore[reportArgumentType]
1333
1337
 
1338
+ @builtins.property
1339
+ @jsii.member(jsii_name="fifoThroughputScope")
1340
+ def fifo_throughput_scope(self) -> typing.Optional[builtins.str]:
1341
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "fifoThroughputScope"))
1342
+
1343
+ @fifo_throughput_scope.setter
1344
+ def fifo_throughput_scope(self, value: typing.Optional[builtins.str]) -> None:
1345
+ if __debug__:
1346
+ type_hints = typing.get_type_hints(_typecheckingstub__f138e6ceb99033a1d226873b4907fde5a0fa94382f4183d377b2de329c67e644)
1347
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1348
+ jsii.set(self, "fifoThroughputScope", value) # pyright: ignore[reportArgumentType]
1349
+
1334
1350
  @builtins.property
1335
1351
  @jsii.member(jsii_name="fifoTopic")
1336
1352
  def fifo_topic(
@@ -2008,6 +2024,7 @@ class CfnTopicPolicyProps:
2008
2024
  "data_protection_policy": "dataProtectionPolicy",
2009
2025
  "delivery_status_logging": "deliveryStatusLogging",
2010
2026
  "display_name": "displayName",
2027
+ "fifo_throughput_scope": "fifoThroughputScope",
2011
2028
  "fifo_topic": "fifoTopic",
2012
2029
  "kms_master_key_id": "kmsMasterKeyId",
2013
2030
  "signature_version": "signatureVersion",
@@ -2026,6 +2043,7 @@ class CfnTopicProps:
2026
2043
  data_protection_policy: typing.Any = None,
2027
2044
  delivery_status_logging: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTopic.LoggingConfigProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
2028
2045
  display_name: typing.Optional[builtins.str] = None,
2046
+ fifo_throughput_scope: typing.Optional[builtins.str] = None,
2029
2047
  fifo_topic: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
2030
2048
  kms_master_key_id: typing.Optional[builtins.str] = None,
2031
2049
  signature_version: typing.Optional[builtins.str] = None,
@@ -2041,6 +2059,7 @@ class CfnTopicProps:
2041
2059
  :param data_protection_policy: The body of the policy document you want to use for this topic. You can only add one policy per topic. The policy must be in JSON string format. Length Constraints: Maximum length of 30,720.
2042
2060
  :param delivery_status_logging: The ``DeliveryStatusLogging`` configuration enables you to log the delivery status of messages sent from your Amazon SNS topic to subscribed endpoints with the following supported delivery protocols:. - HTTP - Amazon Kinesis Data Firehose - AWS Lambda - Platform application endpoint - Amazon Simple Queue Service Once configured, log entries are sent to Amazon CloudWatch Logs.
2043
2061
  :param display_name: The display name to use for an Amazon SNS topic with SMS subscriptions. The display name must be maximum 100 characters long, including hyphens (-), underscores (_), spaces, and tabs.
2062
+ :param fifo_throughput_scope:
2044
2063
  :param fifo_topic: Set to true to create a FIFO topic.
2045
2064
  :param kms_master_key_id: The ID of an AWS managed customer master key (CMK) for Amazon SNS or a custom CMK. For more information, see `Key terms <https://docs.aws.amazon.com/sns/latest/dg/sns-server-side-encryption.html#sse-key-terms>`_ . For more examples, see ``[KeyId](https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters)`` in the *AWS Key Management Service API Reference* . This property applies only to `server-side-encryption <https://docs.aws.amazon.com/sns/latest/dg/sns-server-side-encryption.html>`_ .
2046
2065
  :param signature_version: The signature version corresponds to the hashing algorithm used while creating the signature of the notifications, subscription confirmations, or unsubscribe confirmation messages sent by Amazon SNS. By default, ``SignatureVersion`` is set to ``1`` .
@@ -2074,6 +2093,7 @@ class CfnTopicProps:
2074
2093
  success_feedback_sample_rate="successFeedbackSampleRate"
2075
2094
  )],
2076
2095
  display_name="displayName",
2096
+ fifo_throughput_scope="fifoThroughputScope",
2077
2097
  fifo_topic=False,
2078
2098
  kms_master_key_id="kmsMasterKeyId",
2079
2099
  signature_version="signatureVersion",
@@ -2096,6 +2116,7 @@ class CfnTopicProps:
2096
2116
  check_type(argname="argument data_protection_policy", value=data_protection_policy, expected_type=type_hints["data_protection_policy"])
2097
2117
  check_type(argname="argument delivery_status_logging", value=delivery_status_logging, expected_type=type_hints["delivery_status_logging"])
2098
2118
  check_type(argname="argument display_name", value=display_name, expected_type=type_hints["display_name"])
2119
+ check_type(argname="argument fifo_throughput_scope", value=fifo_throughput_scope, expected_type=type_hints["fifo_throughput_scope"])
2099
2120
  check_type(argname="argument fifo_topic", value=fifo_topic, expected_type=type_hints["fifo_topic"])
2100
2121
  check_type(argname="argument kms_master_key_id", value=kms_master_key_id, expected_type=type_hints["kms_master_key_id"])
2101
2122
  check_type(argname="argument signature_version", value=signature_version, expected_type=type_hints["signature_version"])
@@ -2114,6 +2135,8 @@ class CfnTopicProps:
2114
2135
  self._values["delivery_status_logging"] = delivery_status_logging
2115
2136
  if display_name is not None:
2116
2137
  self._values["display_name"] = display_name
2138
+ if fifo_throughput_scope is not None:
2139
+ self._values["fifo_throughput_scope"] = fifo_throughput_scope
2117
2140
  if fifo_topic is not None:
2118
2141
  self._values["fifo_topic"] = fifo_topic
2119
2142
  if kms_master_key_id is not None:
@@ -2198,6 +2221,14 @@ class CfnTopicProps:
2198
2221
  result = self._values.get("display_name")
2199
2222
  return typing.cast(typing.Optional[builtins.str], result)
2200
2223
 
2224
+ @builtins.property
2225
+ def fifo_throughput_scope(self) -> typing.Optional[builtins.str]:
2226
+ '''
2227
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-topic.html#cfn-sns-topic-fifothroughputscope
2228
+ '''
2229
+ result = self._values.get("fifo_throughput_scope")
2230
+ return typing.cast(typing.Optional[builtins.str], result)
2231
+
2201
2232
  @builtins.property
2202
2233
  def fifo_topic(
2203
2234
  self,
@@ -6813,6 +6844,7 @@ def _typecheckingstub__3c3e689eaa6b740299fa6db2e53acc51021bc5deb0a8dd6d7bc29e8a3
6813
6844
  data_protection_policy: typing.Any = None,
6814
6845
  delivery_status_logging: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTopic.LoggingConfigProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
6815
6846
  display_name: typing.Optional[builtins.str] = None,
6847
+ fifo_throughput_scope: typing.Optional[builtins.str] = None,
6816
6848
  fifo_topic: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
6817
6849
  kms_master_key_id: typing.Optional[builtins.str] = None,
6818
6850
  signature_version: typing.Optional[builtins.str] = None,
@@ -6866,6 +6898,12 @@ def _typecheckingstub__7e672f7b6cfea2a409a715963f8ef1b01848153bb4867f8ad868e0bcb
6866
6898
  """Type checking stubs"""
6867
6899
  pass
6868
6900
 
6901
+ def _typecheckingstub__f138e6ceb99033a1d226873b4907fde5a0fa94382f4183d377b2de329c67e644(
6902
+ value: typing.Optional[builtins.str],
6903
+ ) -> None:
6904
+ """Type checking stubs"""
6905
+ pass
6906
+
6869
6907
  def _typecheckingstub__2a91ed56c1865e9ea5cd3d8d5ffef0aab07b45ce41c2580607fd141166a194ea(
6870
6908
  value: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]],
6871
6909
  ) -> None:
@@ -7017,6 +7055,7 @@ def _typecheckingstub__39eaeffb1fed865d99c7cf51cdf720d8471aec20b2163161ef50035fb
7017
7055
  data_protection_policy: typing.Any = None,
7018
7056
  delivery_status_logging: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnTopic.LoggingConfigProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
7019
7057
  display_name: typing.Optional[builtins.str] = None,
7058
+ fifo_throughput_scope: typing.Optional[builtins.str] = None,
7020
7059
  fifo_topic: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
7021
7060
  kms_master_key_id: typing.Optional[builtins.str] = None,
7022
7061
  signature_version: typing.Optional[builtins.str] = None,
@@ -332,7 +332,7 @@ class CfnAssociation(
332
332
  :param name: The name of the SSM document that contains the configuration information for the instance. You can specify ``Command`` or ``Automation`` documents. The documents can be AWS -predefined documents, documents you created, or a document that is shared with you from another account. For SSM documents that are shared with you from other AWS accounts , you must specify the complete SSM document ARN, in the following format: ``arn:partition:ssm:region:account-id:document/document-name`` For example: ``arn:aws:ssm:us-east-2:12345678912:document/My-Shared-Document`` For AWS -predefined documents and SSM documents you created in your account, you only need to specify the document name. For example, ``AWS -ApplyPatchBaseline`` or ``My-Document`` .
333
333
  :param apply_only_at_cron_interval: By default, when you create a new association, the system runs it immediately after it is created and then according to the schedule you specified. Specify this option if you don't want an association to run immediately after you create it. This parameter is not supported for rate expressions.
334
334
  :param association_name: Specify a descriptive name for the association.
335
- :param automation_target_parameter_name: Choose the parameter that will define how your automation will branch out. This target is required for associations that use an Automation runbook and target resources by using rate controls. Automation is a capability of AWS Systems Manager .
335
+ :param automation_target_parameter_name: Choose the parameter that will define how your automation will branch out. This target is required for associations that use an Automation runbook and target resources by using rate controls. Automation is a tool in AWS Systems Manager .
336
336
  :param calendar_names: The names or Amazon Resource Names (ARNs) of the Change Calendar type documents your associations are gated under. The associations only run when that Change Calendar is open. For more information, see `AWS Systems Manager Change Calendar <https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-change-calendar>`_ .
337
337
  :param compliance_severity: The severity level that is assigned to the association.
338
338
  :param document_version: The version of the SSM document to associate with the target. .. epigraph:: Note the following important information. - State Manager doesn't support running associations that use a new version of a document if that document is shared from another account. State Manager always runs the ``default`` version of a document if shared from another account, even though the Systems Manager console shows that a new version was processed. If you want to run an association using a new version of a document shared form another account, you must set the document version to ``default`` . - ``DocumentVersion`` is not valid for documents owned by AWS , such as ``AWS-RunPatchBaseline`` or ``AWS-UpdateSSMAgent`` . If you specify ``DocumentVersion`` for an AWS document, the system returns the following error: "Error occurred during operation 'CreateAssociation'." (RequestToken: , HandlerErrorCode: GeneralServiceException).
@@ -937,7 +937,7 @@ class CfnAssociationProps:
937
937
  :param name: The name of the SSM document that contains the configuration information for the instance. You can specify ``Command`` or ``Automation`` documents. The documents can be AWS -predefined documents, documents you created, or a document that is shared with you from another account. For SSM documents that are shared with you from other AWS accounts , you must specify the complete SSM document ARN, in the following format: ``arn:partition:ssm:region:account-id:document/document-name`` For example: ``arn:aws:ssm:us-east-2:12345678912:document/My-Shared-Document`` For AWS -predefined documents and SSM documents you created in your account, you only need to specify the document name. For example, ``AWS -ApplyPatchBaseline`` or ``My-Document`` .
938
938
  :param apply_only_at_cron_interval: By default, when you create a new association, the system runs it immediately after it is created and then according to the schedule you specified. Specify this option if you don't want an association to run immediately after you create it. This parameter is not supported for rate expressions.
939
939
  :param association_name: Specify a descriptive name for the association.
940
- :param automation_target_parameter_name: Choose the parameter that will define how your automation will branch out. This target is required for associations that use an Automation runbook and target resources by using rate controls. Automation is a capability of AWS Systems Manager .
940
+ :param automation_target_parameter_name: Choose the parameter that will define how your automation will branch out. This target is required for associations that use an Automation runbook and target resources by using rate controls. Automation is a tool in AWS Systems Manager .
941
941
  :param calendar_names: The names or Amazon Resource Names (ARNs) of the Change Calendar type documents your associations are gated under. The associations only run when that Change Calendar is open. For more information, see `AWS Systems Manager Change Calendar <https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-change-calendar>`_ .
942
942
  :param compliance_severity: The severity level that is assigned to the association.
943
943
  :param document_version: The version of the SSM document to associate with the target. .. epigraph:: Note the following important information. - State Manager doesn't support running associations that use a new version of a document if that document is shared from another account. State Manager always runs the ``default`` version of a document if shared from another account, even though the Systems Manager console shows that a new version was processed. If you want to run an association using a new version of a document shared form another account, you must set the document version to ``default`` . - ``DocumentVersion`` is not valid for documents owned by AWS , such as ``AWS-RunPatchBaseline`` or ``AWS-UpdateSSMAgent`` . If you specify ``DocumentVersion`` for an AWS document, the system returns the following error: "Error occurred during operation 'CreateAssociation'." (RequestToken: , HandlerErrorCode: GeneralServiceException).
@@ -1093,7 +1093,7 @@ class CfnAssociationProps:
1093
1093
  def automation_target_parameter_name(self) -> typing.Optional[builtins.str]:
1094
1094
  '''Choose the parameter that will define how your automation will branch out.
1095
1095
 
1096
- This target is required for associations that use an Automation runbook and target resources by using rate controls. Automation is a capability of AWS Systems Manager .
1096
+ This target is required for associations that use an Automation runbook and target resources by using rate controls. Automation is a tool in AWS Systems Manager .
1097
1097
 
1098
1098
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-automationtargetparametername
1099
1099
  '''
@@ -1285,7 +1285,7 @@ class CfnDocument(
1285
1285
  ):
1286
1286
  '''The ``AWS::SSM::Document`` resource creates a Systems Manager (SSM) document in AWS Systems Manager .
1287
1287
 
1288
- This document d efines the actions that Systems Manager performs on your AWS resources.
1288
+ This document defines the actions that Systems Manager performs on your AWS resources.
1289
1289
  .. epigraph::
1290
1290
 
1291
1291
  This resource does not support AWS CloudFormation drift detection.
@@ -4700,6 +4700,9 @@ class CfnParameter(
4700
4700
  To add, update, or remove tags during stack update, you must have IAM permissions for both ``ssm:AddTagsToResource`` and ``ssm:RemoveTagsFromResource`` . For more information, see `Managing Access Using Policies <https://docs.aws.amazon.com/systems-manager/latest/userguide/security-iam.html#security_iam_access-manage>`_ in the *AWS Systems Manager User Guide* .
4701
4701
 
4702
4702
  For information about valid values for parameters, see `About requirements and constraints for parameter names <https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-su-create.html#sysman-parameter-name-constraints>`_ in the *AWS Systems Manager User Guide* and `PutParameter <https://docs.aws.amazon.com/systems-manager/latest/APIReference/API_PutParameter.html>`_ in the *AWS Systems Manager API Reference* .
4703
+ .. epigraph::
4704
+
4705
+ Parameters of type ``SecureString`` are not supported by AWS CloudFormation .
4703
4706
 
4704
4707
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html
4705
4708
  :cloudformationResource: AWS::SSM::Parameter
@@ -4746,7 +4749,7 @@ class CfnParameter(
4746
4749
  '''
4747
4750
  :param scope: Scope in which this resource is defined.
4748
4751
  :param id: Construct identifier for this resource (unique in its scope).
4749
- :param type: The type of parameter.
4752
+ :param type: The type of parameter. .. epigraph:: Parameters of type ``SecureString`` are not supported by AWS CloudFormation .
4750
4753
  :param value: The parameter value. .. epigraph:: If type is ``StringList`` , the system returns a comma-separated string with no spaces between commas in the ``Value`` field.
4751
4754
  :param allowed_pattern: A regular expression used to validate the parameter value. For example, for ``String`` types with values restricted to numbers, you can specify the following: ``AllowedPattern=^\\d+$``
4752
4755
  :param data_type: The data type of the parameter, such as ``text`` or ``aws:ec2:image`` . The default is ``text`` .
@@ -4987,7 +4990,7 @@ class CfnParameterProps:
4987
4990
  ) -> None:
4988
4991
  '''Properties for defining a ``CfnParameter``.
4989
4992
 
4990
- :param type: The type of parameter.
4993
+ :param type: The type of parameter. .. epigraph:: Parameters of type ``SecureString`` are not supported by AWS CloudFormation .
4991
4994
  :param value: The parameter value. .. epigraph:: If type is ``StringList`` , the system returns a comma-separated string with no spaces between commas in the ``Value`` field.
4992
4995
  :param allowed_pattern: A regular expression used to validate the parameter value. For example, for ``String`` types with values restricted to numbers, you can specify the following: ``AllowedPattern=^\\d+$``
4993
4996
  :param data_type: The data type of the parameter, such as ``text`` or ``aws:ec2:image`` . The default is ``text`` .
@@ -5056,6 +5059,10 @@ class CfnParameterProps:
5056
5059
  def type(self) -> builtins.str:
5057
5060
  '''The type of parameter.
5058
5061
 
5062
+ .. epigraph::
5063
+
5064
+ Parameters of type ``SecureString`` are not supported by AWS CloudFormation .
5065
+
5059
5066
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type
5060
5067
  '''
5061
5068
  result = self._values.get("type")
@@ -7210,7 +7217,7 @@ class CfnResourcePolicy(
7210
7217
  ):
7211
7218
  '''Creates or updates a Systems Manager resource policy.
7212
7219
 
7213
- A resource policy helps you to define the IAM entity (for example, an AWS account ) that can manage your Systems Manager resources. Currently, ``OpsItemGroup`` is the only resource that supports Systems Manager resource policies. The resource policy for ``OpsItemGroup`` enables AWS accounts to view and interact with OpsCenter operational work items (OpsItems). OpsCenter is a capability of Systems Manager .
7220
+ A resource policy helps you to define the IAM entity (for example, an AWS account ) that can manage your Systems Manager resources. Currently, ``OpsItemGroup`` is the only resource that supports Systems Manager resource policies. The resource policy for ``OpsItemGroup`` enables AWS accounts to view and interact with OpsCenter operational work items (OpsItems). OpsCenter is a tool in Systems Manager .
7214
7221
 
7215
7222
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcepolicy.html
7216
7223
  :cloudformationResource: AWS::SSM::ResourcePolicy