/* * 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.config.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* Provides options for how often Config delivers configuration snapshots to the Amazon S3 bucket in your delivery * channel. *
** The frequency for a rule that triggers evaluations for your resources when Config delivers the configuration snapshot * is set by one of two values, depending on which is less frequent: *
*
* The value for the deliveryFrequency
parameter within the delivery channel configuration, which sets how
* often Config delivers configuration snapshots. This value also sets how often Config invokes evaluations for Config
* rules.
*
* The value for the MaximumExecutionFrequency
parameter, which sets the maximum frequency with which
* Config invokes evaluations for the rule. For more information, see ConfigRule.
*
* If the deliveryFrequency
value is less frequent than the MaximumExecutionFrequency
value
* for a rule, Config invokes the rule only as often as the deliveryFrequency
value.
*
* For example, you want your rule to run evaluations when Config delivers the configuration snapshot. *
*
* You specify the MaximumExecutionFrequency
value for Six_Hours
.
*
* You then specify the delivery channel deliveryFrequency
value for TwentyFour_Hours
.
*
* Because the value for deliveryFrequency
is less frequent than MaximumExecutionFrequency
,
* Config invokes evaluations for the rule every 24 hours.
*
* You should set the MaximumExecutionFrequency
value to be at least as frequent as the
* deliveryFrequency
value. You can view the deliveryFrequency
value by using the
* DescribeDeliveryChannnels
action.
*
* To update the deliveryFrequency
with which Config delivers your configuration snapshots, use the
* PutDeliveryChannel
action.
*
* The frequency with which Config delivers configuration snapshots. *
*/ private String deliveryFrequency; /** ** The frequency with which Config delivers configuration snapshots. *
* * @param deliveryFrequency * The frequency with which Config delivers configuration snapshots. * @see MaximumExecutionFrequency */ public void setDeliveryFrequency(String deliveryFrequency) { this.deliveryFrequency = deliveryFrequency; } /** ** The frequency with which Config delivers configuration snapshots. *
* * @return The frequency with which Config delivers configuration snapshots. * @see MaximumExecutionFrequency */ public String getDeliveryFrequency() { return this.deliveryFrequency; } /** ** The frequency with which Config delivers configuration snapshots. *
* * @param deliveryFrequency * The frequency with which Config delivers configuration snapshots. * @return Returns a reference to this object so that method calls can be chained together. * @see MaximumExecutionFrequency */ public ConfigSnapshotDeliveryProperties withDeliveryFrequency(String deliveryFrequency) { setDeliveryFrequency(deliveryFrequency); return this; } /** ** The frequency with which Config delivers configuration snapshots. *
* * @param deliveryFrequency * The frequency with which Config delivers configuration snapshots. * @see MaximumExecutionFrequency */ public void setDeliveryFrequency(MaximumExecutionFrequency deliveryFrequency) { withDeliveryFrequency(deliveryFrequency); } /** ** The frequency with which Config delivers configuration snapshots. *
* * @param deliveryFrequency * The frequency with which Config delivers configuration snapshots. * @return Returns a reference to this object so that method calls can be chained together. * @see MaximumExecutionFrequency */ public ConfigSnapshotDeliveryProperties withDeliveryFrequency(MaximumExecutionFrequency deliveryFrequency) { this.deliveryFrequency = deliveryFrequency.toString(); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getDeliveryFrequency() != null) sb.append("DeliveryFrequency: ").append(getDeliveryFrequency()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ConfigSnapshotDeliveryProperties == false) return false; ConfigSnapshotDeliveryProperties other = (ConfigSnapshotDeliveryProperties) obj; if (other.getDeliveryFrequency() == null ^ this.getDeliveryFrequency() == null) return false; if (other.getDeliveryFrequency() != null && other.getDeliveryFrequency().equals(this.getDeliveryFrequency()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDeliveryFrequency() == null) ? 0 : getDeliveryFrequency().hashCode()); return hashCode; } @Override public ConfigSnapshotDeliveryProperties clone() { try { return (ConfigSnapshotDeliveryProperties) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.config.model.transform.ConfigSnapshotDeliveryPropertiesMarshaller.getInstance().marshall(this, protocolMarshaller); } }