interface CfnDedicatedIpPoolMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.PinpointEmail.Mixins.CfnDedicatedIpPoolMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspinpointemail/mixins#CfnDedicatedIpPoolMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.pinpointemail.mixins.CfnDedicatedIpPoolMixinProps |
Python | aws_cdk.mixins_preview.aws_pinpointemail.mixins.CfnDedicatedIpPoolMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_pinpointemail » mixins » 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 { mixins as pinpointemail_mixins } from '@aws-cdk/mixins-preview/aws-pinpointemail';
const cfnDedicatedIpPoolMixinProps: pinpointemail_mixins.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