Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

### Changed

- Fix typos in SSM actions descriptions
- Update EC2 update_min_instances description

## [0.23.4][] - 2023-04-27
Expand Down
13 changes: 8 additions & 5 deletions chaosaws/ssm/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ def create_document(
secrets: Secrets = None,
) -> AWSResponse:
"""
creates a Systems Manager (SSM) document.
An SSM document defines the actions that SSM performs on your managed.
Creates a Systems Manager (SSM) document.
An SSM document defines the actions that SSM performs on your managed
instances.
For more information about SSM documents:
https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-ssm-docs.html
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm.html#SSM.Client.create_document
Expand Down Expand Up @@ -66,7 +67,8 @@ def send_command(
"""
Runs commands on one or more managed instances.

An SSM document defines the actions that SSM performs on your managed.
An SSM document defines the actions that SSM performs on your managed
instances.
For more information about SSM SendCommand:
https://docs.aws.amazon.com/systems-manager/latest/APIReference/API_SendCommand.html
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm.html#SSM.Client.send_command
Expand Down Expand Up @@ -102,9 +104,10 @@ def delete_document(
secrets: Secrets = None,
) -> AWSResponse:
"""
creates a Systems Manager (SSM) document.
Deletes a Systems Manager (SSM) document.

An SSM document defines the actions that SSM performs on your managed.
An SSM document defines the actions that SSM performs on your managed
instances.
For more information about SSM documents:
https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-ssm-docs.html
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm.html#SSM.Client.create_document
Expand Down