aws_sdk_eks/client/delete_access_entry.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 [`DeleteAccessEntry`](crate::operation::delete_access_entry::builders::DeleteAccessEntryFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`cluster_name(impl Into<String>)`](crate::operation::delete_access_entry::builders::DeleteAccessEntryFluentBuilder::cluster_name) / [`set_cluster_name(Option<String>)`](crate::operation::delete_access_entry::builders::DeleteAccessEntryFluentBuilder::set_cluster_name):<br>required: **true**<br><p>The name of your cluster.</p><br>
7 /// - [`principal_arn(impl Into<String>)`](crate::operation::delete_access_entry::builders::DeleteAccessEntryFluentBuilder::principal_arn) / [`set_principal_arn(Option<String>)`](crate::operation::delete_access_entry::builders::DeleteAccessEntryFluentBuilder::set_principal_arn):<br>required: **true**<br><p>The ARN of the IAM principal for the <code>AccessEntry</code>.</p><br>
8 /// - On success, responds with [`DeleteAccessEntryOutput`](crate::operation::delete_access_entry::DeleteAccessEntryOutput)
9 /// - On failure, responds with [`SdkError<DeleteAccessEntryError>`](crate::operation::delete_access_entry::DeleteAccessEntryError)
10 pub fn delete_access_entry(&self) -> crate::operation::delete_access_entry::builders::DeleteAccessEntryFluentBuilder {
11 crate::operation::delete_access_entry::builders::DeleteAccessEntryFluentBuilder::new(self.handle.clone())
12 }
13}