All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.aws.lex.inputs.V2modelsIntentFulfillmentCodeHookPostFulfillmentStatusSpecificationFailureNextStepArgs Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.

There is a newer version: 6.60.0-alpha.1731982519
Show newest version
// *** 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.aws.lex.inputs.V2modelsIntentFulfillmentCodeHookPostFulfillmentStatusSpecificationFailureNextStepDialogActionArgs;
import com.pulumi.aws.lex.inputs.V2modelsIntentFulfillmentCodeHookPostFulfillmentStatusSpecificationFailureNextStepIntentArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class V2modelsIntentFulfillmentCodeHookPostFulfillmentStatusSpecificationFailureNextStepArgs extends com.pulumi.resources.ResourceArgs {

    public static final V2modelsIntentFulfillmentCodeHookPostFulfillmentStatusSpecificationFailureNextStepArgs Empty = new V2modelsIntentFulfillmentCodeHookPostFulfillmentStatusSpecificationFailureNextStepArgs();

    /**
     * Configuration block for action that the bot executes at runtime when the conversation reaches this step. See `dialog_action`.
     * 
     */
    @Import(name="dialogAction")
    private @Nullable Output dialogAction;

    /**
     * @return Configuration block for action that the bot executes at runtime when the conversation reaches this step. See `dialog_action`.
     * 
     */
    public Optional> dialogAction() {
        return Optional.ofNullable(this.dialogAction);
    }

    /**
     * Configuration block for override settings to configure the intent state. See `intent`.
     * 
     */
    @Import(name="intent")
    private @Nullable Output intent;

    /**
     * @return Configuration block for override settings to configure the intent state. See `intent`.
     * 
     */
    public Optional> intent() {
        return Optional.ofNullable(this.intent);
    }

    /**
     * Map of key/value pairs representing session-specific context information. It contains application information passed between Amazon Lex and a client application.
     * 
     */
    @Import(name="sessionAttributes")
    private @Nullable Output> sessionAttributes;

    /**
     * @return Map of key/value pairs representing session-specific context information. It contains application information passed between Amazon Lex and a client application.
     * 
     */
    public Optional>> sessionAttributes() {
        return Optional.ofNullable(this.sessionAttributes);
    }

    private V2modelsIntentFulfillmentCodeHookPostFulfillmentStatusSpecificationFailureNextStepArgs() {}

    private V2modelsIntentFulfillmentCodeHookPostFulfillmentStatusSpecificationFailureNextStepArgs(V2modelsIntentFulfillmentCodeHookPostFulfillmentStatusSpecificationFailureNextStepArgs $) {
        this.dialogAction = $.dialogAction;
        this.intent = $.intent;
        this.sessionAttributes = $.sessionAttributes;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(V2modelsIntentFulfillmentCodeHookPostFulfillmentStatusSpecificationFailureNextStepArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private V2modelsIntentFulfillmentCodeHookPostFulfillmentStatusSpecificationFailureNextStepArgs $;

        public Builder() {
            $ = new V2modelsIntentFulfillmentCodeHookPostFulfillmentStatusSpecificationFailureNextStepArgs();
        }

        public Builder(V2modelsIntentFulfillmentCodeHookPostFulfillmentStatusSpecificationFailureNextStepArgs defaults) {
            $ = new V2modelsIntentFulfillmentCodeHookPostFulfillmentStatusSpecificationFailureNextStepArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param dialogAction Configuration block for action that the bot executes at runtime when the conversation reaches this step. See `dialog_action`.
         * 
         * @return builder
         * 
         */
        public Builder dialogAction(@Nullable Output dialogAction) {
            $.dialogAction = dialogAction;
            return this;
        }

        /**
         * @param dialogAction Configuration block for action that the bot executes at runtime when the conversation reaches this step. See `dialog_action`.
         * 
         * @return builder
         * 
         */
        public Builder dialogAction(V2modelsIntentFulfillmentCodeHookPostFulfillmentStatusSpecificationFailureNextStepDialogActionArgs dialogAction) {
            return dialogAction(Output.of(dialogAction));
        }

        /**
         * @param intent Configuration block for override settings to configure the intent state. See `intent`.
         * 
         * @return builder
         * 
         */
        public Builder intent(@Nullable Output intent) {
            $.intent = intent;
            return this;
        }

        /**
         * @param intent Configuration block for override settings to configure the intent state. See `intent`.
         * 
         * @return builder
         * 
         */
        public Builder intent(V2modelsIntentFulfillmentCodeHookPostFulfillmentStatusSpecificationFailureNextStepIntentArgs intent) {
            return intent(Output.of(intent));
        }

        /**
         * @param sessionAttributes Map of key/value pairs representing session-specific context information. It contains application information passed between Amazon Lex and a client application.
         * 
         * @return builder
         * 
         */
        public Builder sessionAttributes(@Nullable Output> sessionAttributes) {
            $.sessionAttributes = sessionAttributes;
            return this;
        }

        /**
         * @param sessionAttributes Map of key/value pairs representing session-specific context information. It contains application information passed between Amazon Lex and a client application.
         * 
         * @return builder
         * 
         */
        public Builder sessionAttributes(Map sessionAttributes) {
            return sessionAttributes(Output.of(sessionAttributes));
        }

        public V2modelsIntentFulfillmentCodeHookPostFulfillmentStatusSpecificationFailureNextStepArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy