1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribePartnerEventSource`](crate::operation::describe_partner_event_source::builders::DescribePartnerEventSourceFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`name(impl Into<String>)`](crate::operation::describe_partner_event_source::builders::DescribePartnerEventSourceFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::describe_partner_event_source::builders::DescribePartnerEventSourceFluentBuilder::set_name):<br>required: **true**<br><p>The name of the event source to display.</p><br>
    /// - On success, responds with [`DescribePartnerEventSourceOutput`](crate::operation::describe_partner_event_source::DescribePartnerEventSourceOutput) with field(s):
    ///   - [`arn(Option<String>)`](crate::operation::describe_partner_event_source::DescribePartnerEventSourceOutput::arn): <p>The ARN of the event source.</p>
    ///   - [`name(Option<String>)`](crate::operation::describe_partner_event_source::DescribePartnerEventSourceOutput::name): <p>The name of the event source.</p>
    /// - On failure, responds with [`SdkError<DescribePartnerEventSourceError>`](crate::operation::describe_partner_event_source::DescribePartnerEventSourceError)
    pub fn describe_partner_event_source(
        &self,
    ) -> crate::operation::describe_partner_event_source::builders::DescribePartnerEventSourceFluentBuilder {
        crate::operation::describe_partner_event_source::builders::DescribePartnerEventSourceFluentBuilder::new(self.handle.clone())
    }
}