aws-cdk-lib 2.176.0__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.
- aws_cdk/__init__.py +11 -1
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.176.0.jsii.tgz → aws-cdk-lib@2.177.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigatewayv2_integrations/__init__.py +2 -2
- aws_cdk/aws_appsync/__init__.py +4 -3
- aws_cdk/aws_batch/__init__.py +4 -2
- aws_cdk/aws_bedrock/__init__.py +5395 -2508
- aws_cdk/aws_cloudfront/__init__.py +12 -2
- aws_cdk/aws_cloudfront_origins/__init__.py +33 -2
- aws_cdk/aws_codepipeline/__init__.py +35 -0
- aws_cdk/aws_cognito/__init__.py +162 -139
- aws_cdk/aws_customerprofiles/__init__.py +3 -3
- aws_cdk/aws_datazone/__init__.py +195 -125
- aws_cdk/aws_ec2/__init__.py +5 -3
- aws_cdk/aws_ecs/__init__.py +27 -8
- aws_cdk/aws_efs/__init__.py +5 -5
- aws_cdk/aws_eks/__init__.py +24 -3
- aws_cdk/aws_emrserverless/__init__.py +86 -0
- aws_cdk/aws_fms/__init__.py +42 -0
- aws_cdk/aws_gamelift/__init__.py +8 -10
- aws_cdk/aws_iam/__init__.py +8 -0
- aws_cdk/aws_imagebuilder/__init__.py +62 -48
- aws_cdk/aws_lambda/__init__.py +13 -0
- aws_cdk/aws_logs/__init__.py +59 -59
- aws_cdk/aws_notifications/__init__.py +1390 -0
- aws_cdk/aws_notificationscontacts/__init__.py +593 -0
- aws_cdk/aws_rds/__init__.py +16 -22
- aws_cdk/aws_redshift/__init__.py +9 -5
- aws_cdk/aws_route53/__init__.py +4 -4
- aws_cdk/aws_route53_targets/__init__.py +15 -15
- aws_cdk/aws_s3/__init__.py +789 -0
- aws_cdk/aws_s3_notifications/__init__.py +5 -5
- aws_cdk/aws_s3tables/__init__.py +2 -2
- aws_cdk/aws_sns/__init__.py +39 -0
- aws_cdk/aws_ssm/__init__.py +5 -5
- aws_cdk/aws_synthetics/__init__.py +105 -32
- aws_cdk/cloud_assembly_schema/__init__.py +63 -4
- aws_cdk/cx_api/__init__.py +44 -4
- {aws_cdk_lib-2.176.0.dist-info → aws_cdk_lib-2.177.0.dist-info}/METADATA +3 -3
- {aws_cdk_lib-2.176.0.dist-info → aws_cdk_lib-2.177.0.dist-info}/RECORD +44 -42
- {aws_cdk_lib-2.176.0.dist-info → aws_cdk_lib-2.177.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.176.0.dist-info → aws_cdk_lib-2.177.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.176.0.dist-info → aws_cdk_lib-2.177.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.176.0.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
|
-
|
|
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
|
|
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
|
|
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", [
|
|
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
|
-
|
|
258
|
+
scope: _constructs_77d1e7e8.Construct,
|
|
259
259
|
bucket: _IBucket_42e086fd,
|
|
260
260
|
) -> None:
|
|
261
261
|
"""Type checking stubs"""
|
aws_cdk/aws_s3tables/__init__.py
CHANGED
|
@@ -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 ``
|
|
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 ``
|
|
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
|
aws_cdk/aws_sns/__init__.py
CHANGED
|
@@ -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,
|
aws_cdk/aws_ssm/__init__.py
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
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.
|
|
@@ -7217,7 +7217,7 @@ class CfnResourcePolicy(
|
|
|
7217
7217
|
):
|
|
7218
7218
|
'''Creates or updates a Systems Manager resource policy.
|
|
7219
7219
|
|
|
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
|
|
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 .
|
|
7221
7221
|
|
|
7222
7222
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcepolicy.html
|
|
7223
7223
|
:cloudformationResource: AWS::SSM::ResourcePolicy
|