Struct aws_sdk_kafka::types::ReplicatorSummary
source · #[non_exhaustive]pub struct ReplicatorSummary {
pub creation_time: Option<DateTime>,
pub current_version: Option<String>,
pub is_replicator_reference: Option<bool>,
pub kafka_clusters_summary: Option<Vec<KafkaClusterSummary>>,
pub replication_info_summary_list: Option<Vec<ReplicationInfoSummary>>,
pub replicator_arn: Option<String>,
pub replicator_name: Option<String>,
pub replicator_resource_arn: Option<String>,
pub replicator_state: Option<ReplicatorState>,
}
Expand description
Information about a replicator.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.creation_time: Option<DateTime>
The time the replicator was created.
current_version: Option<String>
The current version of the replicator.
is_replicator_reference: Option<bool>
Whether this resource is a replicator reference.
kafka_clusters_summary: Option<Vec<KafkaClusterSummary>>
Kafka Clusters used in setting up sources / targets for replication.
replication_info_summary_list: Option<Vec<ReplicationInfoSummary>>
A list of summarized information of replications between clusters.
replicator_arn: Option<String>
The Amazon Resource Name (ARN) of the replicator.
replicator_name: Option<String>
The name of the replicator.
replicator_resource_arn: Option<String>
The Amazon Resource Name (ARN) of the replicator resource in the region where the replicator was created.
replicator_state: Option<ReplicatorState>
State of the replicator.
Implementations§
source§impl ReplicatorSummary
impl ReplicatorSummary
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
The time the replicator was created.
sourcepub fn current_version(&self) -> Option<&str>
pub fn current_version(&self) -> Option<&str>
The current version of the replicator.
sourcepub fn is_replicator_reference(&self) -> Option<bool>
pub fn is_replicator_reference(&self) -> Option<bool>
Whether this resource is a replicator reference.
sourcepub fn kafka_clusters_summary(&self) -> &[KafkaClusterSummary]
pub fn kafka_clusters_summary(&self) -> &[KafkaClusterSummary]
Kafka Clusters used in setting up sources / targets for replication.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .kafka_clusters_summary.is_none()
.
sourcepub fn replication_info_summary_list(&self) -> &[ReplicationInfoSummary]
pub fn replication_info_summary_list(&self) -> &[ReplicationInfoSummary]
A list of summarized information of replications between clusters.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .replication_info_summary_list.is_none()
.
sourcepub fn replicator_arn(&self) -> Option<&str>
pub fn replicator_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the replicator.
sourcepub fn replicator_name(&self) -> Option<&str>
pub fn replicator_name(&self) -> Option<&str>
The name of the replicator.
sourcepub fn replicator_resource_arn(&self) -> Option<&str>
pub fn replicator_resource_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the replicator resource in the region where the replicator was created.
sourcepub fn replicator_state(&self) -> Option<&ReplicatorState>
pub fn replicator_state(&self) -> Option<&ReplicatorState>
State of the replicator.
source§impl ReplicatorSummary
impl ReplicatorSummary
sourcepub fn builder() -> ReplicatorSummaryBuilder
pub fn builder() -> ReplicatorSummaryBuilder
Creates a new builder-style object to manufacture ReplicatorSummary
.
Trait Implementations§
source§impl Clone for ReplicatorSummary
impl Clone for ReplicatorSummary
source§fn clone(&self) -> ReplicatorSummary
fn clone(&self) -> ReplicatorSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ReplicatorSummary
impl Debug for ReplicatorSummary
source§impl PartialEq for ReplicatorSummary
impl PartialEq for ReplicatorSummary
source§fn eq(&self, other: &ReplicatorSummary) -> bool
fn eq(&self, other: &ReplicatorSummary) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ReplicatorSummary
Auto Trait Implementations§
impl Freeze for ReplicatorSummary
impl RefUnwindSafe for ReplicatorSummary
impl Send for ReplicatorSummary
impl Sync for ReplicatorSummary
impl Unpin for ReplicatorSummary
impl UnwindSafe for ReplicatorSummary
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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