1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeAccessEntry`](crate::operation::describe_access_entry::builders::DescribeAccessEntryFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`cluster_name(impl Into<String>)`](crate::operation::describe_access_entry::builders::DescribeAccessEntryFluentBuilder::cluster_name) / [`set_cluster_name(Option<String>)`](crate::operation::describe_access_entry::builders::DescribeAccessEntryFluentBuilder::set_cluster_name):<br>required: **true**<br><p>The name of your cluster.</p><br>
    ///   - [`principal_arn(impl Into<String>)`](crate::operation::describe_access_entry::builders::DescribeAccessEntryFluentBuilder::principal_arn) / [`set_principal_arn(Option<String>)`](crate::operation::describe_access_entry::builders::DescribeAccessEntryFluentBuilder::set_principal_arn):<br>required: **true**<br><p>The ARN of the IAM principal for the <code>AccessEntry</code>.</p><br>
    /// - On success, responds with [`DescribeAccessEntryOutput`](crate::operation::describe_access_entry::DescribeAccessEntryOutput) with field(s):
    ///   - [`access_entry(Option<AccessEntry>)`](crate::operation::describe_access_entry::DescribeAccessEntryOutput::access_entry): <p>Information about the access entry.</p>
    /// - On failure, responds with [`SdkError<DescribeAccessEntryError>`](crate::operation::describe_access_entry::DescribeAccessEntryError)
    pub fn describe_access_entry(&self) -> crate::operation::describe_access_entry::builders::DescribeAccessEntryFluentBuilder {
        crate::operation::describe_access_entry::builders::DescribeAccessEntryFluentBuilder::new(self.handle.clone())
    }
}