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

com.pulumi.aws.evidently.inputs.LaunchExecutionArgs 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.66.3
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.evidently.inputs;

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


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

    public static final LaunchExecutionArgs Empty = new LaunchExecutionArgs();

    /**
     * The date and time that the launch ended.
     * 
     */
    @Import(name="endedTime")
    private @Nullable Output endedTime;

    /**
     * @return The date and time that the launch ended.
     * 
     */
    public Optional> endedTime() {
        return Optional.ofNullable(this.endedTime);
    }

    /**
     * The date and time that the launch started.
     * 
     */
    @Import(name="startedTime")
    private @Nullable Output startedTime;

    /**
     * @return The date and time that the launch started.
     * 
     */
    public Optional> startedTime() {
        return Optional.ofNullable(this.startedTime);
    }

    private LaunchExecutionArgs() {}

    private LaunchExecutionArgs(LaunchExecutionArgs $) {
        this.endedTime = $.endedTime;
        this.startedTime = $.startedTime;
    }

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

    public static final class Builder {
        private LaunchExecutionArgs $;

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

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

        /**
         * @param endedTime The date and time that the launch ended.
         * 
         * @return builder
         * 
         */
        public Builder endedTime(@Nullable Output endedTime) {
            $.endedTime = endedTime;
            return this;
        }

        /**
         * @param endedTime The date and time that the launch ended.
         * 
         * @return builder
         * 
         */
        public Builder endedTime(String endedTime) {
            return endedTime(Output.of(endedTime));
        }

        /**
         * @param startedTime The date and time that the launch started.
         * 
         * @return builder
         * 
         */
        public Builder startedTime(@Nullable Output startedTime) {
            $.startedTime = startedTime;
            return this;
        }

        /**
         * @param startedTime The date and time that the launch started.
         * 
         * @return builder
         * 
         */
        public Builder startedTime(String startedTime) {
            return startedTime(Output.of(startedTime));
        }

        public LaunchExecutionArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy