interface DedicatedIpPoolReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.SES.DedicatedIpPoolReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsses#DedicatedIpPoolReference |
Java | software.amazon.awscdk.interfaces.ses.DedicatedIpPoolReference |
Python | aws_cdk.interfaces.aws_ses.DedicatedIpPoolReference |
TypeScript | aws-cdk-lib » interfaces » aws_ses » DedicatedIpPoolReference |
A reference to a DedicatedIpPool resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ses as interfaces_aws_ses } from 'aws-cdk-lib/interfaces';
const dedicatedIpPoolReference: interfaces_aws_ses.DedicatedIpPoolReference = {
poolName: 'poolName',
};
Properties
| Name | Type | Description |
|---|---|---|
| pool | string | The PoolName of the DedicatedIpPool resource. |
poolName
Type:
string
The PoolName of the DedicatedIpPool resource.

.NET
Go
Java
Python
TypeScript