/* * Copyright 2010-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ package com.amazonaws.services.iot.model; import java.io.Serializable; public class DescribeScheduledAuditResult implements Serializable { /** *

* How often the scheduled audit takes place, either one of * DAILY, WEEKLY, BIWEEKLY, or * MONTHLY. The start time of each audit is determined by the * system. *

*

* Constraints:
* Allowed Values: DAILY, WEEKLY, BIWEEKLY, MONTHLY */ private String frequency; /** *

* The day of the month on which the scheduled audit takes place. This is * will be 1 through 31 or LAST. If * days 29-31 are specified, and the month does * not have that many days, the audit takes place on the LAST * day of the month. *

*

* Constraints:
* Pattern: ^([1-9]|[12][0-9]|3[01])$|^LAST$
*/ private String dayOfMonth; /** *

* The day of the week on which the scheduled audit takes place, either one * of SUN, MON, TUE, WED, THU, FRI, or SAT. *

*

* Constraints:
* Allowed Values: SUN, MON, TUE, WED, THU, FRI, SAT */ private String dayOfWeek; /** *

* Which checks are performed during the scheduled audit. Checks must be * enabled for your account. (Use * DescribeAccountAuditConfiguration to see the list of all * checks, including those that are enabled or use * UpdateAccountAuditConfiguration to select which checks are * enabled.) *

*/ private java.util.List targetCheckNames; /** *

* The name of the scheduled audit. *

*

* Constraints:
* Length: 1 - 128
* Pattern: [a-zA-Z0-9_-]+
*/ private String scheduledAuditName; /** *

* The ARN of the scheduled audit. *

*/ private String scheduledAuditArn; /** *

* How often the scheduled audit takes place, either one of * DAILY, WEEKLY, BIWEEKLY, or * MONTHLY. The start time of each audit is determined by the * system. *

*

* Constraints:
* Allowed Values: DAILY, WEEKLY, BIWEEKLY, MONTHLY * * @return

* How often the scheduled audit takes place, either one of * DAILY, WEEKLY, BIWEEKLY, * or MONTHLY. The start time of each audit is * determined by the system. *

* @see AuditFrequency */ public String getFrequency() { return frequency; } /** *

* How often the scheduled audit takes place, either one of * DAILY, WEEKLY, BIWEEKLY, or * MONTHLY. The start time of each audit is determined by the * system. *

*

* Constraints:
* Allowed Values: DAILY, WEEKLY, BIWEEKLY, MONTHLY * * @param frequency

* How often the scheduled audit takes place, either one of * DAILY, WEEKLY, BIWEEKLY * , or MONTHLY. The start time of each audit is * determined by the system. *

* @see AuditFrequency */ public void setFrequency(String frequency) { this.frequency = frequency; } /** *

* How often the scheduled audit takes place, either one of * DAILY, WEEKLY, BIWEEKLY, or * MONTHLY. The start time of each audit is determined by the * system. *

*

* Returns a reference to this object so that method calls can be chained * together. *

* Constraints:
* Allowed Values: DAILY, WEEKLY, BIWEEKLY, MONTHLY * * @param frequency

* How often the scheduled audit takes place, either one of * DAILY, WEEKLY, BIWEEKLY * , or MONTHLY. The start time of each audit is * determined by the system. *

* @return A reference to this updated object so that method calls can be * chained together. * @see AuditFrequency */ public DescribeScheduledAuditResult withFrequency(String frequency) { this.frequency = frequency; return this; } /** *

* How often the scheduled audit takes place, either one of * DAILY, WEEKLY, BIWEEKLY, or * MONTHLY. The start time of each audit is determined by the * system. *

*

* Constraints:
* Allowed Values: DAILY, WEEKLY, BIWEEKLY, MONTHLY * * @param frequency

* How often the scheduled audit takes place, either one of * DAILY, WEEKLY, BIWEEKLY * , or MONTHLY. The start time of each audit is * determined by the system. *

* @see AuditFrequency */ public void setFrequency(AuditFrequency frequency) { this.frequency = frequency.toString(); } /** *

* How often the scheduled audit takes place, either one of * DAILY, WEEKLY, BIWEEKLY, or * MONTHLY. The start time of each audit is determined by the * system. *

*

* Returns a reference to this object so that method calls can be chained * together. *

* Constraints:
* Allowed Values: DAILY, WEEKLY, BIWEEKLY, MONTHLY * * @param frequency

* How often the scheduled audit takes place, either one of * DAILY, WEEKLY, BIWEEKLY * , or MONTHLY. The start time of each audit is * determined by the system. *

* @return A reference to this updated object so that method calls can be * chained together. * @see AuditFrequency */ public DescribeScheduledAuditResult withFrequency(AuditFrequency frequency) { this.frequency = frequency.toString(); return this; } /** *

* The day of the month on which the scheduled audit takes place. This is * will be 1 through 31 or LAST. If * days 29-31 are specified, and the month does * not have that many days, the audit takes place on the LAST * day of the month. *

*

* Constraints:
* Pattern: ^([1-9]|[12][0-9]|3[01])$|^LAST$
* * @return

* The day of the month on which the scheduled audit takes place. * This is will be 1 through 31 or * LAST. If days 29-31 are * specified, and the month does not have that many days, the audit * takes place on the LAST day of the month. *

*/ public String getDayOfMonth() { return dayOfMonth; } /** *

* The day of the month on which the scheduled audit takes place. This is * will be 1 through 31 or LAST. If * days 29-31 are specified, and the month does * not have that many days, the audit takes place on the LAST * day of the month. *

*

* Constraints:
* Pattern: ^([1-9]|[12][0-9]|3[01])$|^LAST$
* * @param dayOfMonth

* The day of the month on which the scheduled audit takes place. * This is will be 1 through 31 or * LAST. If days 29-31 are * specified, and the month does not have that many days, the * audit takes place on the LAST day of the month. *

*/ public void setDayOfMonth(String dayOfMonth) { this.dayOfMonth = dayOfMonth; } /** *

* The day of the month on which the scheduled audit takes place. This is * will be 1 through 31 or LAST. If * days 29-31 are specified, and the month does * not have that many days, the audit takes place on the LAST * day of the month. *

*

* Returns a reference to this object so that method calls can be chained * together. *

* Constraints:
* Pattern: ^([1-9]|[12][0-9]|3[01])$|^LAST$
* * @param dayOfMonth

* The day of the month on which the scheduled audit takes place. * This is will be 1 through 31 or * LAST. If days 29-31 are * specified, and the month does not have that many days, the * audit takes place on the LAST day of the month. *

* @return A reference to this updated object so that method calls can be * chained together. */ public DescribeScheduledAuditResult withDayOfMonth(String dayOfMonth) { this.dayOfMonth = dayOfMonth; return this; } /** *

* The day of the week on which the scheduled audit takes place, either one * of SUN, MON, TUE, WED, THU, FRI, or SAT. *

*

* Constraints:
* Allowed Values: SUN, MON, TUE, WED, THU, FRI, SAT * * @return

* The day of the week on which the scheduled audit takes place, * either one of SUN, MON, * TUE, WED, THU, * FRI, or SAT. *

* @see DayOfWeek */ public String getDayOfWeek() { return dayOfWeek; } /** *

* The day of the week on which the scheduled audit takes place, either one * of SUN, MON, TUE, WED, THU, FRI, or SAT. *

*

* Constraints:
* Allowed Values: SUN, MON, TUE, WED, THU, FRI, SAT * * @param dayOfWeek

* The day of the week on which the scheduled audit takes place, * either one of SUN, MON, * TUE, WED, THU, * FRI, or SAT. *

* @see DayOfWeek */ public void setDayOfWeek(String dayOfWeek) { this.dayOfWeek = dayOfWeek; } /** *

* The day of the week on which the scheduled audit takes place, either one * of SUN, MON, TUE, WED, THU, FRI, or SAT. *

*

* Returns a reference to this object so that method calls can be chained * together. *

* Constraints:
* Allowed Values: SUN, MON, TUE, WED, THU, FRI, SAT * * @param dayOfWeek

* The day of the week on which the scheduled audit takes place, * either one of SUN, MON, * TUE, WED, THU, * FRI, or SAT. *

* @return A reference to this updated object so that method calls can be * chained together. * @see DayOfWeek */ public DescribeScheduledAuditResult withDayOfWeek(String dayOfWeek) { this.dayOfWeek = dayOfWeek; return this; } /** *

* The day of the week on which the scheduled audit takes place, either one * of SUN, MON, TUE, WED, THU, FRI, or SAT. *

*

* Constraints:
* Allowed Values: SUN, MON, TUE, WED, THU, FRI, SAT * * @param dayOfWeek

* The day of the week on which the scheduled audit takes place, * either one of SUN, MON, * TUE, WED, THU, * FRI, or SAT. *

* @see DayOfWeek */ public void setDayOfWeek(DayOfWeek dayOfWeek) { this.dayOfWeek = dayOfWeek.toString(); } /** *

* The day of the week on which the scheduled audit takes place, either one * of SUN, MON, TUE, WED, THU, FRI, or SAT. *

*

* Returns a reference to this object so that method calls can be chained * together. *

* Constraints:
* Allowed Values: SUN, MON, TUE, WED, THU, FRI, SAT * * @param dayOfWeek

* The day of the week on which the scheduled audit takes place, * either one of SUN, MON, * TUE, WED, THU, * FRI, or SAT. *

* @return A reference to this updated object so that method calls can be * chained together. * @see DayOfWeek */ public DescribeScheduledAuditResult withDayOfWeek(DayOfWeek dayOfWeek) { this.dayOfWeek = dayOfWeek.toString(); return this; } /** *

* Which checks are performed during the scheduled audit. Checks must be * enabled for your account. (Use * DescribeAccountAuditConfiguration to see the list of all * checks, including those that are enabled or use * UpdateAccountAuditConfiguration to select which checks are * enabled.) *

* * @return

* Which checks are performed during the scheduled audit. Checks * must be enabled for your account. (Use * DescribeAccountAuditConfiguration to see the list of * all checks, including those that are enabled or use * UpdateAccountAuditConfiguration to select which * checks are enabled.) *

*/ public java.util.List getTargetCheckNames() { return targetCheckNames; } /** *

* Which checks are performed during the scheduled audit. Checks must be * enabled for your account. (Use * DescribeAccountAuditConfiguration to see the list of all * checks, including those that are enabled or use * UpdateAccountAuditConfiguration to select which checks are * enabled.) *

* * @param targetCheckNames

* Which checks are performed during the scheduled audit. Checks * must be enabled for your account. (Use * DescribeAccountAuditConfiguration to see the list * of all checks, including those that are enabled or use * UpdateAccountAuditConfiguration to select which * checks are enabled.) *

*/ public void setTargetCheckNames(java.util.Collection targetCheckNames) { if (targetCheckNames == null) { this.targetCheckNames = null; return; } this.targetCheckNames = new java.util.ArrayList(targetCheckNames); } /** *

* Which checks are performed during the scheduled audit. Checks must be * enabled for your account. (Use * DescribeAccountAuditConfiguration to see the list of all * checks, including those that are enabled or use * UpdateAccountAuditConfiguration to select which checks are * enabled.) *

*

* Returns a reference to this object so that method calls can be chained * together. * * @param targetCheckNames

* Which checks are performed during the scheduled audit. Checks * must be enabled for your account. (Use * DescribeAccountAuditConfiguration to see the list * of all checks, including those that are enabled or use * UpdateAccountAuditConfiguration to select which * checks are enabled.) *

* @return A reference to this updated object so that method calls can be * chained together. */ public DescribeScheduledAuditResult withTargetCheckNames(String... targetCheckNames) { if (getTargetCheckNames() == null) { this.targetCheckNames = new java.util.ArrayList(targetCheckNames.length); } for (String value : targetCheckNames) { this.targetCheckNames.add(value); } return this; } /** *

* Which checks are performed during the scheduled audit. Checks must be * enabled for your account. (Use * DescribeAccountAuditConfiguration to see the list of all * checks, including those that are enabled or use * UpdateAccountAuditConfiguration to select which checks are * enabled.) *

*

* Returns a reference to this object so that method calls can be chained * together. * * @param targetCheckNames

* Which checks are performed during the scheduled audit. Checks * must be enabled for your account. (Use * DescribeAccountAuditConfiguration to see the list * of all checks, including those that are enabled or use * UpdateAccountAuditConfiguration to select which * checks are enabled.) *

* @return A reference to this updated object so that method calls can be * chained together. */ public DescribeScheduledAuditResult withTargetCheckNames( java.util.Collection targetCheckNames) { setTargetCheckNames(targetCheckNames); return this; } /** *

* The name of the scheduled audit. *

*

* Constraints:
* Length: 1 - 128
* Pattern: [a-zA-Z0-9_-]+
* * @return

* The name of the scheduled audit. *

*/ public String getScheduledAuditName() { return scheduledAuditName; } /** *

* The name of the scheduled audit. *

*

* Constraints:
* Length: 1 - 128
* Pattern: [a-zA-Z0-9_-]+
* * @param scheduledAuditName

* The name of the scheduled audit. *

*/ public void setScheduledAuditName(String scheduledAuditName) { this.scheduledAuditName = scheduledAuditName; } /** *

* The name of the scheduled audit. *

*

* Returns a reference to this object so that method calls can be chained * together. *

* Constraints:
* Length: 1 - 128
* Pattern: [a-zA-Z0-9_-]+
* * @param scheduledAuditName

* The name of the scheduled audit. *

* @return A reference to this updated object so that method calls can be * chained together. */ public DescribeScheduledAuditResult withScheduledAuditName(String scheduledAuditName) { this.scheduledAuditName = scheduledAuditName; return this; } /** *

* The ARN of the scheduled audit. *

* * @return

* The ARN of the scheduled audit. *

*/ public String getScheduledAuditArn() { return scheduledAuditArn; } /** *

* The ARN of the scheduled audit. *

* * @param scheduledAuditArn

* The ARN of the scheduled audit. *

*/ public void setScheduledAuditArn(String scheduledAuditArn) { this.scheduledAuditArn = scheduledAuditArn; } /** *

* The ARN of the scheduled audit. *

*

* Returns a reference to this object so that method calls can be chained * together. * * @param scheduledAuditArn

* The ARN of the scheduled audit. *

* @return A reference to this updated object so that method calls can be * chained together. */ public DescribeScheduledAuditResult withScheduledAuditArn(String scheduledAuditArn) { this.scheduledAuditArn = scheduledAuditArn; return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getFrequency() != null) sb.append("frequency: " + getFrequency() + ","); if (getDayOfMonth() != null) sb.append("dayOfMonth: " + getDayOfMonth() + ","); if (getDayOfWeek() != null) sb.append("dayOfWeek: " + getDayOfWeek() + ","); if (getTargetCheckNames() != null) sb.append("targetCheckNames: " + getTargetCheckNames() + ","); if (getScheduledAuditName() != null) sb.append("scheduledAuditName: " + getScheduledAuditName() + ","); if (getScheduledAuditArn() != null) sb.append("scheduledAuditArn: " + getScheduledAuditArn()); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getFrequency() == null) ? 0 : getFrequency().hashCode()); hashCode = prime * hashCode + ((getDayOfMonth() == null) ? 0 : getDayOfMonth().hashCode()); hashCode = prime * hashCode + ((getDayOfWeek() == null) ? 0 : getDayOfWeek().hashCode()); hashCode = prime * hashCode + ((getTargetCheckNames() == null) ? 0 : getTargetCheckNames().hashCode()); hashCode = prime * hashCode + ((getScheduledAuditName() == null) ? 0 : getScheduledAuditName().hashCode()); hashCode = prime * hashCode + ((getScheduledAuditArn() == null) ? 0 : getScheduledAuditArn().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DescribeScheduledAuditResult == false) return false; DescribeScheduledAuditResult other = (DescribeScheduledAuditResult) obj; if (other.getFrequency() == null ^ this.getFrequency() == null) return false; if (other.getFrequency() != null && other.getFrequency().equals(this.getFrequency()) == false) return false; if (other.getDayOfMonth() == null ^ this.getDayOfMonth() == null) return false; if (other.getDayOfMonth() != null && other.getDayOfMonth().equals(this.getDayOfMonth()) == false) return false; if (other.getDayOfWeek() == null ^ this.getDayOfWeek() == null) return false; if (other.getDayOfWeek() != null && other.getDayOfWeek().equals(this.getDayOfWeek()) == false) return false; if (other.getTargetCheckNames() == null ^ this.getTargetCheckNames() == null) return false; if (other.getTargetCheckNames() != null && other.getTargetCheckNames().equals(this.getTargetCheckNames()) == false) return false; if (other.getScheduledAuditName() == null ^ this.getScheduledAuditName() == null) return false; if (other.getScheduledAuditName() != null && other.getScheduledAuditName().equals(this.getScheduledAuditName()) == false) return false; if (other.getScheduledAuditArn() == null ^ this.getScheduledAuditArn() == null) return false; if (other.getScheduledAuditArn() != null && other.getScheduledAuditArn().equals(this.getScheduledAuditArn()) == false) return false; return true; } }