interface DedicatedIpPoolProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.SES.DedicatedIpPoolProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsses#DedicatedIpPoolProps |
Java | software.amazon.awscdk.services.ses.DedicatedIpPoolProps |
Python | aws_cdk.aws_ses.DedicatedIpPoolProps |
TypeScript (source) | aws-cdk-lib » aws_ses » DedicatedIpPoolProps |
Properties for a dedicated IP pool.
Example
new ses.DedicatedIpPool(this, 'Pool', {
dedicatedIpPoolName: 'mypool',
scalingMode: ses.ScalingMode.STANDARD,
});
Properties
Name | Type | Description |
---|---|---|
dedicated | string | A name for the dedicated IP pool. |
scaling | Scaling | The type of scailing mode to use for this IP pool. |
dedicatedIpPoolName?
Type:
string
(optional, default: a CloudFormation generated name)
A name for the dedicated IP pool.
The name must adhere to specific constraints: it can only include lowercase letters (a-z), numbers (0-9), underscores (_), and hyphens (-), and must not exceed 64 characters in length.
scalingMode?
Type:
Scaling
(optional, default: ScalingMode.STANDARD)
The type of scailing mode to use for this IP pool.
Updating ScalingMode doesn't require a replacement if you're updating its value from STANDARD
to MANAGED
.
However, updating ScalingMode from MANAGED
to STANDARD
is not supported.