Class CfnDedicatedIpPoolProps
Properties for defining a CfnDedicatedIpPool.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDedicatedIpPoolProps : ICfnDedicatedIpPoolProps
Syntax (vb)
Public Class CfnDedicatedIpPoolProps Implements ICfnDedicatedIpPoolProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-dedicatedippool.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SES;
var cfnDedicatedIpPoolProps = new CfnDedicatedIpPoolProps {
PoolName = "poolName",
ScalingMode = "scalingMode",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
| CfnDedicatedIpPoolProps() | Properties for defining a |
Properties
| PoolName | The name of the dedicated IP pool that the IP address is associated with. |
| ScalingMode | The type of scaling mode. |
| Tags | An object that defines the tags (keys and values) that you want to associate with the pool. |
Constructors
CfnDedicatedIpPoolProps()
Properties for defining a CfnDedicatedIpPool.
public CfnDedicatedIpPoolProps()
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-dedicatedippool.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SES;
var cfnDedicatedIpPoolProps = new CfnDedicatedIpPoolProps {
PoolName = "poolName",
ScalingMode = "scalingMode",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Properties
PoolName
The name of the dedicated IP pool that the IP address is associated with.
public string? PoolName { get; set; }
Property Value
Remarks
ScalingMode
The type of scaling mode.
public string? ScalingMode { get; set; }
Property Value
Remarks
The following options are available:
The STANDARD option is selected by default if no value is specified.
Updating <em>ScalingMode</em> doesn't require a replacement if you're updating its value from <code>STANDARD</code> to <code>MANAGED</code> . However, updating <em>ScalingMode</em> from <code>MANAGED</code> to <code>STANDARD</code> is not supported.
Tags
An object that defines the tags (keys and values) that you want to associate with the pool.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]