Tabnine Logo
MessageActionType
Code IndexAdd Tabnine to your IDE (free)

How to use
MessageActionType
in
software.amazon.awssdk.services.cognitoidentityprovider.model

Best Java code snippets using software.amazon.awssdk.services.cognitoidentityprovider.model.MessageActionType (Showing top 8 results out of 315)

origin: aws/aws-sdk-java-v2

/**
 * <p>
 * Set to <code>"RESEND"</code> to resend the invitation message to a user that already exists and reset the
 * expiration limit on the user's account. Set to <code>"SUPPRESS"</code> to suppress sending the message. Only one
 * value can be specified.
 * </p>
 * <p>
 * If the service returns an enum value that is not available in the current SDK version, {@link #messageAction}
 * will return {@link MessageActionType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available
 * from {@link #messageActionAsString}.
 * </p>
 * 
 * @return Set to <code>"RESEND"</code> to resend the invitation message to a user that already exists and reset the
 *         expiration limit on the user's account. Set to <code>"SUPPRESS"</code> to suppress sending the message.
 *         Only one value can be specified.
 * @see MessageActionType
 */
public MessageActionType messageAction() {
  return MessageActionType.fromValue(messageAction);
}
origin: aws/aws-sdk-java-v2

/**
 * Use this in place of valueOf to convert the raw string returned by the service into the enum value.
 *
 * @param value
 *        real value
 * @return MessageActionType corresponding to the value
 */
public static MessageActionType fromValue(String value) {
  if (value == null) {
    return null;
  }
  return Stream.of(MessageActionType.values()).filter(e -> e.toString().equals(value)).findFirst()
      .orElse(UNKNOWN_TO_SDK_VERSION);
}
origin: aws/aws-sdk-java-v2

@Override
public final Builder messageAction(MessageActionType messageAction) {
  this.messageAction(messageAction.toString());
  return this;
}
origin: aws/aws-sdk-java-v2

  /**
   * Use this in place of {@link #values()} to return a {@link Set} of all values known to the SDK. This will return
   * all known enum values except {@link #UNKNOWN_TO_SDK_VERSION}.
   *
   * @return a {@link Set} of known {@link MessageActionType}s
   */
  public static Set<MessageActionType> knownValues() {
    return Stream.of(values()).filter(v -> v != UNKNOWN_TO_SDK_VERSION).collect(toSet());
  }
}
origin: software.amazon.awssdk/cognitoidp

/**
 * Use this in place of valueOf to convert the raw string returned by the service into the enum value.
 *
 * @param value
 *        real value
 * @return MessageActionType corresponding to the value
 */
public static MessageActionType fromValue(String value) {
  if (value == null) {
    return null;
  }
  return Stream.of(MessageActionType.values()).filter(e -> e.toString().equals(value)).findFirst()
      .orElse(UNKNOWN_TO_SDK_VERSION);
}
origin: software.amazon.awssdk/cognitoidp

@Override
public final Builder messageAction(MessageActionType messageAction) {
  this.messageAction(messageAction.toString());
  return this;
}
origin: software.amazon.awssdk/cognitoidp

  /**
   * Use this in place of {@link #values()} to return a {@link Set} of all values known to the SDK. This will return
   * all known enum values except {@link #UNKNOWN_TO_SDK_VERSION}.
   *
   * @return a {@link Set} of known {@link MessageActionType}s
   */
  public static Set<MessageActionType> knownValues() {
    return Stream.of(values()).filter(v -> v != UNKNOWN_TO_SDK_VERSION).collect(toSet());
  }
}
origin: software.amazon.awssdk/cognitoidp

/**
 * <p>
 * Set to <code>"RESEND"</code> to resend the invitation message to a user that already exists and reset the
 * expiration limit on the user's account. Set to <code>"SUPPRESS"</code> to suppress sending the message. Only one
 * value can be specified.
 * </p>
 * <p>
 * If the service returns an enum value that is not available in the current SDK version, {@link #messageAction}
 * will return {@link MessageActionType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available
 * from {@link #messageActionAsString}.
 * </p>
 * 
 * @return Set to <code>"RESEND"</code> to resend the invitation message to a user that already exists and reset the
 *         expiration limit on the user's account. Set to <code>"SUPPRESS"</code> to suppress sending the message.
 *         Only one value can be specified.
 * @see MessageActionType
 */
public MessageActionType messageAction() {
  return MessageActionType.fromValue(messageAction);
}
software.amazon.awssdk.services.cognitoidentityprovider.modelMessageActionType

Most used methods

  • fromValue
    Use this in place of valueOf to convert the raw string returned by the service into the enum value.
  • toString
  • values

Popular in Java

  • Start an intent from android
  • notifyDataSetChanged (ArrayAdapter)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • putExtra (Intent)
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • JCheckBox (javax.swing)
  • Base64 (org.apache.commons.codec.binary)
    Provides Base64 encoding and decoding as defined by RFC 2045.This class implements section 6.8. Base
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
  • Top 12 Jupyter Notebook extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now