@@ -101,6 +101,10 @@ public function deleteParameters($input): DeleteParametersResult
101
101
/**
102
102
* Get information about a single parameter by specifying the parameter name.
103
103
*
104
+ * Parameter names can't contain spaces. The service removes any spaces specified for the beginning or end of a
105
+ * parameter name. If the specified name for a parameter contains spaces between characters, the request fails with a
106
+ * `ValidationException` error.
107
+ *
104
108
* > To get information about more than one parameter at a time, use the GetParameters operation.
105
109
*
106
110
* @see https://docs.aws.amazon.com/systems-manager/latest/APIReference/API_GetParameter.html
@@ -135,6 +139,10 @@ public function getParameter($input): GetParameterResult
135
139
*
136
140
* > To get information about a single parameter, you can use the GetParameter operation instead.
137
141
*
142
+ * Parameter names can't contain spaces. The service removes any spaces specified for the beginning or end of a
143
+ * parameter name. If the specified name for a parameter contains spaces between characters, the request fails with a
144
+ * `ValidationException` error.
145
+ *
138
146
* @see https://docs.aws.amazon.com/systems-manager/latest/APIReference/API_GetParameters.html
139
147
* @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-ssm-2014-11-06.html#getparameters
140
148
*
@@ -167,6 +175,10 @@ public function getParameters($input): GetParametersResult
167
175
* and returns the matching values up to that point and a `NextToken`. You can specify the `NextToken` in a subsequent
168
176
* call to get the next set of results.
169
177
*
178
+ * Parameter names can't contain spaces. The service removes any spaces specified for the beginning or end of a
179
+ * parameter name. If the specified name for a parameter contains spaces between characters, the request fails with a
180
+ * `ValidationException` error.
181
+ *
170
182
* @see https://docs.aws.amazon.com/systems-manager/latest/APIReference/API_GetParametersByPath.html
171
183
* @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-ssm-2014-11-06.html#getparametersbypath
172
184
*
0 commit comments