Enum IdentityCertificateStatus
java.lang.Object
java.lang.Enum<IdentityCertificateStatus>
software.amazon.awssdk.services.sesv2.model.IdentityCertificateStatus
- All Implemented Interfaces:
Serializable,Comparable<IdentityCertificateStatus>
@Generated("software.amazon.awssdk:codegen")
public enum IdentityCertificateStatus
extends Enum<IdentityCertificateStatus>
The status of an S/MIME certificate that's associated with an email identity. The status can be one of the following values:
-
PROVISIONING– The certificate association was created and the certificate is being prepared for use. -
ACTIVE– The certificate is ready to use for signing. -
INACTIVE– The certificate is no longer used for signing. -
DEPROVISIONING– The certificate association is being cleaned up. -
FAILED– The certificate couldn't be prepared for use, or the certificate has expired.
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic IdentityCertificateStatusUse this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<IdentityCertificateStatus> toString()static IdentityCertificateStatusReturns the enum constant of this type with the specified name.static IdentityCertificateStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
PROVISIONING
-
INACTIVE
-
DEPROVISIONING
-
ACTIVE
-
FAILED
-
UNKNOWN_TO_SDK_VERSION
-
-
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
-
toString
- Overrides:
toStringin classEnum<IdentityCertificateStatus>
-
fromValue
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- IdentityCertificateStatus corresponding to the value
-
knownValues
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownIdentityCertificateStatuss
-