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

com.pulumi.azurenative.awsconnector.outputs.OffPeakWindowResponse Maven / Gradle / Ivy

There is a newer version: 2.82.0
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.azurenative.awsconnector.outputs;

import com.pulumi.azurenative.awsconnector.outputs.WindowStartTimeResponse;
import com.pulumi.core.annotations.CustomType;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class OffPeakWindowResponse {
    /**
     * @return <p>A custom start time for the off-peak window, in Coordinated Universal Time (UTC). The window length will always be 10 hours, so you can't specify an end time. For example, if you specify 11:00 P.M. UTC as a start time, the end time will automatically be set to 9:00 A.M.</p>
     * 
     */
    private @Nullable WindowStartTimeResponse windowStartTime;

    private OffPeakWindowResponse() {}
    /**
     * @return <p>A custom start time for the off-peak window, in Coordinated Universal Time (UTC). The window length will always be 10 hours, so you can't specify an end time. For example, if you specify 11:00 P.M. UTC as a start time, the end time will automatically be set to 9:00 A.M.</p>
     * 
     */
    public Optional windowStartTime() {
        return Optional.ofNullable(this.windowStartTime);
    }

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

    public static Builder builder(OffPeakWindowResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable WindowStartTimeResponse windowStartTime;
        public Builder() {}
        public Builder(OffPeakWindowResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.windowStartTime = defaults.windowStartTime;
        }

        @CustomType.Setter
        public Builder windowStartTime(@Nullable WindowStartTimeResponse windowStartTime) {

            this.windowStartTime = windowStartTime;
            return this;
        }
        public OffPeakWindowResponse build() {
            final var _resultValue = new OffPeakWindowResponse();
            _resultValue.windowStartTime = windowStartTime;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy