interface CfnDedicatedIpPoolProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.SES.CfnDedicatedIpPoolProps |
Java | software.amazon.awscdk.services.ses.CfnDedicatedIpPoolProps |
Python | aws_cdk.aws_ses.CfnDedicatedIpPoolProps |
TypeScript | @aws-cdk/aws-ses » CfnDedicatedIpPoolProps |
Properties for defining a CfnDedicatedIpPool
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as ses from '@aws-cdk/aws-ses';
const cfnDedicatedIpPoolProps: ses.CfnDedicatedIpPoolProps = {
poolName: 'poolName',
scalingMode: 'scalingMode',
};
Properties
Name | Type | Description |
---|---|---|
pool | string | The name of the dedicated IP pool that the IP address is associated with. |
scaling | string | The type of scaling mode. |
poolName?
Type:
string
(optional)
The name of the dedicated IP pool that the IP address is associated with.
scalingMode?
Type:
string
(optional)
The type of scaling mode.
The following options are available:
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 .
The STANDARD
option is selected by default if no value is specified.
Updating ScalingMode doesn't require a replacement if you're updating its value from
STANDARD
toMANAGED
. However, updating ScalingMode fromMANAGED
toSTANDARD
is not supported.