Interface CfnDedicatedIpPoolProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDedicatedIpPoolProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:41.372Z")
@Stability(Stable)
public interface CfnDedicatedIpPoolProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnDedicatedIpPool
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.ses.*; CfnDedicatedIpPoolProps cfnDedicatedIpPoolProps = CfnDedicatedIpPoolProps.builder() .poolName("poolName") .scalingMode("scalingMode") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDedicatedIpPoolProps
static final class
An implementation forCfnDedicatedIpPoolProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPoolName
The name of the dedicated IP pool that the IP address is associated with. -
getScalingMode
The type of scaling mode.The following options are available:
STANDARD
- The customer controls which IPs are part of the dedicated IP pool.MANAGED
- The reputation and number of IPs are automatically managed by Amazon SES .
The
STANDARD
option is selected by default if no value is specified.Updating ScalingMode doesn't require a replacement if you're updating its value from
STANDARD
toMANAGED
. However, updating ScalingMode fromMANAGED
toSTANDARD
is not supported. -
builder
- Returns:
- a
CfnDedicatedIpPoolProps.Builder
ofCfnDedicatedIpPoolProps
-