Struct rusoto_s3::ReplicationRule [−][src]
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 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 S3 User 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
Returns the “default value” for a type. Read more
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for ReplicationRule
impl Send for ReplicationRule
impl Sync for ReplicationRule
impl Unpin for ReplicationRule
impl UnwindSafe for ReplicationRule
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more