Skip to content

Commit 7f9d5e7

Browse files
Update generated code (#1850)
update generated code
1 parent 15f48a7 commit 7f9d5e7

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

src/Exception/ParameterNotFoundException.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66

77
/**
88
* The parameter couldn't be found. Verify the name and try again.
9+
*
10+
* > For the `DeleteParameter` and `GetParameter` actions, if the specified parameter doesn't exist, the
11+
* > `ParameterNotFound` exception is *not* recorded in CloudTrail event logs.
912
*/
1013
final class ParameterNotFoundException extends ClientException
1114
{

src/Input/PutParameterRequest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
final class PutParameterRequest extends Input
1414
{
1515
/**
16-
* The fully qualified name of the parameter that you want to add to the system.
16+
* The fully qualified name of the parameter that you want to create or update.
1717
*
1818
* > You can't enter the Amazon Resource Name (ARN) for a parameter, only the parameter name itself.
1919
*
@@ -71,7 +71,7 @@ final class PutParameterRequest extends Input
7171
private $value;
7272

7373
/**
74-
* The type of parameter that you want to add to the system.
74+
* The type of parameter that you want to create.
7575
*
7676
* > `SecureString` isn't currently supported for CloudFormation templates.
7777
*
@@ -89,8 +89,8 @@ final class PutParameterRequest extends Input
8989
* The Key Management Service (KMS) ID that you want to use to encrypt a parameter. Use a custom key for better
9090
* security. Required for parameters that use the `SecureString` data type.
9191
*
92-
* If you don't specify a key ID, the system uses the default key associated with your Amazon Web Services account which
93-
* is not as secure as using a custom key.
92+
* If you don't specify a key ID, the system uses the default key associated with your Amazon Web Services account,
93+
* which is not as secure as using a custom key.
9494
*
9595
* - To use a custom KMS key, choose the `SecureString` data type with the `Key ID` parameter.
9696
*

src/SsmClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ public function getParametersByPath($input): GetParametersByPathResult
203203
}
204204

205205
/**
206-
* Add a parameter to the system.
206+
* Create or update a parameter in Parameter Store.
207207
*
208208
* @see https://docs.aws.amazon.com/systems-manager/latest/APIReference/API_PutParameter.html
209209
* @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-ssm-2014-11-06.html#putparameter

0 commit comments

Comments
 (0)