aws_sdk_kafka/client/describe_replicator.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`DescribeReplicator`](crate::operation::describe_replicator::builders::DescribeReplicatorFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`replicator_arn(impl Into<String>)`](crate::operation::describe_replicator::builders::DescribeReplicatorFluentBuilder::replicator_arn) / [`set_replicator_arn(Option<String>)`](crate::operation::describe_replicator::builders::DescribeReplicatorFluentBuilder::set_replicator_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the replicator to be described.</p><br>
7 /// - On success, responds with [`DescribeReplicatorOutput`](crate::operation::describe_replicator::DescribeReplicatorOutput) with field(s):
8 /// - [`creation_time(Option<DateTime>)`](crate::operation::describe_replicator::DescribeReplicatorOutput::creation_time): <p>The time when the replicator was created.</p>
9 /// - [`current_version(Option<String>)`](crate::operation::describe_replicator::DescribeReplicatorOutput::current_version): <p>The current version number of the replicator.</p>
10 /// - [`is_replicator_reference(Option<bool>)`](crate::operation::describe_replicator::DescribeReplicatorOutput::is_replicator_reference): <p>Whether this resource is a replicator reference.</p>
11 /// - [`kafka_clusters(Option<Vec::<KafkaClusterDescription>>)`](crate::operation::describe_replicator::DescribeReplicatorOutput::kafka_clusters): <p>Kafka Clusters used in setting up sources / targets for replication.</p>
12 /// - [`replication_info_list(Option<Vec::<ReplicationInfoDescription>>)`](crate::operation::describe_replicator::DescribeReplicatorOutput::replication_info_list): <p>A list of replication configurations, where each configuration targets a given source cluster to target cluster replication flow.</p>
13 /// - [`replicator_arn(Option<String>)`](crate::operation::describe_replicator::DescribeReplicatorOutput::replicator_arn): <p>The Amazon Resource Name (ARN) of the replicator.</p>
14 /// - [`replicator_description(Option<String>)`](crate::operation::describe_replicator::DescribeReplicatorOutput::replicator_description): <p>The description of the replicator.</p>
15 /// - [`replicator_name(Option<String>)`](crate::operation::describe_replicator::DescribeReplicatorOutput::replicator_name): <p>The name of the replicator.</p>
16 /// - [`replicator_resource_arn(Option<String>)`](crate::operation::describe_replicator::DescribeReplicatorOutput::replicator_resource_arn): <p>The Amazon Resource Name (ARN) of the replicator resource in the region where the replicator was created.</p>
17 /// - [`replicator_state(Option<ReplicatorState>)`](crate::operation::describe_replicator::DescribeReplicatorOutput::replicator_state): <p>State of the replicator.</p>
18 /// - [`service_execution_role_arn(Option<String>)`](crate::operation::describe_replicator::DescribeReplicatorOutput::service_execution_role_arn): <p>The Amazon Resource Name (ARN) of the IAM role used by the replicator to access resources in the customer's account (e.g source and target clusters)</p>
19 /// - [`state_info(Option<ReplicationStateInfo>)`](crate::operation::describe_replicator::DescribeReplicatorOutput::state_info): <p>Details about the state of the replicator.</p>
20 /// - [`tags(Option<HashMap::<String, String>>)`](crate::operation::describe_replicator::DescribeReplicatorOutput::tags): <p>List of tags attached to the Replicator.</p>
21 /// - On failure, responds with [`SdkError<DescribeReplicatorError>`](crate::operation::describe_replicator::DescribeReplicatorError)
22 pub fn describe_replicator(&self) -> crate::operation::describe_replicator::builders::DescribeReplicatorFluentBuilder {
23 crate::operation::describe_replicator::builders::DescribeReplicatorFluentBuilder::new(self.handle.clone())
24 }
25}