Class DedicatedIpPool
A dedicated IP pool.
Inherited Members
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DedicatedIpPool : Resource, IDedicatedIpPool, IResource, IConstruct, IDependable
Syntax (vb)
Public Class DedicatedIpPool Inherits Resource Implements IDedicatedIpPool, IResource, IConstruct, IDependable
Remarks
ExampleMetadata: infused
Examples
new DedicatedIpPool(this, "Pool", new DedicatedIpPoolProps {
DedicatedIpPoolName = "mypool",
ScalingMode = ScalingMode.STANDARD
});
Synopsis
Constructors
DedicatedIpPool(Construct, string, IDedicatedIpPoolProps?) | A dedicated IP pool. |
Properties
DedicatedIpPoolName | The name of the dedicated IP pool. |
PROPERTY_INJECTION_ID | Uniquely identifies this class. |
Methods
FromDedicatedIpPoolName(Construct, string, string) | Use an existing dedicated IP pool. |
Constructors
DedicatedIpPool(Construct, string, IDedicatedIpPoolProps?)
A dedicated IP pool.
public DedicatedIpPool(Construct scope, string id, IDedicatedIpPoolProps? props = null)
Parameters
- scope Construct
- id string
- props IDedicatedIpPoolProps
Remarks
ExampleMetadata: infused
Examples
new DedicatedIpPool(this, "Pool", new DedicatedIpPoolProps {
DedicatedIpPoolName = "mypool",
ScalingMode = ScalingMode.STANDARD
});
Properties
DedicatedIpPoolName
The name of the dedicated IP pool.
public virtual string DedicatedIpPoolName { get; }
Property Value
Remarks
ExampleMetadata: infused
PROPERTY_INJECTION_ID
Uniquely identifies this class.
public static string PROPERTY_INJECTION_ID { get; }
Property Value
Remarks
ExampleMetadata: infused
Methods
FromDedicatedIpPoolName(Construct, string, string)
Use an existing dedicated IP pool.
public static IDedicatedIpPool FromDedicatedIpPoolName(Construct scope, string id, string dedicatedIpPoolName)
Parameters
Returns
Remarks
ExampleMetadata: infused
Implements
Constructs.IConstruct
Constructs.IDependable