1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`AssociateWirelessGatewayWithCertificate`](crate::operation::associate_wireless_gateway_with_certificate::builders::AssociateWirelessGatewayWithCertificateFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`id(impl Into<String>)`](crate::operation::associate_wireless_gateway_with_certificate::builders::AssociateWirelessGatewayWithCertificateFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::associate_wireless_gateway_with_certificate::builders::AssociateWirelessGatewayWithCertificateFluentBuilder::set_id):<br>required: **true**<br><p>The ID of the resource to update.</p><br>
    ///   - [`iot_certificate_id(impl Into<String>)`](crate::operation::associate_wireless_gateway_with_certificate::builders::AssociateWirelessGatewayWithCertificateFluentBuilder::iot_certificate_id) / [`set_iot_certificate_id(Option<String>)`](crate::operation::associate_wireless_gateway_with_certificate::builders::AssociateWirelessGatewayWithCertificateFluentBuilder::set_iot_certificate_id):<br>required: **true**<br><p>The ID of the certificate to associate with the wireless gateway.</p><br>
    /// - On success, responds with [`AssociateWirelessGatewayWithCertificateOutput`](crate::operation::associate_wireless_gateway_with_certificate::AssociateWirelessGatewayWithCertificateOutput) with field(s):
    ///   - [`iot_certificate_id(Option<String>)`](crate::operation::associate_wireless_gateway_with_certificate::AssociateWirelessGatewayWithCertificateOutput::iot_certificate_id): <p>The ID of the certificate associated with the wireless gateway.</p>
    /// - On failure, responds with [`SdkError<AssociateWirelessGatewayWithCertificateError>`](crate::operation::associate_wireless_gateway_with_certificate::AssociateWirelessGatewayWithCertificateError)
    pub fn associate_wireless_gateway_with_certificate(
        &self,
    ) -> crate::operation::associate_wireless_gateway_with_certificate::builders::AssociateWirelessGatewayWithCertificateFluentBuilder {
        crate::operation::associate_wireless_gateway_with_certificate::builders::AssociateWirelessGatewayWithCertificateFluentBuilder::new(
            self.handle.clone(),
        )
    }
}