interface CfnDedicatedIpPoolMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.PinpointEmail.CfnDedicatedIpPoolMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspinpointemail#CfnDedicatedIpPoolMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.pinpointemail.CfnDedicatedIpPoolMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_pinpointemail.CfnDedicatedIpPoolMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_pinpointemail » CfnDedicatedIpPoolMixinProps |
Properties for CfnDedicatedIpPoolPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_pinpointemail as pinpointemail } from '@aws-cdk/cfn-property-mixins';
const cfnDedicatedIpPoolMixinProps: pinpointemail.CfnDedicatedIpPoolMixinProps = {
poolName: 'poolName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| pool | string | The name of the dedicated IP pool. |
| tags? | Cfn[] | 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:
Cfn[]
(optional)
An object that defines the tags (keys and values) that you want to associate with the dedicated IP pool.

.NET
Go
Java
Python
TypeScript