Skip to content

Commit

Permalink
feat(clients): update command documentation examples as of 2023-05-22
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed May 22, 2023
1 parent ceac978 commit 4c1a871
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,18 @@ export interface PutDedicatedIpPoolScalingAttributesCommandOutput
* @throws {@link SESv2ServiceException}
* <p>Base exception class for all service exceptions from SESv2 service.</p>
*
* @example Used to convert a dedicated IP pool to a different scaling mode.
* ```javascript
* // This example converts a dedicated IP pool from STANDARD to MANAGED.
* const input = {
* "PoolName": "sample-ses-pool",
* "ScalingMode": "MANAGED"
* };
* const command = new PutDedicatedIpPoolScalingAttributesCommand(input);
* await client.send(command);
* // example id: put-dedicated-ip-pool-scaling-attributes-example-1683639172
* ```
*
*/
export class PutDedicatedIpPoolScalingAttributesCommand extends $Command<
PutDedicatedIpPoolScalingAttributesCommandInput,
Expand Down

0 comments on commit 4c1a871

Please sign in to comment.