
com.pulumi.aws.lex.inputs.BotClarificationPromptMessageArgs Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.lex.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class BotClarificationPromptMessageArgs extends com.pulumi.resources.ResourceArgs {
public static final BotClarificationPromptMessageArgs Empty = new BotClarificationPromptMessageArgs();
/**
* The text of the message.
*
*/
@Import(name="content", required=true)
private Output content;
/**
* @return The text of the message.
*
*/
public Output content() {
return this.content;
}
/**
* The content type of the message string.
*
*/
@Import(name="contentType", required=true)
private Output contentType;
/**
* @return The content type of the message string.
*
*/
public Output contentType() {
return this.contentType;
}
/**
* Identifies the message group that the message belongs to. When a group
* is assigned to a message, Amazon Lex returns one message from each group in the response.
*
*/
@Import(name="groupNumber")
private @Nullable Output groupNumber;
/**
* @return Identifies the message group that the message belongs to. When a group
* is assigned to a message, Amazon Lex returns one message from each group in the response.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy