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

com.pulumi.aws.sfn.inputs.AliasState 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.sfn.inputs;

import com.pulumi.aws.sfn.inputs.AliasRoutingConfigurationArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final AliasState Empty = new AliasState();

    /**
     * The Amazon Resource Name (ARN) identifying your state machine alias.
     * 
     */
    @Import(name="arn")
    private @Nullable Output arn;

    /**
     * @return The Amazon Resource Name (ARN) identifying your state machine alias.
     * 
     */
    public Optional> arn() {
        return Optional.ofNullable(this.arn);
    }

    /**
     * The date the state machine alias was created.
     * 
     */
    @Import(name="creationDate")
    private @Nullable Output creationDate;

    /**
     * @return The date the state machine alias was created.
     * 
     */
    public Optional> creationDate() {
        return Optional.ofNullable(this.creationDate);
    }

    /**
     * Description of the alias.
     * 
     */
    @Import(name="description")
    private @Nullable Output description;

    /**
     * @return Description of the alias.
     * 
     */
    public Optional> description() {
        return Optional.ofNullable(this.description);
    }

    /**
     * Name for the alias you are creating.
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return Name for the alias you are creating.
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * The StateMachine alias' route configuration settings. Fields documented below
     * 
     */
    @Import(name="routingConfigurations")
    private @Nullable Output> routingConfigurations;

    /**
     * @return The StateMachine alias' route configuration settings. Fields documented below
     * 
     */
    public Optional>> routingConfigurations() {
        return Optional.ofNullable(this.routingConfigurations);
    }

    private AliasState() {}

    private AliasState(AliasState $) {
        this.arn = $.arn;
        this.creationDate = $.creationDate;
        this.description = $.description;
        this.name = $.name;
        this.routingConfigurations = $.routingConfigurations;
    }

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

    public static final class Builder {
        private AliasState $;

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

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

        /**
         * @param arn The Amazon Resource Name (ARN) identifying your state machine alias.
         * 
         * @return builder
         * 
         */
        public Builder arn(@Nullable Output arn) {
            $.arn = arn;
            return this;
        }

        /**
         * @param arn The Amazon Resource Name (ARN) identifying your state machine alias.
         * 
         * @return builder
         * 
         */
        public Builder arn(String arn) {
            return arn(Output.of(arn));
        }

        /**
         * @param creationDate The date the state machine alias was created.
         * 
         * @return builder
         * 
         */
        public Builder creationDate(@Nullable Output creationDate) {
            $.creationDate = creationDate;
            return this;
        }

        /**
         * @param creationDate The date the state machine alias was created.
         * 
         * @return builder
         * 
         */
        public Builder creationDate(String creationDate) {
            return creationDate(Output.of(creationDate));
        }

        /**
         * @param description Description of the alias.
         * 
         * @return builder
         * 
         */
        public Builder description(@Nullable Output description) {
            $.description = description;
            return this;
        }

        /**
         * @param description Description of the alias.
         * 
         * @return builder
         * 
         */
        public Builder description(String description) {
            return description(Output.of(description));
        }

        /**
         * @param name Name for the alias you are creating.
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name Name for the alias you are creating.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param routingConfigurations The StateMachine alias' route configuration settings. Fields documented below
         * 
         * @return builder
         * 
         */
        public Builder routingConfigurations(@Nullable Output> routingConfigurations) {
            $.routingConfigurations = routingConfigurations;
            return this;
        }

        /**
         * @param routingConfigurations The StateMachine alias' route configuration settings. Fields documented below
         * 
         * @return builder
         * 
         */
        public Builder routingConfigurations(List routingConfigurations) {
            return routingConfigurations(Output.of(routingConfigurations));
        }

        /**
         * @param routingConfigurations The StateMachine alias' route configuration settings. Fields documented below
         * 
         * @return builder
         * 
         */
        public Builder routingConfigurations(AliasRoutingConfigurationArgs... routingConfigurations) {
            return routingConfigurations(List.of(routingConfigurations));
        }

        public AliasState build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy