File tree 1 file changed +12
-0
lines changed
clients/client-sesv2/src/commands
1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -82,6 +82,18 @@ export interface PutDedicatedIpPoolScalingAttributesCommandOutput
82
82
* @throws {@link SESv2ServiceException }
83
83
* <p>Base exception class for all service exceptions from SESv2 service.</p>
84
84
*
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
+ *
85
97
*/
86
98
export class PutDedicatedIpPoolScalingAttributesCommand extends $Command <
87
99
PutDedicatedIpPoolScalingAttributesCommandInput ,
You can’t perform that action at this time.
0 commit comments