Interface CfnDedicatedIpPoolProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDedicatedIpPoolProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:48.858Z")
@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")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDedicatedIpPoolPropsstatic final classAn 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.- See Also:
-
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
STANDARDoption is selected by default if no value is specified.Updating ScalingMode doesn't require a replacement if you're updating its value from
STANDARDtoMANAGED. However, updating ScalingMode fromMANAGEDtoSTANDARDis not supported.- See Also:
-
getTags
An object that defines the tags (keys and values) that you want to associate with the pool.- See Also:
-
builder
- Returns:
- a
CfnDedicatedIpPoolProps.BuilderofCfnDedicatedIpPoolProps
-