enum ScalingMode
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SES.ScalingMode |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#ScalingMode |
Java | software.amazon.awscdk.services.ses.ScalingMode |
Python | aws_cdk.aws_ses.ScalingMode |
TypeScript (source) | aws-cdk-lib » aws_ses » ScalingMode |
Scaling mode to use for this IP pool.
See also: https://docs.aws.amazon.com/ses/latest/dg/dedicated-ip.html
Example
new ses.DedicatedIpPool(this, 'Pool', {
dedicatedIpPoolName: 'mypool',
scalingMode: ses.ScalingMode.STANDARD,
});
Members
| Name | Description |
|---|---|
| STANDARD | The customer controls which IPs are part of the dedicated IP pool. |
| MANAGED | The reputation and number of IPs are automatically managed by Amazon SES. |
STANDARD
The customer controls which IPs are part of the dedicated IP pool.
MANAGED
The reputation and number of IPs are automatically managed by Amazon SES.

.NET
Go
Java
Python
TypeScript (