CfnDedicatedIpPoolProps
- class aws_cdk.aws_pinpointemail.CfnDedicatedIpPoolProps(*, pool_name=None, tags=None)
Bases:
objectProperties for defining a
CfnDedicatedIpPool.- Parameters:
pool_name (
Optional[str]) – The name of the dedicated IP pool.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An object that defines the tags (keys and values) that you want to associate with the dedicated IP pool.
- See:
- 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_pinpointemail as pinpointemail cfn_dedicated_ip_pool_props = pinpointemail.CfnDedicatedIpPoolProps( pool_name="poolName", tags=[CfnTag( key="key", value="value" )] )
Attributes
- pool_name
The name of the dedicated IP pool.
- tags
An object that defines the tags (keys and values) that you want to associate with the dedicated IP pool.