File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
clients/client-sesv2/src/commands Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff 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 */
8698export class PutDedicatedIpPoolScalingAttributesCommand extends $Command <
8799 PutDedicatedIpPoolScalingAttributesCommandInput ,
You can’t perform that action at this time.
0 commit comments