Enum ScalingMode

java.lang.Object
java.lang.Enum<ScalingMode>
software.amazon.awscdk.services.ses.ScalingMode
All Implemented Interfaces:
Serializable, Comparable<ScalingMode>, java.lang.constant.Constable

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:14.087Z") @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:
  • Enum Constant Details

    • STANDARD

      @Stability(Stable) public static final ScalingMode STANDARD
      The customer controls which IPs are part of the dedicated IP pool.
    • MANAGED

      @Stability(Stable) public static final ScalingMode MANAGED
      The reputation and number of IPs are automatically managed by Amazon SES.
  • Method Details

    • values

      public static ScalingMode[] 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

      public static ScalingMode valueOf(String name)
      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 name
      NullPointerException - if the argument is null