Show / Hide Table of Contents

Class DedicatedIpPoolProps

Properties for a dedicated IP pool.

Inheritance
object
DedicatedIpPoolProps
Implements
IDedicatedIpPoolProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

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

ScalingMode?

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

Implements

IDedicatedIpPoolProps
Back to top Generated by DocFX