Skip to content

Commit 4c1a871

Browse files
author
awstools
committed
feat(clients): update command documentation examples as of 2023-05-22
1 parent ceac978 commit 4c1a871

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

clients/client-sesv2/src/commands/PutDedicatedIpPoolScalingAttributesCommand.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,18 @@ export interface PutDedicatedIpPoolScalingAttributesCommandOutput
8282
* @throws {@link SESv2ServiceException}
8383
* <p>Base exception class for all service exceptions from SESv2 service.</p>
8484
*
85+
* @example Used to convert a dedicated IP pool to a different scaling mode.
86+
* ```javascript
87+
* // This example converts a dedicated IP pool from STANDARD to MANAGED.
88+
* const input = {
89+
* "PoolName": "sample-ses-pool",
90+
* "ScalingMode": "MANAGED"
91+
* };
92+
* const command = new PutDedicatedIpPoolScalingAttributesCommand(input);
93+
* await client.send(command);
94+
* // example id: put-dedicated-ip-pool-scaling-attributes-example-1683639172
95+
* ```
96+
*
8597
*/
8698
export class PutDedicatedIpPoolScalingAttributesCommand extends $Command<
8799
PutDedicatedIpPoolScalingAttributesCommandInput,

0 commit comments

Comments
 (0)