[−][src]Struct rusoto_config::ConfigSnapshotDeliveryProperties
Provides options for how often AWS 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 AWS 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 AWS Config delivers configuration snapshots. This value also sets how often AWS Config invokes evaluations for AWS Config rules. -
The value for the
MaximumExecutionFrequency
parameter, which sets the maximum frequency with which AWS 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, AWS Config invokes the rule only as often as the deliveryFrequency
value.
-
For example, you want your rule to run evaluations when AWS Config delivers the configuration snapshot.
-
You specify the
MaximumExecutionFrequency
value forSix_Hours
. -
You then specify the delivery channel
deliveryFrequency
value forTwentyFour_Hours
. -
Because the value for
deliveryFrequency
is less frequent thanMaximumExecutionFrequency
, AWS 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 AWS Config delivers your configuration snapshots, use the PutDeliveryChannel
action.
Fields
delivery_frequency: Option<String>
The frequency with which AWS Config delivers configuration snapshots.
Trait Implementations
impl PartialEq<ConfigSnapshotDeliveryProperties> for ConfigSnapshotDeliveryProperties
[src]
fn eq(&self, other: &ConfigSnapshotDeliveryProperties) -> bool
[src]
fn ne(&self, other: &ConfigSnapshotDeliveryProperties) -> bool
[src]
impl Default for ConfigSnapshotDeliveryProperties
[src]
impl Clone for ConfigSnapshotDeliveryProperties
[src]
fn clone(&self) -> ConfigSnapshotDeliveryProperties
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for ConfigSnapshotDeliveryProperties
[src]
impl Serialize for ConfigSnapshotDeliveryProperties
[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer,
[src]
__S: Serializer,
impl<'de> Deserialize<'de> for ConfigSnapshotDeliveryProperties
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for ConfigSnapshotDeliveryProperties
impl Sync for ConfigSnapshotDeliveryProperties
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self