Skip to content

Commit 4c081fe

Browse files
author
awstools
committed
docs(client-ssm): July 2025 doc-only updates for Systems Manager.
1 parent e804655 commit 4c081fe

15 files changed

+133
-30
lines changed

clients/client-ssm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Systems Manager tools</a> in the <i>Amazon Web Services Systems Manager User Gui
2222
<li>
2323
<p>For details about predefined runbooks for Automation, a tool in Amazon Web Services Systems Manager, see the
2424
<i>
25-
<a href="https://docs.aws.amazon.com/systems-manager-automation-runbooks/latest/userguide/automation-runbook-reference.html">Systems Manager Automation runbook reference</a>
25+
<a href="https://docs.aws.amazon.com/systems-manager-automation-runbooks/latest/userguide/automation-runbook-reference.html">Systems Manager Automation Runbook Reference</a>
2626
</i>.</p>
2727
</li>
2828
<li>

clients/client-ssm/src/SSM.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3266,7 +3266,7 @@ export interface SSM {
32663266
* <li>
32673267
* <p>For details about predefined runbooks for Automation, a tool in Amazon Web Services Systems Manager, see the
32683268
* <i>
3269-
* <a href="https://docs.aws.amazon.com/systems-manager-automation-runbooks/latest/userguide/automation-runbook-reference.html">Systems Manager Automation runbook reference</a>
3269+
* <a href="https://docs.aws.amazon.com/systems-manager-automation-runbooks/latest/userguide/automation-runbook-reference.html">Systems Manager Automation Runbook Reference</a>
32703270
* </i>.</p>
32713271
* </li>
32723272
* <li>

clients/client-ssm/src/SSMClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1004,7 +1004,7 @@ export interface SSMClientResolvedConfig extends SSMClientResolvedConfigType {}
10041004
* <li>
10051005
* <p>For details about predefined runbooks for Automation, a tool in Amazon Web Services Systems Manager, see the
10061006
* <i>
1007-
* <a href="https://docs.aws.amazon.com/systems-manager-automation-runbooks/latest/userguide/automation-runbook-reference.html">Systems Manager Automation runbook reference</a>
1007+
* <a href="https://docs.aws.amazon.com/systems-manager-automation-runbooks/latest/userguide/automation-runbook-reference.html">Systems Manager Automation Runbook Reference</a>
10081008
* </i>.</p>
10091009
* </li>
10101010
* <li>

clients/client-ssm/src/commands/DescribeParametersCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ export interface DescribeParametersCommandOutput extends DescribeParametersResul
3636
* reaches an internal limit while processing the results, it stops the operation and returns the
3737
* matching values up to that point and a <code>NextToken</code>. You can specify the
3838
* <code>NextToken</code> in a subsequent call to get the next set of results.</p>
39+
* <p>Parameter names can't contain spaces. The service removes any spaces specified for the
40+
* beginning or end of a parameter name. If the specified name for a parameter contains spaces
41+
* between characters, the request fails with a <code>ValidationException</code> error.</p>
3942
* <important>
4043
* <p>If you change the KMS key alias for the KMS key used to encrypt a parameter,
4144
* then you must also update the key alias the parameter uses to reference KMS. Otherwise,

clients/client-ssm/src/commands/GetParameterCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ export interface GetParameterCommandOutput extends GetParameterResult, __Metadat
2929

3030
/**
3131
* <p>Get information about a single parameter by specifying the parameter name.</p>
32+
* <p>Parameter names can't contain spaces. The service removes any spaces specified for the
33+
* beginning or end of a parameter name. If the specified name for a parameter contains spaces
34+
* between characters, the request fails with a <code>ValidationException</code> error.</p>
3235
* <note>
3336
* <p>To get information about more than one parameter at a time, use the <a>GetParameters</a> operation.</p>
3437
* </note>

clients/client-ssm/src/commands/GetParameterHistoryCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ export interface GetParameterHistoryCommandOutput extends GetParameterHistoryRes
3333

3434
/**
3535
* <p>Retrieves the history of all changes to a parameter.</p>
36+
* <p>Parameter names can't contain spaces. The service removes any spaces specified for the
37+
* beginning or end of a parameter name. If the specified name for a parameter contains spaces
38+
* between characters, the request fails with a <code>ValidationException</code> error.</p>
3639
* <important>
3740
* <p>If you change the KMS key alias for the KMS key used to encrypt a parameter,
3841
* then you must also update the key alias the parameter uses to reference KMS. Otherwise,

clients/client-ssm/src/commands/GetParametersByPathCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ export interface GetParametersByPathCommandOutput extends GetParametersByPathRes
3939
* reaches an internal limit while processing the results, it stops the operation and returns the
4040
* matching values up to that point and a <code>NextToken</code>. You can specify the
4141
* <code>NextToken</code> in a subsequent call to get the next set of results.</p>
42+
* <p>Parameter names can't contain spaces. The service removes any spaces specified for the
43+
* beginning or end of a parameter name. If the specified name for a parameter contains spaces
44+
* between characters, the request fails with a <code>ValidationException</code> error.</p>
4245
* @example
4346
* Use a bare-bones client and the command you need to make an API call.
4447
* ```javascript

clients/client-ssm/src/commands/GetParametersCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ export interface GetParametersCommandOutput extends GetParametersResult, __Metad
3333
* <p>To get information about a single parameter, you can use the <a>GetParameter</a>
3434
* operation instead.</p>
3535
* </note>
36+
* <p>Parameter names can't contain spaces. The service removes any spaces specified for the
37+
* beginning or end of a parameter name. If the specified name for a parameter contains spaces
38+
* between characters, the request fails with a <code>ValidationException</code> error.</p>
3639
* @example
3740
* Use a bare-bones client and the command you need to make an API call.
3841
* ```javascript

clients/client-ssm/src/commands/LabelParameterVersionCommand.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,11 @@ export interface LabelParameterVersionCommandOutput extends LabelParameterVersio
6464
* sensitive). If a label fails to meet these requirements, then the label isn't associated with a
6565
* parameter and the system displays it in the list of InvalidLabels.</p>
6666
* </li>
67+
* <li>
68+
* <p>Parameter names can't contain spaces. The service removes any spaces specified for
69+
* the beginning or end of a parameter name. If the specified name for a parameter contains spaces
70+
* between characters, the request fails with a <code>ValidationException</code> error.</p>
71+
* </li>
6772
* </ul>
6873
* @example
6974
* Use a bare-bones client and the command you need to make an API call.

clients/client-ssm/src/commands/PutComplianceItemsCommand.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,13 @@ export interface PutComplianceItemsCommandOutput extends PutComplianceItemsResul
4444
* <li>
4545
* <p>ExecutionTime. The time the patch, association, or custom compliance item was applied to
4646
* the managed node.</p>
47+
* <important>
48+
* <p>For State Manager associations, this represents the time when compliance status was
49+
* captured by the Systems Manager service during its internal compliance aggregation workflow, not
50+
* necessarily when the association was executed on the managed node. State Manager updates
51+
* compliance information for all associations on an instance whenever any association executes,
52+
* which may result in multiple associations showing the same execution time.</p>
53+
* </important>
4754
* </li>
4855
* <li>
4956
* <p>Id: The patch, association, or custom compliance ID.</p>

0 commit comments

Comments
 (0)