aws_sdk_vpclattice/client/
delete_auth_policy.rs

1
2
3
4
5
6
7
8
9
10
11
12
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteAuthPolicy`](crate::operation::delete_auth_policy::builders::DeleteAuthPolicyFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`resource_identifier(impl Into<String>)`](crate::operation::delete_auth_policy::builders::DeleteAuthPolicyFluentBuilder::resource_identifier) / [`set_resource_identifier(Option<String>)`](crate::operation::delete_auth_policy::builders::DeleteAuthPolicyFluentBuilder::set_resource_identifier):<br>required: **true**<br><p>The ID or Amazon Resource Name (ARN) of the resource.</p><br>
    /// - On success, responds with [`DeleteAuthPolicyOutput`](crate::operation::delete_auth_policy::DeleteAuthPolicyOutput)
    /// - On failure, responds with [`SdkError<DeleteAuthPolicyError>`](crate::operation::delete_auth_policy::DeleteAuthPolicyError)
    pub fn delete_auth_policy(&self) -> crate::operation::delete_auth_policy::builders::DeleteAuthPolicyFluentBuilder {
        crate::operation::delete_auth_policy::builders::DeleteAuthPolicyFluentBuilder::new(self.handle.clone())
    }
}