interface CfnDedicatedIpPoolProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.PinpointEmail.CfnDedicatedIpPoolProps |
Java | software.amazon.awscdk.services.pinpointemail.CfnDedicatedIpPoolProps |
Python | aws_cdk.aws_pinpointemail.CfnDedicatedIpPoolProps |
TypeScript | @aws-cdk/aws-pinpointemail » CfnDedicatedIpPoolProps |
Properties for defining a CfnDedicatedIpPool.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as pinpointemail from '@aws-cdk/aws-pinpointemail';
const cfnDedicatedIpPoolProps: pinpointemail.CfnDedicatedIpPoolProps = {
poolName: 'poolName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| pool | string | The name of the dedicated IP pool. |
| tags? | Tags[] | An object that defines the tags (keys and values) that you want to associate with the dedicated IP pool. |
poolName?
Type:
string
(optional)
The name of the dedicated IP pool.
tags?
Type:
Tags[]
(optional)
An object that defines the tags (keys and values) that you want to associate with the dedicated IP pool.

.NET
Java
Python
TypeScript