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

com.pulumi.aws.connect.inputs.GetContactFlowArgs 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.connect.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class GetContactFlowArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetContactFlowArgs Empty = new GetContactFlowArgs();

    /**
     * Returns information on a specific Contact Flow by contact flow id
     * 
     */
    @Import(name="contactFlowId")
    private @Nullable Output contactFlowId;

    /**
     * @return Returns information on a specific Contact Flow by contact flow id
     * 
     */
    public Optional> contactFlowId() {
        return Optional.ofNullable(this.contactFlowId);
    }

    /**
     * Reference to the hosting Amazon Connect Instance
     * 
     */
    @Import(name="instanceId", required=true)
    private Output instanceId;

    /**
     * @return Reference to the hosting Amazon Connect Instance
     * 
     */
    public Output instanceId() {
        return this.instanceId;
    }

    /**
     * Returns information on a specific Contact Flow by name
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return Returns information on a specific Contact Flow by name
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * Tags to assign to the Contact Flow.
     * 
     */
    @Import(name="tags")
    private @Nullable Output> tags;

    /**
     * @return Tags to assign to the Contact Flow.
     * 
     */
    public Optional>> tags() {
        return Optional.ofNullable(this.tags);
    }

    /**
     * Type of Contact Flow.
     * 
     */
    @Import(name="type")
    private @Nullable Output type;

    /**
     * @return Type of Contact Flow.
     * 
     */
    public Optional> type() {
        return Optional.ofNullable(this.type);
    }

    private GetContactFlowArgs() {}

    private GetContactFlowArgs(GetContactFlowArgs $) {
        this.contactFlowId = $.contactFlowId;
        this.instanceId = $.instanceId;
        this.name = $.name;
        this.tags = $.tags;
        this.type = $.type;
    }

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

    public static final class Builder {
        private GetContactFlowArgs $;

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

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

        /**
         * @param contactFlowId Returns information on a specific Contact Flow by contact flow id
         * 
         * @return builder
         * 
         */
        public Builder contactFlowId(@Nullable Output contactFlowId) {
            $.contactFlowId = contactFlowId;
            return this;
        }

        /**
         * @param contactFlowId Returns information on a specific Contact Flow by contact flow id
         * 
         * @return builder
         * 
         */
        public Builder contactFlowId(String contactFlowId) {
            return contactFlowId(Output.of(contactFlowId));
        }

        /**
         * @param instanceId Reference to the hosting Amazon Connect Instance
         * 
         * @return builder
         * 
         */
        public Builder instanceId(Output instanceId) {
            $.instanceId = instanceId;
            return this;
        }

        /**
         * @param instanceId Reference to the hosting Amazon Connect Instance
         * 
         * @return builder
         * 
         */
        public Builder instanceId(String instanceId) {
            return instanceId(Output.of(instanceId));
        }

        /**
         * @param name Returns information on a specific Contact Flow by name
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name Returns information on a specific Contact Flow by name
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param tags Tags to assign to the Contact Flow.
         * 
         * @return builder
         * 
         */
        public Builder tags(@Nullable Output> tags) {
            $.tags = tags;
            return this;
        }

        /**
         * @param tags Tags to assign to the Contact Flow.
         * 
         * @return builder
         * 
         */
        public Builder tags(Map tags) {
            return tags(Output.of(tags));
        }

        /**
         * @param type Type of Contact Flow.
         * 
         * @return builder
         * 
         */
        public Builder type(@Nullable Output type) {
            $.type = type;
            return this;
        }

        /**
         * @param type Type of Contact Flow.
         * 
         * @return builder
         * 
         */
        public Builder type(String type) {
            return type(Output.of(type));
        }

        public GetContactFlowArgs build() {
            if ($.instanceId == null) {
                throw new MissingRequiredPropertyException("GetContactFlowArgs", "instanceId");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy