Enum ScalingMode
- All Implemented Interfaces:
Serializable
,Comparable<ScalingMode>
,java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-10-11T15:56:06.344Z")
@Stability(Stable)
public enum ScalingMode
extends Enum<ScalingMode>
Scaling mode to use for this IP pool.
Example:
DedicatedIpPool.Builder.create(this, "Pool") .dedicatedIpPoolName("mypool") .scalingMode(ScalingMode.STANDARD) .build();
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic ScalingMode
Returns the enum constant of this type with the specified name.static ScalingMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
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.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-