/* * Copyright 2018-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; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CreateScheduledAuditRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *
* How often the scheduled audit takes place, either DAILY
, WEEKLY
, BIWEEKLY
* or MONTHLY
. The start time of each audit is determined by the system.
*
* The day of the month on which the scheduled audit takes place. This can be "1" through "31" or "LAST". This field
* is required if the "frequency" parameter is set to MONTHLY
. If days 29 to 31 are specified, and the
* month doesn't have that many days, the audit takes place on the LAST
day of the month.
*
* The day of the week on which the scheduled audit takes place, either SUN
, MON
,
* TUE
, WED
, THU
, FRI
, or SAT
. This field is
* required if the frequency
parameter is set to WEEKLY
or BIWEEKLY
.
*
* 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.)
*
* The name you want to give to the scheduled audit. (Max. 128 chars) *
*/ private String scheduledAuditName; /** ** Metadata that can be used to manage the scheduled audit. *
*/ private java.util.List
* How often the scheduled audit takes place, either DAILY
, WEEKLY
, BIWEEKLY
* or MONTHLY
. The start time of each audit is determined by the system.
*
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 DAILY
, WEEKLY
, BIWEEKLY
* or MONTHLY
. The start time of each audit is determined by the system.
*
DAILY
, WEEKLY
,
* BIWEEKLY
or MONTHLY
. The start time of each audit is determined by the system.
* @see AuditFrequency
*/
public String getFrequency() {
return this.frequency;
}
/**
*
* How often the scheduled audit takes place, either DAILY
, WEEKLY
, BIWEEKLY
* or MONTHLY
. The start time of each audit is determined by the system.
*
DAILY
, WEEKLY
,
* BIWEEKLY
or MONTHLY
. The start time of each audit is determined by the system.
* @return Returns a reference to this object so that method calls can be chained together.
* @see AuditFrequency
*/
public CreateScheduledAuditRequest withFrequency(String frequency) {
setFrequency(frequency);
return this;
}
/**
*
* How often the scheduled audit takes place, either DAILY
, WEEKLY
, BIWEEKLY
* or MONTHLY
. The start time of each audit is determined by the system.
*
DAILY
, WEEKLY
,
* BIWEEKLY
or MONTHLY
. The start time of each audit is determined by the system.
* @return Returns a reference to this object so that method calls can be chained together.
* @see AuditFrequency
*/
public CreateScheduledAuditRequest withFrequency(AuditFrequency frequency) {
this.frequency = frequency.toString();
return this;
}
/**
*
* The day of the month on which the scheduled audit takes place. This can be "1" through "31" or "LAST". This field
* is required if the "frequency" parameter is set to MONTHLY
. If days 29 to 31 are specified, and the
* month doesn't have that many days, the audit takes place on the LAST
day of the month.
*
MONTHLY
. If days 29 to 31 are
* specified, and the month doesn't 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 can be "1" through "31" or "LAST". This field
* is required if the "frequency" parameter is set to MONTHLY
. If days 29 to 31 are specified, and the
* month doesn't have that many days, the audit takes place on the LAST
day of the month.
*
MONTHLY
. If days 29 to 31 are
* specified, and the month doesn't have that many days, the audit takes place on the LAST
day
* of the month.
*/
public String getDayOfMonth() {
return this.dayOfMonth;
}
/**
*
* The day of the month on which the scheduled audit takes place. This can be "1" through "31" or "LAST". This field
* is required if the "frequency" parameter is set to MONTHLY
. If days 29 to 31 are specified, and the
* month doesn't have that many days, the audit takes place on the LAST
day of the month.
*
MONTHLY
. If days 29 to 31 are
* specified, and the month doesn't have that many days, the audit takes place on the LAST
day
* of the month.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateScheduledAuditRequest withDayOfMonth(String dayOfMonth) {
setDayOfMonth(dayOfMonth);
return this;
}
/**
*
* The day of the week on which the scheduled audit takes place, either SUN
, MON
,
* TUE
, WED
, THU
, FRI
, or SAT
. This field is
* required if the frequency
parameter is set to WEEKLY
or BIWEEKLY
.
*
SUN
, MON
,
* TUE
, WED
, THU
, FRI
, or SAT
. This field is
* required if the frequency
parameter is set to WEEKLY
or BIWEEKLY
.
* @see DayOfWeek
*/
public void setDayOfWeek(String dayOfWeek) {
this.dayOfWeek = dayOfWeek;
}
/**
*
* The day of the week on which the scheduled audit takes place, either SUN
, MON
,
* TUE
, WED
, THU
, FRI
, or SAT
. This field is
* required if the frequency
parameter is set to WEEKLY
or BIWEEKLY
.
*
SUN
, MON
,
* TUE
, WED
, THU
, FRI
, or SAT
. This field
* is required if the frequency
parameter is set to WEEKLY
or
* BIWEEKLY
.
* @see DayOfWeek
*/
public String getDayOfWeek() {
return this.dayOfWeek;
}
/**
*
* The day of the week on which the scheduled audit takes place, either SUN
, MON
,
* TUE
, WED
, THU
, FRI
, or SAT
. This field is
* required if the frequency
parameter is set to WEEKLY
or BIWEEKLY
.
*
SUN
, MON
,
* TUE
, WED
, THU
, FRI
, or SAT
. This field is
* required if the frequency
parameter is set to WEEKLY
or BIWEEKLY
.
* @return Returns a reference to this object so that method calls can be chained together.
* @see DayOfWeek
*/
public CreateScheduledAuditRequest withDayOfWeek(String dayOfWeek) {
setDayOfWeek(dayOfWeek);
return this;
}
/**
*
* The day of the week on which the scheduled audit takes place, either SUN
, MON
,
* TUE
, WED
, THU
, FRI
, or SAT
. This field is
* required if the frequency
parameter is set to WEEKLY
or BIWEEKLY
.
*
SUN
, MON
,
* TUE
, WED
, THU
, FRI
, or SAT
. This field is
* required if the frequency
parameter is set to WEEKLY
or BIWEEKLY
.
* @return Returns a reference to this object so that method calls can be chained together.
* @see DayOfWeek
*/
public CreateScheduledAuditRequest 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.)
*
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
* 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.)
*
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
* 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.)
*
* NOTE: This method appends the values to the existing list (if any). Use * {@link #setTargetCheckNames(java.util.Collection)} or {@link #withTargetCheckNames(java.util.Collection)} if you * want to override the existing values. *
* * @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 Returns a reference to this object so that method calls can be chained together.
*/
public CreateScheduledAuditRequest withTargetCheckNames(String... targetCheckNames) {
if (this.targetCheckNames == null) {
setTargetCheckNames(new java.util.ArrayList
* 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.)
*
DescribeAccountAuditConfiguration
to see the list of all checks, including those that are
* enabled or use UpdateAccountAuditConfiguration
to select which checks are enabled.)
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateScheduledAuditRequest withTargetCheckNames(java.util.Collection* The name you want to give to the scheduled audit. (Max. 128 chars) *
* * @param scheduledAuditName * The name you want to give to the scheduled audit. (Max. 128 chars) */ public void setScheduledAuditName(String scheduledAuditName) { this.scheduledAuditName = scheduledAuditName; } /** ** The name you want to give to the scheduled audit. (Max. 128 chars) *
* * @return The name you want to give to the scheduled audit. (Max. 128 chars) */ public String getScheduledAuditName() { return this.scheduledAuditName; } /** ** The name you want to give to the scheduled audit. (Max. 128 chars) *
* * @param scheduledAuditName * The name you want to give to the scheduled audit. (Max. 128 chars) * @return Returns a reference to this object so that method calls can be chained together. */ public CreateScheduledAuditRequest withScheduledAuditName(String scheduledAuditName) { setScheduledAuditName(scheduledAuditName); return this; } /** ** Metadata that can be used to manage the scheduled audit. *
* * @return Metadata that can be used to manage the scheduled audit. */ public java.util.List* Metadata that can be used to manage the scheduled audit. *
* * @param tags * Metadata that can be used to manage the scheduled audit. */ public void setTags(java.util.Collection* Metadata that can be used to manage the scheduled audit. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the * existing values. *
* * @param tags * Metadata that can be used to manage the scheduled audit. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateScheduledAuditRequest withTags(Tag... tags) { if (this.tags == null) { setTags(new java.util.ArrayList* Metadata that can be used to manage the scheduled audit. *
* * @param tags * Metadata that can be used to manage the scheduled audit. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateScheduledAuditRequest withTags(java.util.Collection