// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`RegisterCertificateWithoutCA`](crate::operation::register_certificate_without_ca::builders::RegisterCertificateWithoutCAFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`certificate_pem(impl Into<String>)`](crate::operation::register_certificate_without_ca::builders::RegisterCertificateWithoutCAFluentBuilder::certificate_pem) / [`set_certificate_pem(Option<String>)`](crate::operation::register_certificate_without_ca::builders::RegisterCertificateWithoutCAFluentBuilder::set_certificate_pem):<br>required: **true**<br><p>The certificate data, in PEM format.</p><br>
/// - [`status(CertificateStatus)`](crate::operation::register_certificate_without_ca::builders::RegisterCertificateWithoutCAFluentBuilder::status) / [`set_status(Option<CertificateStatus>)`](crate::operation::register_certificate_without_ca::builders::RegisterCertificateWithoutCAFluentBuilder::set_status):<br>required: **false**<br><p>The status of the register certificate request.</p><br>
/// - On success, responds with [`RegisterCertificateWithoutCaOutput`](crate::operation::register_certificate_without_ca::RegisterCertificateWithoutCaOutput) with field(s):
/// - [`certificate_arn(Option<String>)`](crate::operation::register_certificate_without_ca::RegisterCertificateWithoutCaOutput::certificate_arn): <p>The Amazon Resource Name (ARN) of the registered certificate.</p>
/// - [`certificate_id(Option<String>)`](crate::operation::register_certificate_without_ca::RegisterCertificateWithoutCaOutput::certificate_id): <p>The ID of the registered certificate. (The last part of the certificate ARN contains the certificate ID.</p>
/// - On failure, responds with [`SdkError<RegisterCertificateWithoutCAError>`](crate::operation::register_certificate_without_ca::RegisterCertificateWithoutCAError)
pub fn register_certificate_without_ca(
&self,
) -> crate::operation::register_certificate_without_ca::builders::RegisterCertificateWithoutCAFluentBuilder {
crate::operation::register_certificate_without_ca::builders::RegisterCertificateWithoutCAFluentBuilder::new(self.handle.clone())
}
}