interface CfnDedicatedIpPoolMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnDedicatedIpPoolMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnDedicatedIpPoolMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnDedicatedIpPoolMixinProps |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnDedicatedIpPoolMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » CfnDedicatedIpPoolMixinProps |
Properties for CfnDedicatedIpPoolPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-dedicatedippool.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ses_mixins } from '@aws-cdk/mixins-preview/aws-ses';
const cfnDedicatedIpPoolMixinProps: ses_mixins.CfnDedicatedIpPoolMixinProps = {
poolName: 'poolName',
scalingMode: 'scalingMode',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| pool | string | The name of the dedicated IP pool that the IP address is associated with. |
| scaling | string | The type of scaling mode. |
| tags? | Cfn[] | An object that defines the tags (keys and values) that you want to associate with the pool. |
poolName?
Type:
string
(optional)
The name of the dedicated IP pool that the IP address is associated with.
scalingMode?
Type:
string
(optional)
The type of scaling mode.
The following options are available:
STANDARD- The customer controls which IPs are part of the dedicated IP pool.MANAGED- The reputation and number of IPs are automatically managed by Amazon SES .
The STANDARD option is selected by default if no value is specified.
Updating ScalingMode doesn't require a replacement if you're updating its value from
STANDARDtoMANAGED. However, updating ScalingMode fromMANAGEDtoSTANDARDis not supported.
tags?
Type:
Cfn[]
(optional)
An object that defines the tags (keys and values) that you want to associate with the pool.

.NET
Go
Java
Python
TypeScript