CfnDedicatedIpPoolProps
- class aws_cdk.aws_ses.CfnDedicatedIpPoolProps(*, pool_name=None, scaling_mode=None, tags=None)
Bases:
object
Properties 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 . TheSTANDARD
option is selected by default if no value is specified. .. epigraph:: Updating ScalingMode doesn’t require a replacement if you’re updating its value fromSTANDARD
toMANAGED
. However, updating ScalingMode fromMANAGED
toSTANDARD
is not supported.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – An object that defines the tags (keys and values) that you want to associate with the pool.
- See:
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. from aws_cdk import aws_ses as ses cfn_dedicated_ip_pool_props = ses.CfnDedicatedIpPoolProps( pool_name="poolName", scaling_mode="scalingMode", tags=[CfnTag( key="key", value="value" )] )
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
STANDARD
option 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.
- tags
An object that defines the tags (keys and values) that you want to associate with the pool.