aws-cdk-lib 2.206.0__py3-none-any.whl → 2.208.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 +96 -15
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.206.0.jsii.tgz → aws-cdk-lib@2.208.0.jsii.tgz} +0 -0
- aws_cdk/aws_aiops/__init__.py +70 -76
- aws_cdk/aws_amazonmq/__init__.py +8 -18
- aws_cdk/aws_appstream/__init__.py +36 -4
- aws_cdk/aws_autoscaling/__init__.py +20 -0
- aws_cdk/aws_bedrock/__init__.py +317 -142
- aws_cdk/aws_certificatemanager/__init__.py +48 -3
- aws_cdk/aws_cleanrooms/__init__.py +6 -2
- aws_cdk/aws_cloudformation/__init__.py +28 -15
- aws_cdk/aws_cloudfront/__init__.py +12 -2
- aws_cdk/aws_cloudwatch/__init__.py +574 -33
- aws_cdk/aws_connect/__init__.py +107 -3
- aws_cdk/aws_customerprofiles/__init__.py +27 -22
- aws_cdk/aws_datasync/__init__.py +14 -15
- aws_cdk/aws_docdb/__init__.py +5 -3
- aws_cdk/aws_ec2/__init__.py +59 -13
- aws_cdk/aws_ecs/__init__.py +185 -47
- aws_cdk/aws_events/__init__.py +142 -0
- aws_cdk/aws_gamelift/__init__.py +2 -2
- aws_cdk/aws_guardduty/__init__.py +86 -0
- aws_cdk/aws_iotsitewise/__init__.py +13 -9
- aws_cdk/aws_kinesisfirehose/__init__.py +377 -4
- aws_cdk/aws_kms/__init__.py +19 -17
- aws_cdk/aws_logs/__init__.py +4775 -764
- aws_cdk/aws_mediapackagev2/__init__.py +950 -48
- aws_cdk/aws_omics/__init__.py +13 -10
- aws_cdk/aws_opsworkscm/__init__.py +2 -4
- aws_cdk/aws_quicksight/__init__.py +111 -4
- aws_cdk/aws_rds/__init__.py +358 -27
- aws_cdk/aws_s3/__init__.py +781 -8
- aws_cdk/aws_s3express/__init__.py +61 -3
- aws_cdk/aws_s3tables/__init__.py +254 -0
- aws_cdk/aws_sagemaker/__init__.py +527 -140
- aws_cdk/aws_ssm/__init__.py +106 -33
- aws_cdk/aws_transfer/__init__.py +70 -11
- aws_cdk/aws_wisdom/__init__.py +1185 -100
- {aws_cdk_lib-2.206.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.206.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/RECORD +44 -44
- {aws_cdk_lib-2.206.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.206.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.206.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.206.0.dist-info → aws_cdk_lib-2.208.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_ssm/__init__.py
CHANGED
|
@@ -352,7 +352,7 @@ class CfnAssociation(
|
|
|
352
352
|
: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>`_ in the *AWS Systems Manager User Guide* .
|
|
353
353
|
:param compliance_severity: The severity level that is assigned to the association.
|
|
354
354
|
: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).
|
|
355
|
-
:param instance_id:
|
|
355
|
+
:param instance_id: .. epigraph:: ``InstanceId`` has been deprecated. To specify an instance ID for an association, use the ``Targets`` parameter. If you use the parameter ``InstanceId`` , you cannot use the parameters ``AssociationName`` , ``DocumentVersion`` , ``MaxErrors`` , ``MaxConcurrency`` , ``OutputLocation`` , or ``ScheduleExpression`` . To use these parameters, you must use the ``Targets`` parameter. .. epigraph:: Note that in some examples later in this page, ``InstanceIds`` is used as the tag-key name in a ``Targets`` filter. ``InstanceId`` is not used as a parameter. The ID of the instance that the SSM document is associated with. You must specify the ``InstanceId`` or ``Targets`` property.
|
|
356
356
|
:param max_concurrency: The maximum number of targets allowed to run the association at the same time. You can specify a number, for example 10, or a percentage of the target set, for example 10%. The default value is 100%, which means all targets run the association at the same time. If a new managed node starts and attempts to run an association while Systems Manager is running ``MaxConcurrency`` associations, the association is allowed to run. During the next association interval, the new managed node will process its association within the limit specified for ``MaxConcurrency`` .
|
|
357
357
|
:param max_errors: The number of errors that are allowed before the system stops sending requests to run the association on additional targets. You can specify either an absolute number of errors, for example 10, or a percentage of the target set, for example 10%. If you specify 3, for example, the system stops sending requests when the fourth error is received. If you specify 0, then the system stops sending requests after the first error is returned. If you run an association on 50 managed nodes and set ``MaxError`` to 10%, then the system stops sending the request when the sixth error is received. Executions that are already running an association when ``MaxErrors`` is reached are allowed to complete, but some of these executions may fail as well. If you need to ensure that there won't be more than max-errors failed executions, set ``MaxConcurrency`` to 1 so that executions proceed one at a time.
|
|
358
358
|
:param output_location: An Amazon Simple Storage Service (Amazon S3) bucket where you want to store the output details of the request.
|
|
@@ -535,7 +535,9 @@ class CfnAssociation(
|
|
|
535
535
|
@builtins.property
|
|
536
536
|
@jsii.member(jsii_name="instanceId")
|
|
537
537
|
def instance_id(self) -> typing.Optional[builtins.str]:
|
|
538
|
-
'''
|
|
538
|
+
'''.. epigraph::
|
|
539
|
+
|
|
540
|
+
``InstanceId`` has been deprecated.'''
|
|
539
541
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "instanceId"))
|
|
540
542
|
|
|
541
543
|
@instance_id.setter
|
|
@@ -957,7 +959,7 @@ class CfnAssociationProps:
|
|
|
957
959
|
: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>`_ in the *AWS Systems Manager User Guide* .
|
|
958
960
|
:param compliance_severity: The severity level that is assigned to the association.
|
|
959
961
|
: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).
|
|
960
|
-
:param instance_id:
|
|
962
|
+
:param instance_id: .. epigraph:: ``InstanceId`` has been deprecated. To specify an instance ID for an association, use the ``Targets`` parameter. If you use the parameter ``InstanceId`` , you cannot use the parameters ``AssociationName`` , ``DocumentVersion`` , ``MaxErrors`` , ``MaxConcurrency`` , ``OutputLocation`` , or ``ScheduleExpression`` . To use these parameters, you must use the ``Targets`` parameter. .. epigraph:: Note that in some examples later in this page, ``InstanceIds`` is used as the tag-key name in a ``Targets`` filter. ``InstanceId`` is not used as a parameter. The ID of the instance that the SSM document is associated with. You must specify the ``InstanceId`` or ``Targets`` property.
|
|
961
963
|
:param max_concurrency: The maximum number of targets allowed to run the association at the same time. You can specify a number, for example 10, or a percentage of the target set, for example 10%. The default value is 100%, which means all targets run the association at the same time. If a new managed node starts and attempts to run an association while Systems Manager is running ``MaxConcurrency`` associations, the association is allowed to run. During the next association interval, the new managed node will process its association within the limit specified for ``MaxConcurrency`` .
|
|
962
964
|
:param max_errors: The number of errors that are allowed before the system stops sending requests to run the association on additional targets. You can specify either an absolute number of errors, for example 10, or a percentage of the target set, for example 10%. If you specify 3, for example, the system stops sending requests when the fourth error is received. If you specify 0, then the system stops sending requests after the first error is returned. If you run an association on 50 managed nodes and set ``MaxError`` to 10%, then the system stops sending the request when the sixth error is received. Executions that are already running an association when ``MaxErrors`` is reached are allowed to complete, but some of these executions may fail as well. If you need to ensure that there won't be more than max-errors failed executions, set ``MaxConcurrency`` to 1 so that executions proceed one at a time.
|
|
963
965
|
:param output_location: An Amazon Simple Storage Service (Amazon S3) bucket where you want to store the output details of the request.
|
|
@@ -1154,12 +1156,16 @@ class CfnAssociationProps:
|
|
|
1154
1156
|
|
|
1155
1157
|
@builtins.property
|
|
1156
1158
|
def instance_id(self) -> typing.Optional[builtins.str]:
|
|
1157
|
-
'''
|
|
1159
|
+
'''.. epigraph::
|
|
1160
|
+
|
|
1161
|
+
``InstanceId`` has been deprecated.
|
|
1158
1162
|
|
|
1159
|
-
|
|
1163
|
+
To specify an instance ID for an association, use the ``Targets`` parameter. If you use the parameter ``InstanceId`` , you cannot use the parameters ``AssociationName`` , ``DocumentVersion`` , ``MaxErrors`` , ``MaxConcurrency`` , ``OutputLocation`` , or ``ScheduleExpression`` . To use these parameters, you must use the ``Targets`` parameter.
|
|
1160
1164
|
.. epigraph::
|
|
1161
1165
|
|
|
1162
|
-
|
|
1166
|
+
Note that in some examples later in this page, ``InstanceIds`` is used as the tag-key name in a ``Targets`` filter. ``InstanceId`` is not used as a parameter.
|
|
1167
|
+
|
|
1168
|
+
The ID of the instance that the SSM document is associated with. You must specify the ``InstanceId`` or ``Targets`` property.
|
|
1163
1169
|
|
|
1164
1170
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-instanceid
|
|
1165
1171
|
'''
|
|
@@ -3048,14 +3054,14 @@ class CfnMaintenanceWindowTask(
|
|
|
3048
3054
|
:param window_id: The ID of the maintenance window where the task is registered.
|
|
3049
3055
|
:param cutoff_behavior: The specification for whether tasks should continue to run after the cutoff time specified in the maintenance windows is reached.
|
|
3050
3056
|
:param description: A description of the task.
|
|
3051
|
-
:param logging_info:
|
|
3057
|
+
:param logging_info: .. epigraph:: ``LoggingInfo`` has been deprecated. To specify an Amazon S3 bucket to contain logs for Run Command tasks, instead use the ``OutputS3BucketName`` and ``OutputS3KeyPrefix`` options in the ``TaskInvocationParameters`` structure. For information about how Systems Manager handles these options for the supported maintenance window task types, see `AWS ::SSM::MaintenanceWindowTask MaintenanceWindowRunCommandParameters <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html>`_ . Information about an Amazon S3 bucket to write Run Command task-level logs to.
|
|
3052
3058
|
:param max_concurrency: The maximum number of targets this task can be run for, in parallel. .. epigraph:: Although this element is listed as "Required: No", a value can be omitted only when you are registering or updating a `targetless task <https://docs.aws.amazon.com/systems-manager/latest/userguide/maintenance-windows-targetless-tasks.html>`_ You must provide a value in all other cases. For maintenance window tasks without a target specified, you can't supply a value for this option. Instead, the system inserts a placeholder value of ``1`` . This value doesn't affect the running of your task.
|
|
3053
3059
|
:param max_errors: The maximum number of errors allowed before this task stops being scheduled. .. epigraph:: Although this element is listed as "Required: No", a value can be omitted only when you are registering or updating a `targetless task <https://docs.aws.amazon.com/systems-manager/latest/userguide/maintenance-windows-targetless-tasks.html>`_ You must provide a value in all other cases. For maintenance window tasks without a target specified, you can't supply a value for this option. Instead, the system inserts a placeholder value of ``1`` . This value doesn't affect the running of your task.
|
|
3054
3060
|
:param name: The task name.
|
|
3055
3061
|
:param service_role_arn: The Amazon Resource Name (ARN) of the IAM service role for AWS Systems Manager to assume when running a maintenance window task. If you do not specify a service role ARN, Systems Manager uses a service-linked role in your account. If no appropriate service-linked role for Systems Manager exists in your account, it is created when you run ``RegisterTaskWithMaintenanceWindow`` . However, for an improved security posture, we strongly recommend creating a custom policy and custom service role for running your maintenance window tasks. The policy can be crafted to provide only the permissions needed for your particular maintenance window tasks. For more information, see `Setting up Maintenance Windows <https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-maintenance-permissions.html>`_ in the in the *AWS Systems Manager User Guide* .
|
|
3056
3062
|
:param targets: The targets, either instances or window target IDs. - Specify instances using ``Key=InstanceIds,Values= *instanceid1* , *instanceid2*`` . - Specify window target IDs using ``Key=WindowTargetIds,Values= *window-target-id-1* , *window-target-id-2*`` .
|
|
3057
3063
|
:param task_invocation_parameters: The parameters to pass to the task when it runs. Populate only the fields that match the task type. All other fields should be empty. .. epigraph:: When you update a maintenance window task that has options specified in ``TaskInvocationParameters`` , you must provide again all the ``TaskInvocationParameters`` values that you want to retain. The values you do not specify again are removed. For example, suppose that when you registered a Run Command task, you specified ``TaskInvocationParameters`` values for ``Comment`` , ``NotificationConfig`` , and ``OutputS3BucketName`` . If you update the maintenance window task and specify only a different ``OutputS3BucketName`` value, the values for ``Comment`` and ``NotificationConfig`` are removed.
|
|
3058
|
-
:param task_parameters:
|
|
3064
|
+
:param task_parameters: .. epigraph:: ``TaskParameters`` has been deprecated. To specify parameters to pass to a task when it runs, instead use the ``Parameters`` option in the ``TaskInvocationParameters`` structure. For information about how Systems Manager handles these options for the supported maintenance window task types, see `MaintenanceWindowTaskInvocationParameters <https://docs.aws.amazon.com/systems-manager/latest/APIReference/API_MaintenanceWindowTaskInvocationParameters.html>`_ . The parameters to pass to the task when it runs.
|
|
3059
3065
|
'''
|
|
3060
3066
|
if __debug__:
|
|
3061
3067
|
type_hints = typing.get_type_hints(_typecheckingstub__5ab957de8d8a36935188de8e7d81d523e1ab1253ec8aab9717d062cb647fc726)
|
|
@@ -3206,7 +3212,9 @@ class CfnMaintenanceWindowTask(
|
|
|
3206
3212
|
def logging_info(
|
|
3207
3213
|
self,
|
|
3208
3214
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMaintenanceWindowTask.LoggingInfoProperty"]]:
|
|
3209
|
-
'''
|
|
3215
|
+
'''.. epigraph::
|
|
3216
|
+
|
|
3217
|
+
``LoggingInfo`` has been deprecated.'''
|
|
3210
3218
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMaintenanceWindowTask.LoggingInfoProperty"]], jsii.get(self, "loggingInfo"))
|
|
3211
3219
|
|
|
3212
3220
|
@logging_info.setter
|
|
@@ -3310,7 +3318,9 @@ class CfnMaintenanceWindowTask(
|
|
|
3310
3318
|
@builtins.property
|
|
3311
3319
|
@jsii.member(jsii_name="taskParameters")
|
|
3312
3320
|
def task_parameters(self) -> typing.Any:
|
|
3313
|
-
'''
|
|
3321
|
+
'''.. epigraph::
|
|
3322
|
+
|
|
3323
|
+
``TaskParameters`` has been deprecated.'''
|
|
3314
3324
|
return typing.cast(typing.Any, jsii.get(self, "taskParameters"))
|
|
3315
3325
|
|
|
3316
3326
|
@task_parameters.setter
|
|
@@ -3416,12 +3426,15 @@ class CfnMaintenanceWindowTask(
|
|
|
3416
3426
|
s3_bucket: builtins.str,
|
|
3417
3427
|
s3_prefix: typing.Optional[builtins.str] = None,
|
|
3418
3428
|
) -> None:
|
|
3419
|
-
'''
|
|
3429
|
+
'''.. epigraph::
|
|
3420
3430
|
|
|
3421
|
-
|
|
3422
|
-
|
|
3431
|
+
``LoggingInfo`` has been deprecated.
|
|
3432
|
+
|
|
3433
|
+
To specify an Amazon S3 bucket to contain logs, instead use the ``OutputS3BucketName`` and ``OutputS3KeyPrefix`` options in the ``TaskInvocationParameters`` structure. For information about how Systems Manager handles these options for the supported maintenance window task types, see `AWS ::SSM::MaintenanceWindowTask MaintenanceWindowRunCommandParameters <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html>`_ .
|
|
3423
3434
|
|
|
3424
|
-
|
|
3435
|
+
The ``LoggingInfo`` property type specifies information about the Amazon S3 bucket to write instance-level logs to.
|
|
3436
|
+
|
|
3437
|
+
``LoggingInfo`` is a property of the `AWS::SSM::MaintenanceWindowTask <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html>`_ resource.
|
|
3425
3438
|
|
|
3426
3439
|
:param region: The AWS Region where the S3 bucket is located.
|
|
3427
3440
|
:param s3_bucket: The name of an S3 bucket where execution logs are stored.
|
|
@@ -4383,14 +4396,14 @@ class CfnMaintenanceWindowTaskProps:
|
|
|
4383
4396
|
:param window_id: The ID of the maintenance window where the task is registered.
|
|
4384
4397
|
:param cutoff_behavior: The specification for whether tasks should continue to run after the cutoff time specified in the maintenance windows is reached.
|
|
4385
4398
|
:param description: A description of the task.
|
|
4386
|
-
:param logging_info:
|
|
4399
|
+
:param logging_info: .. epigraph:: ``LoggingInfo`` has been deprecated. To specify an Amazon S3 bucket to contain logs for Run Command tasks, instead use the ``OutputS3BucketName`` and ``OutputS3KeyPrefix`` options in the ``TaskInvocationParameters`` structure. For information about how Systems Manager handles these options for the supported maintenance window task types, see `AWS ::SSM::MaintenanceWindowTask MaintenanceWindowRunCommandParameters <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html>`_ . Information about an Amazon S3 bucket to write Run Command task-level logs to.
|
|
4387
4400
|
:param max_concurrency: The maximum number of targets this task can be run for, in parallel. .. epigraph:: Although this element is listed as "Required: No", a value can be omitted only when you are registering or updating a `targetless task <https://docs.aws.amazon.com/systems-manager/latest/userguide/maintenance-windows-targetless-tasks.html>`_ You must provide a value in all other cases. For maintenance window tasks without a target specified, you can't supply a value for this option. Instead, the system inserts a placeholder value of ``1`` . This value doesn't affect the running of your task.
|
|
4388
4401
|
:param max_errors: The maximum number of errors allowed before this task stops being scheduled. .. epigraph:: Although this element is listed as "Required: No", a value can be omitted only when you are registering or updating a `targetless task <https://docs.aws.amazon.com/systems-manager/latest/userguide/maintenance-windows-targetless-tasks.html>`_ You must provide a value in all other cases. For maintenance window tasks without a target specified, you can't supply a value for this option. Instead, the system inserts a placeholder value of ``1`` . This value doesn't affect the running of your task.
|
|
4389
4402
|
:param name: The task name.
|
|
4390
4403
|
:param service_role_arn: The Amazon Resource Name (ARN) of the IAM service role for AWS Systems Manager to assume when running a maintenance window task. If you do not specify a service role ARN, Systems Manager uses a service-linked role in your account. If no appropriate service-linked role for Systems Manager exists in your account, it is created when you run ``RegisterTaskWithMaintenanceWindow`` . However, for an improved security posture, we strongly recommend creating a custom policy and custom service role for running your maintenance window tasks. The policy can be crafted to provide only the permissions needed for your particular maintenance window tasks. For more information, see `Setting up Maintenance Windows <https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-maintenance-permissions.html>`_ in the in the *AWS Systems Manager User Guide* .
|
|
4391
4404
|
:param targets: The targets, either instances or window target IDs. - Specify instances using ``Key=InstanceIds,Values= *instanceid1* , *instanceid2*`` . - Specify window target IDs using ``Key=WindowTargetIds,Values= *window-target-id-1* , *window-target-id-2*`` .
|
|
4392
4405
|
:param task_invocation_parameters: The parameters to pass to the task when it runs. Populate only the fields that match the task type. All other fields should be empty. .. epigraph:: When you update a maintenance window task that has options specified in ``TaskInvocationParameters`` , you must provide again all the ``TaskInvocationParameters`` values that you want to retain. The values you do not specify again are removed. For example, suppose that when you registered a Run Command task, you specified ``TaskInvocationParameters`` values for ``Comment`` , ``NotificationConfig`` , and ``OutputS3BucketName`` . If you update the maintenance window task and specify only a different ``OutputS3BucketName`` value, the values for ``Comment`` and ``NotificationConfig`` are removed.
|
|
4393
|
-
:param task_parameters:
|
|
4406
|
+
:param task_parameters: .. epigraph:: ``TaskParameters`` has been deprecated. To specify parameters to pass to a task when it runs, instead use the ``Parameters`` option in the ``TaskInvocationParameters`` structure. For information about how Systems Manager handles these options for the supported maintenance window task types, see `MaintenanceWindowTaskInvocationParameters <https://docs.aws.amazon.com/systems-manager/latest/APIReference/API_MaintenanceWindowTaskInvocationParameters.html>`_ . The parameters to pass to the task when it runs.
|
|
4394
4407
|
|
|
4395
4408
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html
|
|
4396
4409
|
:exampleMetadata: fixture=_generated
|
|
@@ -4583,11 +4596,13 @@ class CfnMaintenanceWindowTaskProps:
|
|
|
4583
4596
|
def logging_info(
|
|
4584
4597
|
self,
|
|
4585
4598
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnMaintenanceWindowTask.LoggingInfoProperty]]:
|
|
4586
|
-
'''
|
|
4599
|
+
'''.. epigraph::
|
|
4587
4600
|
|
|
4588
|
-
|
|
4601
|
+
``LoggingInfo`` has been deprecated.
|
|
4589
4602
|
|
|
4590
|
-
|
|
4603
|
+
To specify an Amazon S3 bucket to contain logs for Run Command tasks, instead use the ``OutputS3BucketName`` and ``OutputS3KeyPrefix`` options in the ``TaskInvocationParameters`` structure. For information about how Systems Manager handles these options for the supported maintenance window task types, see `AWS ::SSM::MaintenanceWindowTask MaintenanceWindowRunCommandParameters <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html>`_ .
|
|
4604
|
+
|
|
4605
|
+
Information about an Amazon S3 bucket to write Run Command task-level logs to.
|
|
4591
4606
|
|
|
4592
4607
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-logginginfo
|
|
4593
4608
|
'''
|
|
@@ -4678,11 +4693,13 @@ class CfnMaintenanceWindowTaskProps:
|
|
|
4678
4693
|
|
|
4679
4694
|
@builtins.property
|
|
4680
4695
|
def task_parameters(self) -> typing.Any:
|
|
4681
|
-
'''
|
|
4696
|
+
'''.. epigraph::
|
|
4682
4697
|
|
|
4683
|
-
|
|
4698
|
+
``TaskParameters`` has been deprecated.
|
|
4684
4699
|
|
|
4685
|
-
|
|
4700
|
+
To specify parameters to pass to a task when it runs, instead use the ``Parameters`` option in the ``TaskInvocationParameters`` structure. For information about how Systems Manager handles these options for the supported maintenance window task types, see `MaintenanceWindowTaskInvocationParameters <https://docs.aws.amazon.com/systems-manager/latest/APIReference/API_MaintenanceWindowTaskInvocationParameters.html>`_ .
|
|
4701
|
+
|
|
4702
|
+
The parameters to pass to the task when it runs.
|
|
4686
4703
|
|
|
4687
4704
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskparameters
|
|
4688
4705
|
'''
|
|
@@ -4713,12 +4730,9 @@ class CfnParameter(
|
|
|
4713
4730
|
|
|
4714
4731
|
To create an SSM parameter, you must have the AWS Identity and Access Management ( IAM ) permissions ``ssm:PutParameter`` and ``ssm:AddTagsToResource`` . On stack creation, AWS CloudFormation adds the following three tags to the parameter: ``aws:cloudformation:stack-name`` , ``aws:cloudformation:logical-id`` , and ``aws:cloudformation:stack-id`` , in addition to any custom tags you specify.
|
|
4715
4732
|
|
|
4716
|
-
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
|
|
4733
|
+
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* .
|
|
4717
4734
|
|
|
4718
4735
|
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* .
|
|
4719
|
-
.. epigraph::
|
|
4720
|
-
|
|
4721
|
-
Parameters of type ``SecureString`` are not supported by AWS CloudFormation .
|
|
4722
4736
|
|
|
4723
4737
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html
|
|
4724
4738
|
:cloudformationResource: AWS::SSM::Parameter
|
|
@@ -4770,7 +4784,7 @@ class CfnParameter(
|
|
|
4770
4784
|
: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+$``
|
|
4771
4785
|
:param data_type: The data type of the parameter, such as ``text`` or ``aws:ec2:image`` . The default is ``text`` .
|
|
4772
4786
|
:param description: Information about the parameter.
|
|
4773
|
-
:param name: The name of the parameter. .. epigraph:: The maximum length
|
|
4787
|
+
:param name: The name of the parameter. .. epigraph:: The reported maximum length of 2048 characters for a parameter name includes 1037 characters that are reserved for internal use by Systems Manager . The maximum length for a parameter name that you specify is 1011 characters. This count of 1011 characters includes the characters in the ARN that precede the name you specify. This ARN length will vary depending on your partition and Region. For example, the following 45 characters count toward the 1011 character maximum for a parameter created in the US East (Ohio) Region: ``arn:aws:ssm:us-east-2:111122223333:parameter/`` .
|
|
4774
4788
|
:param policies: Information about the policies assigned to a parameter. `Assigning parameter policies <https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-policies.html>`_ in the *AWS Systems Manager User Guide* .
|
|
4775
4789
|
:param tags: Optional metadata that you assign to a resource in the form of an arbitrary set of tags (key-value pairs). Tags enable you to categorize a resource in different ways, such as by purpose, owner, or environment. For example, you might want to tag a Systems Manager parameter to identify the type of resource to which it applies, the environment, or the type of configuration data referenced by the parameter.
|
|
4776
4790
|
:param tier: The parameter tier.
|
|
@@ -5011,7 +5025,7 @@ class CfnParameterProps:
|
|
|
5011
5025
|
: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+$``
|
|
5012
5026
|
:param data_type: The data type of the parameter, such as ``text`` or ``aws:ec2:image`` . The default is ``text`` .
|
|
5013
5027
|
:param description: Information about the parameter.
|
|
5014
|
-
:param name: The name of the parameter. .. epigraph:: The maximum length
|
|
5028
|
+
:param name: The name of the parameter. .. epigraph:: The reported maximum length of 2048 characters for a parameter name includes 1037 characters that are reserved for internal use by Systems Manager . The maximum length for a parameter name that you specify is 1011 characters. This count of 1011 characters includes the characters in the ARN that precede the name you specify. This ARN length will vary depending on your partition and Region. For example, the following 45 characters count toward the 1011 character maximum for a parameter created in the US East (Ohio) Region: ``arn:aws:ssm:us-east-2:111122223333:parameter/`` .
|
|
5015
5029
|
:param policies: Information about the policies assigned to a parameter. `Assigning parameter policies <https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-policies.html>`_ in the *AWS Systems Manager User Guide* .
|
|
5016
5030
|
:param tags: Optional metadata that you assign to a resource in the form of an arbitrary set of tags (key-value pairs). Tags enable you to categorize a resource in different ways, such as by purpose, owner, or environment. For example, you might want to tag a Systems Manager parameter to identify the type of resource to which it applies, the environment, or the type of configuration data referenced by the parameter.
|
|
5017
5031
|
:param tier: The parameter tier.
|
|
@@ -5136,7 +5150,9 @@ class CfnParameterProps:
|
|
|
5136
5150
|
|
|
5137
5151
|
.. epigraph::
|
|
5138
5152
|
|
|
5139
|
-
The maximum length
|
|
5153
|
+
The reported maximum length of 2048 characters for a parameter name includes 1037 characters that are reserved for internal use by Systems Manager . The maximum length for a parameter name that you specify is 1011 characters.
|
|
5154
|
+
|
|
5155
|
+
This count of 1011 characters includes the characters in the ARN that precede the name you specify. This ARN length will vary depending on your partition and Region. For example, the following 45 characters count toward the 1011 character maximum for a parameter created in the US East (Ohio) Region: ``arn:aws:ssm:us-east-2:111122223333:parameter/`` .
|
|
5140
5156
|
|
|
5141
5157
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-name
|
|
5142
5158
|
'''
|
|
@@ -5229,6 +5245,7 @@ class CfnPatchBaseline(
|
|
|
5229
5245
|
approved_patches=["approvedPatches"],
|
|
5230
5246
|
approved_patches_compliance_level="approvedPatchesComplianceLevel",
|
|
5231
5247
|
approved_patches_enable_non_security=False,
|
|
5248
|
+
available_security_updates_compliance_status="availableSecurityUpdatesComplianceStatus",
|
|
5232
5249
|
default_baseline=False,
|
|
5233
5250
|
description="description",
|
|
5234
5251
|
global_filters=ssm.CfnPatchBaseline.PatchFilterGroupProperty(
|
|
@@ -5263,6 +5280,7 @@ class CfnPatchBaseline(
|
|
|
5263
5280
|
approved_patches: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
5264
5281
|
approved_patches_compliance_level: typing.Optional[builtins.str] = None,
|
|
5265
5282
|
approved_patches_enable_non_security: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
5283
|
+
available_security_updates_compliance_status: typing.Optional[builtins.str] = None,
|
|
5266
5284
|
default_baseline: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
5267
5285
|
description: typing.Optional[builtins.str] = None,
|
|
5268
5286
|
global_filters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPatchBaseline.PatchFilterGroupProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -5281,6 +5299,7 @@ class CfnPatchBaseline(
|
|
|
5281
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* .
|
|
5282
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"
|
|
5283
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: The compliance status for vendor recommended security updates that are not approved by this patch baseline.
|
|
5284
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
|
|
5285
5304
|
:param description: A description of the patch baseline.
|
|
5286
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.
|
|
@@ -5301,6 +5320,7 @@ class CfnPatchBaseline(
|
|
|
5301
5320
|
approved_patches=approved_patches,
|
|
5302
5321
|
approved_patches_compliance_level=approved_patches_compliance_level,
|
|
5303
5322
|
approved_patches_enable_non_security=approved_patches_enable_non_security,
|
|
5323
|
+
available_security_updates_compliance_status=available_security_updates_compliance_status,
|
|
5304
5324
|
default_baseline=default_baseline,
|
|
5305
5325
|
description=description,
|
|
5306
5326
|
global_filters=global_filters,
|
|
@@ -5445,6 +5465,24 @@ class CfnPatchBaseline(
|
|
|
5445
5465
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5446
5466
|
jsii.set(self, "approvedPatchesEnableNonSecurity", value) # pyright: ignore[reportArgumentType]
|
|
5447
5467
|
|
|
5468
|
+
@builtins.property
|
|
5469
|
+
@jsii.member(jsii_name="availableSecurityUpdatesComplianceStatus")
|
|
5470
|
+
def available_security_updates_compliance_status(
|
|
5471
|
+
self,
|
|
5472
|
+
) -> typing.Optional[builtins.str]:
|
|
5473
|
+
'''The compliance status for vendor recommended security updates that are not approved by this patch baseline.'''
|
|
5474
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "availableSecurityUpdatesComplianceStatus"))
|
|
5475
|
+
|
|
5476
|
+
@available_security_updates_compliance_status.setter
|
|
5477
|
+
def available_security_updates_compliance_status(
|
|
5478
|
+
self,
|
|
5479
|
+
value: typing.Optional[builtins.str],
|
|
5480
|
+
) -> None:
|
|
5481
|
+
if __debug__:
|
|
5482
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b3d22bb7723ec324262f77916922eeca45b414ed52032b18a9facc597e01c7c3)
|
|
5483
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
5484
|
+
jsii.set(self, "availableSecurityUpdatesComplianceStatus", value) # pyright: ignore[reportArgumentType]
|
|
5485
|
+
|
|
5448
5486
|
@builtins.property
|
|
5449
5487
|
@jsii.member(jsii_name="defaultBaseline")
|
|
5450
5488
|
def default_baseline(
|
|
@@ -5741,7 +5779,7 @@ class CfnPatchBaseline(
|
|
|
5741
5779
|
|
|
5742
5780
|
The AWS CloudFormation ``AWS::SSM::PatchSource`` resource is used to provide information about the patches to use to update target instances, including target operating systems and source repository. Applies to Linux managed nodes only.
|
|
5743
5781
|
|
|
5744
|
-
:param configuration: The value of the
|
|
5782
|
+
:param configuration: The value of the repo configuration. *Example for yum repositories* ``[main]`` ``name=MyCustomRepository`` ``baseurl=https://my-custom-repository`` ``enabled=1`` For information about other options available for your yum repository configuration, see `dnf.conf(5) <https://docs.aws.amazon.com/https://man7.org/linux/man-pages/man5/dnf.conf.5.html>`_ on the *man7.org* website. *Examples for Ubuntu Server and Debian Server* ``deb http://security.ubuntu.com/ubuntu jammy main`` ``deb https://site.example.com/debian distribution component1 component2 component3`` Repo information for Ubuntu Server repositories must be specifed in a single line. For more examples and information, see `jammy (5) sources.list.5.gz <https://docs.aws.amazon.com/https://manpages.ubuntu.com/manpages/jammy/man5/sources.list.5.html>`_ on the *Ubuntu Server Manuals* website and `sources.list format <https://docs.aws.amazon.com/https://wiki.debian.org/SourcesList#sources.list_format>`_ on the *Debian Wiki* .
|
|
5745
5783
|
:param name: The name specified to identify the patch source.
|
|
5746
5784
|
:param products: The specific operating system versions a patch repository applies to, such as "Ubuntu16.04", "RedhatEnterpriseLinux7.2" or "Suse12.7". For lists of supported product values, see `PatchFilter <https://docs.aws.amazon.com/systems-manager/latest/APIReference/API_PatchFilter.html>`_ in the *AWS Systems Manager API Reference* .
|
|
5747
5785
|
|
|
@@ -5775,7 +5813,9 @@ class CfnPatchBaseline(
|
|
|
5775
5813
|
|
|
5776
5814
|
@builtins.property
|
|
5777
5815
|
def configuration(self) -> typing.Optional[builtins.str]:
|
|
5778
|
-
'''The value of the
|
|
5816
|
+
'''The value of the repo configuration.
|
|
5817
|
+
|
|
5818
|
+
*Example for yum repositories*
|
|
5779
5819
|
|
|
5780
5820
|
``[main]``
|
|
5781
5821
|
|
|
@@ -5784,9 +5824,16 @@ class CfnPatchBaseline(
|
|
|
5784
5824
|
``baseurl=https://my-custom-repository``
|
|
5785
5825
|
|
|
5786
5826
|
``enabled=1``
|
|
5787
|
-
.. epigraph::
|
|
5788
5827
|
|
|
5789
|
-
|
|
5828
|
+
For information about other options available for your yum repository configuration, see `dnf.conf(5) <https://docs.aws.amazon.com/https://man7.org/linux/man-pages/man5/dnf.conf.5.html>`_ on the *man7.org* website.
|
|
5829
|
+
|
|
5830
|
+
*Examples for Ubuntu Server and Debian Server*
|
|
5831
|
+
|
|
5832
|
+
``deb http://security.ubuntu.com/ubuntu jammy main``
|
|
5833
|
+
|
|
5834
|
+
``deb https://site.example.com/debian distribution component1 component2 component3``
|
|
5835
|
+
|
|
5836
|
+
Repo information for Ubuntu Server repositories must be specifed in a single line. For more examples and information, see `jammy (5) sources.list.5.gz <https://docs.aws.amazon.com/https://manpages.ubuntu.com/manpages/jammy/man5/sources.list.5.html>`_ on the *Ubuntu Server Manuals* website and `sources.list format <https://docs.aws.amazon.com/https://wiki.debian.org/SourcesList#sources.list_format>`_ on the *Debian Wiki* .
|
|
5790
5837
|
|
|
5791
5838
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-patchbaseline-patchsource.html#cfn-ssm-patchbaseline-patchsource-configuration
|
|
5792
5839
|
'''
|
|
@@ -6060,6 +6107,7 @@ class CfnPatchBaseline(
|
|
|
6060
6107
|
"approved_patches": "approvedPatches",
|
|
6061
6108
|
"approved_patches_compliance_level": "approvedPatchesComplianceLevel",
|
|
6062
6109
|
"approved_patches_enable_non_security": "approvedPatchesEnableNonSecurity",
|
|
6110
|
+
"available_security_updates_compliance_status": "availableSecurityUpdatesComplianceStatus",
|
|
6063
6111
|
"default_baseline": "defaultBaseline",
|
|
6064
6112
|
"description": "description",
|
|
6065
6113
|
"global_filters": "globalFilters",
|
|
@@ -6080,6 +6128,7 @@ class CfnPatchBaselineProps:
|
|
|
6080
6128
|
approved_patches: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
6081
6129
|
approved_patches_compliance_level: typing.Optional[builtins.str] = None,
|
|
6082
6130
|
approved_patches_enable_non_security: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
6131
|
+
available_security_updates_compliance_status: typing.Optional[builtins.str] = None,
|
|
6083
6132
|
default_baseline: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
6084
6133
|
description: typing.Optional[builtins.str] = None,
|
|
6085
6134
|
global_filters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPatchBaseline.PatchFilterGroupProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -6097,6 +6146,7 @@ class CfnPatchBaselineProps:
|
|
|
6097
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* .
|
|
6098
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"
|
|
6099
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: The compliance status for vendor recommended security updates that are not approved by this patch baseline.
|
|
6100
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
|
|
6101
6151
|
:param description: A description of the patch baseline.
|
|
6102
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.
|
|
@@ -6137,6 +6187,7 @@ class CfnPatchBaselineProps:
|
|
|
6137
6187
|
approved_patches=["approvedPatches"],
|
|
6138
6188
|
approved_patches_compliance_level="approvedPatchesComplianceLevel",
|
|
6139
6189
|
approved_patches_enable_non_security=False,
|
|
6190
|
+
available_security_updates_compliance_status="availableSecurityUpdatesComplianceStatus",
|
|
6140
6191
|
default_baseline=False,
|
|
6141
6192
|
description="description",
|
|
6142
6193
|
global_filters=ssm.CfnPatchBaseline.PatchFilterGroupProperty(
|
|
@@ -6167,6 +6218,7 @@ class CfnPatchBaselineProps:
|
|
|
6167
6218
|
check_type(argname="argument approved_patches", value=approved_patches, expected_type=type_hints["approved_patches"])
|
|
6168
6219
|
check_type(argname="argument approved_patches_compliance_level", value=approved_patches_compliance_level, expected_type=type_hints["approved_patches_compliance_level"])
|
|
6169
6220
|
check_type(argname="argument approved_patches_enable_non_security", value=approved_patches_enable_non_security, expected_type=type_hints["approved_patches_enable_non_security"])
|
|
6221
|
+
check_type(argname="argument available_security_updates_compliance_status", value=available_security_updates_compliance_status, expected_type=type_hints["available_security_updates_compliance_status"])
|
|
6170
6222
|
check_type(argname="argument default_baseline", value=default_baseline, expected_type=type_hints["default_baseline"])
|
|
6171
6223
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
6172
6224
|
check_type(argname="argument global_filters", value=global_filters, expected_type=type_hints["global_filters"])
|
|
@@ -6187,6 +6239,8 @@ class CfnPatchBaselineProps:
|
|
|
6187
6239
|
self._values["approved_patches_compliance_level"] = approved_patches_compliance_level
|
|
6188
6240
|
if approved_patches_enable_non_security is not None:
|
|
6189
6241
|
self._values["approved_patches_enable_non_security"] = approved_patches_enable_non_security
|
|
6242
|
+
if available_security_updates_compliance_status is not None:
|
|
6243
|
+
self._values["available_security_updates_compliance_status"] = available_security_updates_compliance_status
|
|
6190
6244
|
if default_baseline is not None:
|
|
6191
6245
|
self._values["default_baseline"] = default_baseline
|
|
6192
6246
|
if description is not None:
|
|
@@ -6266,6 +6320,17 @@ class CfnPatchBaselineProps:
|
|
|
6266
6320
|
result = self._values.get("approved_patches_enable_non_security")
|
|
6267
6321
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
6268
6322
|
|
|
6323
|
+
@builtins.property
|
|
6324
|
+
def available_security_updates_compliance_status(
|
|
6325
|
+
self,
|
|
6326
|
+
) -> typing.Optional[builtins.str]:
|
|
6327
|
+
'''The compliance status for vendor recommended security updates that are not approved by this patch baseline.
|
|
6328
|
+
|
|
6329
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-availablesecurityupdatescompliancestatus
|
|
6330
|
+
'''
|
|
6331
|
+
result = self._values.get("available_security_updates_compliance_status")
|
|
6332
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
6333
|
+
|
|
6269
6334
|
@builtins.property
|
|
6270
6335
|
def default_baseline(
|
|
6271
6336
|
self,
|
|
@@ -10241,6 +10306,7 @@ def _typecheckingstub__5b87565e6649bbe5a503013adf6ae874b3dc918c05cd6b120b99a77e8
|
|
|
10241
10306
|
approved_patches: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
10242
10307
|
approved_patches_compliance_level: typing.Optional[builtins.str] = None,
|
|
10243
10308
|
approved_patches_enable_non_security: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
10309
|
+
available_security_updates_compliance_status: typing.Optional[builtins.str] = None,
|
|
10244
10310
|
default_baseline: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
10245
10311
|
description: typing.Optional[builtins.str] = None,
|
|
10246
10312
|
global_filters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPatchBaseline.PatchFilterGroupProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -10296,6 +10362,12 @@ def _typecheckingstub__596ca4adbe9b66ae96ac84884c609e25720aab40b7f9d665e6ea16808
|
|
|
10296
10362
|
"""Type checking stubs"""
|
|
10297
10363
|
pass
|
|
10298
10364
|
|
|
10365
|
+
def _typecheckingstub__b3d22bb7723ec324262f77916922eeca45b414ed52032b18a9facc597e01c7c3(
|
|
10366
|
+
value: typing.Optional[builtins.str],
|
|
10367
|
+
) -> None:
|
|
10368
|
+
"""Type checking stubs"""
|
|
10369
|
+
pass
|
|
10370
|
+
|
|
10299
10371
|
def _typecheckingstub__a82f38addd776fccd7d2225bc356d9a6e4dc42b938cbf56c083c34cd4994c239(
|
|
10300
10372
|
value: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]],
|
|
10301
10373
|
) -> None:
|
|
@@ -10399,6 +10471,7 @@ def _typecheckingstub__ff6666a30d275f2a85d64de631c940fb83198b8b5a376b87a3a684f4a
|
|
|
10399
10471
|
approved_patches: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
10400
10472
|
approved_patches_compliance_level: typing.Optional[builtins.str] = None,
|
|
10401
10473
|
approved_patches_enable_non_security: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
10474
|
+
available_security_updates_compliance_status: typing.Optional[builtins.str] = None,
|
|
10402
10475
|
default_baseline: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
10403
10476
|
description: typing.Optional[builtins.str] = None,
|
|
10404
10477
|
global_filters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnPatchBaseline.PatchFilterGroupProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|