CfnDedicatedIpPoolProps

class aws_cdk.aws_pinpointemail.CfnDedicatedIpPoolProps(*, pool_name=None, tags=None)

Bases: object

Properties 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-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_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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html#cfn-pinpointemail-dedicatedippool-poolname

tags

An object that defines the tags (keys and values) that you want to associate with the dedicated IP pool.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpointemail-dedicatedippool.html#cfn-pinpointemail-dedicatedippool-tags