Interface IDedicatedIpPoolProps
Properties for a dedicated IP pool.
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IDedicatedIpPoolProps
Syntax (vb)
Public Interface IDedicatedIpPoolProps
Remarks
ExampleMetadata: infused
Examples
new DedicatedIpPool(this, "Pool", new DedicatedIpPoolProps {
DedicatedIpPoolName = "mypool",
ScalingMode = ScalingMode.STANDARD
});
Synopsis
Properties
DedicatedIpPoolName | A name for the dedicated IP pool. |
ScalingMode | The type of scailing mode to use for this IP pool. |
Properties
DedicatedIpPoolName
A name for the dedicated IP pool.
string? DedicatedIpPoolName { get; }
Property Value
Remarks
The name must adhere to specific constraints: it can only include lowercase letters (a-z), numbers (0-9), underscores (_), and hyphens (-), and must not exceed 64 characters in length.
Default: - a CloudFormation generated name
ScalingMode
The type of scailing mode to use for this IP pool.
ScalingMode? ScalingMode { get; }
Property Value
Remarks
Updating ScalingMode doesn't require a replacement if you're updating its value from STANDARD
to MANAGED
.
However, updating ScalingMode from MANAGED
to STANDARD
is not supported.
Default: ScalingMode.STANDARD