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

com.pulumi.aws.ssm.inputs.ContactsRotationRecurrenceShiftCoverageCoverageTimeEndArgs Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Amazon Web Services (AWS) 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.aws.ssm.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.util.Objects;


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

    public static final ContactsRotationRecurrenceShiftCoverageCoverageTimeEndArgs Empty = new ContactsRotationRecurrenceShiftCoverageCoverageTimeEndArgs();

    /**
     * (Required) The hour of the day.
     * 
     */
    @Import(name="hourOfDay", required=true)
    private Output hourOfDay;

    /**
     * @return (Required) The hour of the day.
     * 
     */
    public Output hourOfDay() {
        return this.hourOfDay;
    }

    /**
     * (Required) The minutes of the hour.
     * 
     */
    @Import(name="minuteOfHour", required=true)
    private Output minuteOfHour;

    /**
     * @return (Required) The minutes of the hour.
     * 
     */
    public Output minuteOfHour() {
        return this.minuteOfHour;
    }

    private ContactsRotationRecurrenceShiftCoverageCoverageTimeEndArgs() {}

    private ContactsRotationRecurrenceShiftCoverageCoverageTimeEndArgs(ContactsRotationRecurrenceShiftCoverageCoverageTimeEndArgs $) {
        this.hourOfDay = $.hourOfDay;
        this.minuteOfHour = $.minuteOfHour;
    }

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

    public static final class Builder {
        private ContactsRotationRecurrenceShiftCoverageCoverageTimeEndArgs $;

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

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

        /**
         * @param hourOfDay (Required) The hour of the day.
         * 
         * @return builder
         * 
         */
        public Builder hourOfDay(Output hourOfDay) {
            $.hourOfDay = hourOfDay;
            return this;
        }

        /**
         * @param hourOfDay (Required) The hour of the day.
         * 
         * @return builder
         * 
         */
        public Builder hourOfDay(Integer hourOfDay) {
            return hourOfDay(Output.of(hourOfDay));
        }

        /**
         * @param minuteOfHour (Required) The minutes of the hour.
         * 
         * @return builder
         * 
         */
        public Builder minuteOfHour(Output minuteOfHour) {
            $.minuteOfHour = minuteOfHour;
            return this;
        }

        /**
         * @param minuteOfHour (Required) The minutes of the hour.
         * 
         * @return builder
         * 
         */
        public Builder minuteOfHour(Integer minuteOfHour) {
            return minuteOfHour(Output.of(minuteOfHour));
        }

        public ContactsRotationRecurrenceShiftCoverageCoverageTimeEndArgs build() {
            if ($.hourOfDay == null) {
                throw new MissingRequiredPropertyException("ContactsRotationRecurrenceShiftCoverageCoverageTimeEndArgs", "hourOfDay");
            }
            if ($.minuteOfHour == null) {
                throw new MissingRequiredPropertyException("ContactsRotationRecurrenceShiftCoverageCoverageTimeEndArgs", "minuteOfHour");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy