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,
}Expand description
Specifies which Amazon S3 objects to replicate and where to store the replicas.
Fields§
§delete_marker_replication: Option<DeleteMarkerReplication>§destination: DestinationA 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 associated with the rule. If you specify multiple rules in a replication configuration, Amazon S3 prioritizes the rules to prevent conflicts when filtering. If two or more rules identify the same object based on a specified filter, the rule with higher priority takes precedence. For example:
-
Same object quality prefix-based filter criteria if prefixes you specified in multiple rules overlap
-
Same object qualify tag-based filter criteria specified in multiple rules
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: StringSpecifies whether the rule is enabled.
Trait Implementations§
Source§impl Clone for ReplicationRule
impl Clone for ReplicationRule
Source§fn clone(&self) -> ReplicationRule
fn clone(&self) -> ReplicationRule
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more