CfnDedicatedIpPoolProps
- class aws_cdk.aws_ses.CfnDedicatedIpPoolProps(*, pool_name=None, scaling_mode=None)
Bases:
objectProperties for defining a
CfnDedicatedIpPool.- Parameters:
pool_name (
Optional[str]) – The name of the dedicated IP pool that the IP address is associated with.scaling_mode (
Optional[str]) – 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 . TheSTANDARDoption is selected by default if no value is specified. .. epigraph:: Updating ScalingMode doesn’t require a replacement if you’re updating its value fromSTANDARDtoMANAGED. However, updating ScalingMode fromMANAGEDtoSTANDARDis not supported.
- Link:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-dedicatedippool.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_ses as ses cfn_dedicated_ip_pool_props = ses.CfnDedicatedIpPoolProps( pool_name="poolName", scaling_mode="scalingMode" )
Attributes
- pool_name
The name of the dedicated IP pool that the IP address is associated with.
- scaling_mode
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
STANDARDoption is selected by default if no value is specified. .. epigraph: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.