Class DedicatedIpPoolProps
Properties for a dedicated IP pool.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DedicatedIpPoolProps : IDedicatedIpPoolProps
Syntax (vb)
Public Class DedicatedIpPoolProps Implements IDedicatedIpPoolProps
Remarks
ExampleMetadata: infused
Examples
new DedicatedIpPool(this, "Pool", new DedicatedIpPoolProps {
DedicatedIpPoolName = "mypool",
ScalingMode = ScalingMode.STANDARD
});
Synopsis
Constructors
DedicatedIpPoolProps() | Properties for a dedicated IP pool. |
Properties
DedicatedIpPoolName | A name for the dedicated IP pool. |
ScalingMode | The type of scailing mode to use for this IP pool. |
Constructors
DedicatedIpPoolProps()
Properties for a dedicated IP pool.
public DedicatedIpPoolProps()
Remarks
ExampleMetadata: infused
Examples
new DedicatedIpPool(this, "Pool", new DedicatedIpPoolProps {
DedicatedIpPoolName = "mypool",
ScalingMode = ScalingMode.STANDARD
});
Properties
DedicatedIpPoolName
A name for the dedicated IP pool.
public string? DedicatedIpPoolName { get; set; }
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.
public ScalingMode? ScalingMode { get; set; }
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