pub struct DeletePolicyFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to DeletePolicy.
Deletes the specified policy.
A policy cannot be deleted if it has non-default versions or it is attached to any certificate.
To delete a policy, use the DeletePolicyVersion action to delete all non-default versions of the policy; use the DetachPolicy action to detach the policy from any certificate; and then use the DeletePolicy action to delete the policy.
When a policy is deleted using DeletePolicy, its default version is deleted with it.
Because of the distributed nature of Amazon Web Services, it can take up to five minutes after a policy is detached before it's ready to be deleted.
Requires permission to access the DeletePolicy action.
Implementations§
source§impl DeletePolicyFluentBuilder
impl DeletePolicyFluentBuilder
sourcepub fn as_input(&self) -> &DeletePolicyInputBuilder
pub fn as_input(&self) -> &DeletePolicyInputBuilder
Access the DeletePolicy as a reference.
sourcepub async fn send(
self
) -> Result<DeletePolicyOutput, SdkError<DeletePolicyError, HttpResponse>>
pub async fn send( self ) -> Result<DeletePolicyOutput, SdkError<DeletePolicyError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<DeletePolicyOutput, DeletePolicyError, Self>
pub fn customize( self ) -> CustomizableOperation<DeletePolicyOutput, DeletePolicyError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn policy_name(self, input: impl Into<String>) -> Self
pub fn policy_name(self, input: impl Into<String>) -> Self
The name of the policy to delete.
sourcepub fn set_policy_name(self, input: Option<String>) -> Self
pub fn set_policy_name(self, input: Option<String>) -> Self
The name of the policy to delete.
sourcepub fn get_policy_name(&self) -> &Option<String>
pub fn get_policy_name(&self) -> &Option<String>
The name of the policy to delete.
Trait Implementations§
source§impl Clone for DeletePolicyFluentBuilder
impl Clone for DeletePolicyFluentBuilder
source§fn clone(&self) -> DeletePolicyFluentBuilder
fn clone(&self) -> DeletePolicyFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more