Interface CfnDedicatedIpPoolMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDedicatedIpPoolMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:05.520Z")
@Stability(Stable)
public interface CfnDedicatedIpPoolMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnDedicatedIpPoolPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.ses.*;
CfnDedicatedIpPoolMixinProps cfnDedicatedIpPoolMixinProps = CfnDedicatedIpPoolMixinProps.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 forCfnDedicatedIpPoolMixinPropsstatic final classAn implementation forCfnDedicatedIpPoolMixinProps -
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
-