[][src]Struct rusoto_s3::ReplicationRule

pub struct ReplicationRule {
    pub delete_marker_replication: Option<DeleteMarkerReplication>,
    pub destination: Destination,
    pub existing_object_replication: Option<ExistingObjectReplication>,
    pub filter: Option<ReplicationRuleFilter>,
    pub id: Option<String>,
    pub priority: Option<i64>,
    pub source_selection_criteria: Option<SourceSelectionCriteria>,
    pub status: String,
}

Specifies which Amazon S3 objects to replicate and where to store the replicas.

Fields

delete_marker_replication: Option<DeleteMarkerReplication>destination: Destination

A container for information about the replication destination and its configurations including enabling the S3 Replication Time Control (S3 RTC).

existing_object_replication: Option<ExistingObjectReplication>

filter: Option<ReplicationRuleFilter>id: Option<String>

A unique identifier for the rule. The maximum value is 255 characters.

priority: Option<i64>

The priority indicates which rule has precedence whenever two or more replication rules conflict. Amazon S3 will attempt to replicate objects according to all replication rules. However, if there are two or more rules with the same destination bucket, then objects will be replicated according to the rule with the highest priority. The higher the number, the higher the priority.

For more information, see Replication in the Amazon Simple Storage Service Developer Guide.

source_selection_criteria: Option<SourceSelectionCriteria>

A container that describes additional filters for identifying the source objects that you want to replicate. You can choose to enable or disable the replication of these objects. Currently, Amazon S3 supports only the filter that you can specify for objects created with server-side encryption using a customer master key (CMK) stored in AWS Key Management Service (SSE-KMS).

status: String

Specifies whether the rule is enabled.

Trait Implementations

impl Clone for ReplicationRule[src]

impl Debug for ReplicationRule[src]

impl Default for ReplicationRule[src]

impl PartialEq<ReplicationRule> for ReplicationRule[src]

impl StructuralPartialEq for ReplicationRule[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.