Struct aws_sdk_iam::operation::delete_saml_provider::builders::DeleteSAMLProviderFluentBuilder
source · pub struct DeleteSAMLProviderFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to DeleteSAMLProvider
.
Deletes a SAML provider resource in IAM.
Deleting the provider resource from IAM does not update any roles that reference the SAML provider resource's ARN as a principal in their trust policies. Any attempt to assume a role that references a non-existent provider resource ARN fails.
This operation requires Signature Version 4.
Implementations§
source§impl DeleteSAMLProviderFluentBuilder
impl DeleteSAMLProviderFluentBuilder
sourcepub fn as_input(&self) -> &DeleteSamlProviderInputBuilder
pub fn as_input(&self) -> &DeleteSamlProviderInputBuilder
Access the DeleteSAMLProvider as a reference.
sourcepub async fn send(
self
) -> Result<DeleteSamlProviderOutput, SdkError<DeleteSAMLProviderError, HttpResponse>>
pub async fn send( self ) -> Result<DeleteSamlProviderOutput, SdkError<DeleteSAMLProviderError, 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<DeleteSamlProviderOutput, DeleteSAMLProviderError, Self>
pub fn customize( self ) -> CustomizableOperation<DeleteSamlProviderOutput, DeleteSAMLProviderError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn saml_provider_arn(self, input: impl Into<String>) -> Self
pub fn saml_provider_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the SAML provider to delete.
sourcepub fn set_saml_provider_arn(self, input: Option<String>) -> Self
pub fn set_saml_provider_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the SAML provider to delete.
sourcepub fn get_saml_provider_arn(&self) -> &Option<String>
pub fn get_saml_provider_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the SAML provider to delete.
Trait Implementations§
source§impl Clone for DeleteSAMLProviderFluentBuilder
impl Clone for DeleteSAMLProviderFluentBuilder
source§fn clone(&self) -> DeleteSAMLProviderFluentBuilder
fn clone(&self) -> DeleteSAMLProviderFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more