From 4c1a871956b56a12de40fd83b9c2f8776fe22be0 Mon Sep 17 00:00:00 2001 From: awstools Date: Mon, 22 May 2023 18:15:56 +0000 Subject: [PATCH] feat(clients): update command documentation examples as of 2023-05-22 --- .../PutDedicatedIpPoolScalingAttributesCommand.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/clients/client-sesv2/src/commands/PutDedicatedIpPoolScalingAttributesCommand.ts b/clients/client-sesv2/src/commands/PutDedicatedIpPoolScalingAttributesCommand.ts index e65c9f927e73..98019b7eb366 100644 --- a/clients/client-sesv2/src/commands/PutDedicatedIpPoolScalingAttributesCommand.ts +++ b/clients/client-sesv2/src/commands/PutDedicatedIpPoolScalingAttributesCommand.ts @@ -82,6 +82,18 @@ export interface PutDedicatedIpPoolScalingAttributesCommandOutput * @throws {@link SESv2ServiceException} *

Base exception class for all service exceptions from SESv2 service.

* + * @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,