Show / Hide Table of Contents

Class DedicatedIpPool

A dedicated IP pool.

Inheritance
object
Resource
DedicatedIpPool
Implements
IDedicatedIpPool
IResource
IConstruct
IDependable
Inherited Members
Resource.IsOwnedResource(IConstruct)
Resource.IsResource(IConstruct)
Resource.ApplyRemovalPolicy(RemovalPolicy)
Resource.GeneratePhysicalName()
Resource.GetResourceArnAttribute(string, IArnComponents)
Resource.GetResourceNameAttribute(string)
Resource.Env
Resource.PhysicalName
Resource.Stack
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

string

Remarks

ExampleMetadata: infused

PROPERTY_INJECTION_ID

Uniquely identifies this class.

public static string PROPERTY_INJECTION_ID { get; }
Property Value

string

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
scope Construct
id string
dedicatedIpPoolName string
Returns

IDedicatedIpPool

Remarks

ExampleMetadata: infused

Implements

IDedicatedIpPool
IResource
Constructs.IConstruct
Constructs.IDependable
Back to top Generated by DocFX