Skip to main content

ReplicationGroup

Struct ReplicationGroup 

Source
pub struct ReplicationGroup {
Show 48 fields pub replication_group_id: String, pub description: String, pub global_replication_group_id: Option<String>, pub global_replication_group_role: Option<String>, pub status: String, pub cache_node_type: String, pub engine: String, pub engine_version: String, pub num_cache_clusters: i32, pub automatic_failover_enabled: bool, pub endpoint_address: String, pub endpoint_port: u16, pub arn: String, pub created_at: String, pub container_id: String, pub host_port: u16, pub member_clusters: Vec<String>, pub snapshot_retention_limit: i32, pub snapshot_window: String, pub transit_encryption_enabled: bool, pub at_rest_encryption_enabled: bool, pub cluster_enabled: bool, pub kms_key_id: Option<String>, pub auth_token_enabled: bool, pub user_group_ids: Vec<String>, pub multi_az_enabled: bool, pub log_delivery_configurations: Vec<LogDeliveryConfiguration>, pub data_tiering: Option<String>, pub ip_discovery: Option<String>, pub network_type: Option<String>, pub transit_encryption_mode: Option<String>, pub num_node_groups: i32, pub configuration_endpoint_address: Option<String>, pub configuration_endpoint_port: Option<u16>, pub replicas_per_node_group: Option<i32>, pub auth_token: Option<String>, pub port: u16, pub notification_topic_arn: Option<String>, pub cluster_mode: Option<String>, pub data_tiering_enabled: Option<bool>, pub notification_topic_status: Option<String>, pub cache_parameter_group_name: Option<String>, pub cache_subnet_group_name: Option<String>, pub security_group_ids: Vec<String>, pub preferred_maintenance_window: Option<String>, pub snapshot_name: Option<String>, pub snapshot_arns: Vec<String>, pub auto_minor_version_upgrade: bool,
}

Fields§

§replication_group_id: String§description: String§global_replication_group_id: Option<String>§global_replication_group_role: Option<String>§status: String§cache_node_type: String§engine: String§engine_version: String§num_cache_clusters: i32§automatic_failover_enabled: bool§endpoint_address: String§endpoint_port: u16§arn: String§created_at: String§container_id: String§host_port: u16§member_clusters: Vec<String>§snapshot_retention_limit: i32§snapshot_window: String§transit_encryption_enabled: bool

Stored at create / modify time so DescribeReplicationGroups returns the actual configuration instead of canned defaults. AWS always emits these flags; SDKs that read them (terraform plan diff, compliance checks) saw stale false for everyone.

§at_rest_encryption_enabled: bool§cluster_enabled: bool§kms_key_id: Option<String>§auth_token_enabled: bool§user_group_ids: Vec<String>§multi_az_enabled: bool§log_delivery_configurations: Vec<LogDeliveryConfiguration>§data_tiering: Option<String>§ip_discovery: Option<String>§network_type: Option<String>§transit_encryption_mode: Option<String>§num_node_groups: i32§configuration_endpoint_address: Option<String>§configuration_endpoint_port: Option<u16>§replicas_per_node_group: Option<i32>§auth_token: Option<String>

Raw AUTH token. Stored verbatim so a future ModifyReplicationGroup can compare/rotate it; never echoed back in describe XML.

§port: u16

Configured Port from the create request. AWS returns this on <NodeGroups>.<PrimaryEndpoint>.<Port> once the cluster is real; fakecloud uses the real container host port for connectivity but echoes the requested value through pending modifications.

§notification_topic_arn: Option<String>

SNS topic ARN for replication-group events.

§cluster_mode: Option<String>

ClusterMode input — distinct from the derived cluster_enabled flag. Valid values: enabled / disabled / compatible.

§data_tiering_enabled: Option<bool>

DataTieringEnabled boolean as supplied by the request. The existing data_tiering string field is the response-shape enabled/disabled projection.

§notification_topic_status: Option<String>

NotificationTopicStatus from the most recent ModifyReplicationGroup call. Defaults to active when emitting describe XML if unset.

§cache_parameter_group_name: Option<String>

CacheParameterGroupName from the create / modify request. Echoed via <CacheParameterGroup> in describe XML.

§cache_subnet_group_name: Option<String>

CacheSubnetGroupName from the create request. Persisted so ModifyReplicationGroup and tooling like terraform plan diff can recover the original placement.

§security_group_ids: Vec<String>

VPC security group ids attached at create / modify time. AWS echoes these via <SecurityGroups> once the underlying clusters land, so we persist them on the replication group as well.

§preferred_maintenance_window: Option<String>

PreferredMaintenanceWindow from the request, e.g. sun:23:00-mon:01:30. Round-tripped onto member clusters and echoed where AWS does.

§snapshot_name: Option<String>

SnapshotName — replication-group snapshot used to seed the new group. Stored verbatim for restore lineage; not echoed on describe since AWS only emits SnapshottingClusterId.

§snapshot_arns: Vec<String>

SnapshotArns.member.N — RDB seed snapshot S3 ARNs (redis only).

§auto_minor_version_upgrade: bool

AutoMinorVersionUpgrade toggle. AWS always emits this on the describe response (default true) — tracked so ModifyReplicationGroup can flip it.

Trait Implementations§

Source§

impl Clone for ReplicationGroup

Source§

fn clone(&self) -> ReplicationGroup

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ReplicationGroup

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for ReplicationGroup

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for ReplicationGroup

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FromRef<T> for T
where T: Clone,

Source§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more