com.pulumi.aws.opensearch.inputs.GetDomainOffPeakWindowOptionsOffPeakWindowArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** 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.opensearch.inputs;
import com.pulumi.aws.opensearch.inputs.GetDomainOffPeakWindowOptionsOffPeakWindowWindowStartTimeArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.util.List;
import java.util.Objects;
public final class GetDomainOffPeakWindowOptionsOffPeakWindowArgs extends com.pulumi.resources.ResourceArgs {
public static final GetDomainOffPeakWindowOptionsOffPeakWindowArgs Empty = new GetDomainOffPeakWindowOptionsOffPeakWindowArgs();
/**
* 10h window for updates
*
*/
@Import(name="windowStartTimes", required=true)
private Output> windowStartTimes;
/**
* @return 10h window for updates
*
*/
public Output> windowStartTimes() {
return this.windowStartTimes;
}
private GetDomainOffPeakWindowOptionsOffPeakWindowArgs() {}
private GetDomainOffPeakWindowOptionsOffPeakWindowArgs(GetDomainOffPeakWindowOptionsOffPeakWindowArgs $) {
this.windowStartTimes = $.windowStartTimes;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetDomainOffPeakWindowOptionsOffPeakWindowArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetDomainOffPeakWindowOptionsOffPeakWindowArgs $;
public Builder() {
$ = new GetDomainOffPeakWindowOptionsOffPeakWindowArgs();
}
public Builder(GetDomainOffPeakWindowOptionsOffPeakWindowArgs defaults) {
$ = new GetDomainOffPeakWindowOptionsOffPeakWindowArgs(Objects.requireNonNull(defaults));
}
/**
* @param windowStartTimes 10h window for updates
*
* @return builder
*
*/
public Builder windowStartTimes(Output> windowStartTimes) {
$.windowStartTimes = windowStartTimes;
return this;
}
/**
* @param windowStartTimes 10h window for updates
*
* @return builder
*
*/
public Builder windowStartTimes(List windowStartTimes) {
return windowStartTimes(Output.of(windowStartTimes));
}
/**
* @param windowStartTimes 10h window for updates
*
* @return builder
*
*/
public Builder windowStartTimes(GetDomainOffPeakWindowOptionsOffPeakWindowWindowStartTimeArgs... windowStartTimes) {
return windowStartTimes(List.of(windowStartTimes));
}
public GetDomainOffPeakWindowOptionsOffPeakWindowArgs build() {
if ($.windowStartTimes == null) {
throw new MissingRequiredPropertyException("GetDomainOffPeakWindowOptionsOffPeakWindowArgs", "windowStartTimes");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy