com.pulumi.aws.ssm.outputs.GetContactsRotationRecurrenceWeeklySettingHandOffTime 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.ssm.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.util.Objects;
@CustomType
public final class GetContactsRotationRecurrenceWeeklySettingHandOffTime {
private Integer hourOfDay;
private Integer minuteOfHour;
private GetContactsRotationRecurrenceWeeklySettingHandOffTime() {}
public Integer hourOfDay() {
return this.hourOfDay;
}
public Integer minuteOfHour() {
return this.minuteOfHour;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetContactsRotationRecurrenceWeeklySettingHandOffTime defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private Integer hourOfDay;
private Integer minuteOfHour;
public Builder() {}
public Builder(GetContactsRotationRecurrenceWeeklySettingHandOffTime defaults) {
Objects.requireNonNull(defaults);
this.hourOfDay = defaults.hourOfDay;
this.minuteOfHour = defaults.minuteOfHour;
}
@CustomType.Setter
public Builder hourOfDay(Integer hourOfDay) {
if (hourOfDay == null) {
throw new MissingRequiredPropertyException("GetContactsRotationRecurrenceWeeklySettingHandOffTime", "hourOfDay");
}
this.hourOfDay = hourOfDay;
return this;
}
@CustomType.Setter
public Builder minuteOfHour(Integer minuteOfHour) {
if (minuteOfHour == null) {
throw new MissingRequiredPropertyException("GetContactsRotationRecurrenceWeeklySettingHandOffTime", "minuteOfHour");
}
this.minuteOfHour = minuteOfHour;
return this;
}
public GetContactsRotationRecurrenceWeeklySettingHandOffTime build() {
final var _resultValue = new GetContactsRotationRecurrenceWeeklySettingHandOffTime();
_resultValue.hourOfDay = hourOfDay;
_resultValue.minuteOfHour = minuteOfHour;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy