com.pulumi.spotinst.aws.outputs.ElastigroupIntegrationBeanstalkManagedActionsPlatformUpdate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotinst Show documentation
Show all versions of spotinst Show documentation
A Pulumi package for creating and managing spotinst cloud resources.
The 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.spotinst.aws.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ElastigroupIntegrationBeanstalkManagedActionsPlatformUpdate {
private @Nullable String performAt;
/**
* @return Time Window for when action occurs ex. Mon:23:50-Tue:00:20
*
*/
private @Nullable String timeWindow;
/**
* @return Level to update
*
* Usage:
*
*/
private @Nullable String updateLevel;
private ElastigroupIntegrationBeanstalkManagedActionsPlatformUpdate() {}
public Optional performAt() {
return Optional.ofNullable(this.performAt);
}
/**
* @return Time Window for when action occurs ex. Mon:23:50-Tue:00:20
*
*/
public Optional timeWindow() {
return Optional.ofNullable(this.timeWindow);
}
/**
* @return Level to update
*
* Usage:
*
*/
public Optional updateLevel() {
return Optional.ofNullable(this.updateLevel);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ElastigroupIntegrationBeanstalkManagedActionsPlatformUpdate defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String performAt;
private @Nullable String timeWindow;
private @Nullable String updateLevel;
public Builder() {}
public Builder(ElastigroupIntegrationBeanstalkManagedActionsPlatformUpdate defaults) {
Objects.requireNonNull(defaults);
this.performAt = defaults.performAt;
this.timeWindow = defaults.timeWindow;
this.updateLevel = defaults.updateLevel;
}
@CustomType.Setter
public Builder performAt(@Nullable String performAt) {
this.performAt = performAt;
return this;
}
@CustomType.Setter
public Builder timeWindow(@Nullable String timeWindow) {
this.timeWindow = timeWindow;
return this;
}
@CustomType.Setter
public Builder updateLevel(@Nullable String updateLevel) {
this.updateLevel = updateLevel;
return this;
}
public ElastigroupIntegrationBeanstalkManagedActionsPlatformUpdate build() {
final var _resultValue = new ElastigroupIntegrationBeanstalkManagedActionsPlatformUpdate();
_resultValue.performAt = performAt;
_resultValue.timeWindow = timeWindow;
_resultValue.updateLevel = updateLevel;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy