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
[TagsProperty
,Dict
[str
,Any
]]]]) – An object that defines the tags (keys and values) that you want to associate with the dedicated IP pool.
- Link:
- 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_pinpointemail as pinpointemail cfn_dedicated_ip_pool_props = pinpointemail.CfnDedicatedIpPoolProps( pool_name="poolName", tags=[pinpointemail.CfnDedicatedIpPool.TagsProperty( 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.