Class DeliveryOptions
- java.lang.Object
-
- software.amazon.awssdk.services.sesv2.model.DeliveryOptions
-
- All Implemented Interfaces:
Serializable
,SdkPojo
,ToCopyableBuilder<DeliveryOptions.Builder,DeliveryOptions>
@Generated("software.amazon.awssdk:codegen") public final class DeliveryOptions extends Object implements SdkPojo, Serializable, ToCopyableBuilder<DeliveryOptions.Builder,DeliveryOptions>
Used to associate a configuration set with a dedicated IP pool.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
DeliveryOptions.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DeliveryOptions.Builder
builder()
boolean
equals(Object obj)
boolean
equalsBySdkFields(Object obj)
<T> Optional<T>
getValueForField(String fieldName, Class<T> clazz)
int
hashCode()
List<SdkField<?>>
sdkFields()
String
sendingPoolName()
The name of the dedicated IP pool to associate with the configuration set.static Class<? extends DeliveryOptions.Builder>
serializableBuilderClass()
TlsPolicy
tlsPolicy()
Specifies whether messages that use the configuration set are required to use Transport Layer Security (TLS).String
tlsPolicyAsString()
Specifies whether messages that use the configuration set are required to use Transport Layer Security (TLS).DeliveryOptions.Builder
toBuilder()
String
toString()
Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
tlsPolicy
public final TlsPolicy tlsPolicy()
Specifies whether messages that use the configuration set are required to use Transport Layer Security (TLS). If the value is
Require
, messages are only delivered if a TLS connection can be established. If the value isOptional
, messages can be delivered in plain text if a TLS connection can't be established.If the service returns an enum value that is not available in the current SDK version,
tlsPolicy
will returnTlsPolicy.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromtlsPolicyAsString()
.- Returns:
- Specifies whether messages that use the configuration set are required to use Transport Layer Security
(TLS). If the value is
Require
, messages are only delivered if a TLS connection can be established. If the value isOptional
, messages can be delivered in plain text if a TLS connection can't be established. - See Also:
TlsPolicy
-
tlsPolicyAsString
public final String tlsPolicyAsString()
Specifies whether messages that use the configuration set are required to use Transport Layer Security (TLS). If the value is
Require
, messages are only delivered if a TLS connection can be established. If the value isOptional
, messages can be delivered in plain text if a TLS connection can't be established.If the service returns an enum value that is not available in the current SDK version,
tlsPolicy
will returnTlsPolicy.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromtlsPolicyAsString()
.- Returns:
- Specifies whether messages that use the configuration set are required to use Transport Layer Security
(TLS). If the value is
Require
, messages are only delivered if a TLS connection can be established. If the value isOptional
, messages can be delivered in plain text if a TLS connection can't be established. - See Also:
TlsPolicy
-
sendingPoolName
public final String sendingPoolName()
The name of the dedicated IP pool to associate with the configuration set.
- Returns:
- The name of the dedicated IP pool to associate with the configuration set.
-
toBuilder
public DeliveryOptions.Builder toBuilder()
- Specified by:
toBuilder
in interfaceToCopyableBuilder<DeliveryOptions.Builder,DeliveryOptions>
-
builder
public static DeliveryOptions.Builder builder()
-
serializableBuilderClass
public static Class<? extends DeliveryOptions.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFields
in interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-