aws_sdk_rolesanywhere/client/delete_crl.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DeleteCrl`](crate::operation::delete_crl::builders::DeleteCrlFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`crl_id(impl Into<String>)`](crate::operation::delete_crl::builders::DeleteCrlFluentBuilder::crl_id) / [`set_crl_id(Option<String>)`](crate::operation::delete_crl::builders::DeleteCrlFluentBuilder::set_crl_id):<br>required: **true**<br><p>The unique identifier of the certificate revocation list (CRL).</p><br>
/// - On success, responds with [`DeleteCrlOutput`](crate::operation::delete_crl::DeleteCrlOutput) with field(s):
/// - [`crl(Option<CrlDetail>)`](crate::operation::delete_crl::DeleteCrlOutput::crl): <p>The state of the certificate revocation list (CRL) after a read or write operation.</p>
/// - On failure, responds with [`SdkError<DeleteCrlError>`](crate::operation::delete_crl::DeleteCrlError)
pub fn delete_crl(&self) -> crate::operation::delete_crl::builders::DeleteCrlFluentBuilder {
crate::operation::delete_crl::builders::DeleteCrlFluentBuilder::new(self.handle.clone())
}
}