aws_sdk_route53/client/
disable_hosted_zone_dnssec.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`DisableHostedZoneDNSSEC`](crate::operation::disable_hosted_zone_dnssec::builders::DisableHostedZoneDNSSECFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`hosted_zone_id(impl Into<String>)`](crate::operation::disable_hosted_zone_dnssec::builders::DisableHostedZoneDNSSECFluentBuilder::hosted_zone_id) / [`set_hosted_zone_id(Option<String>)`](crate::operation::disable_hosted_zone_dnssec::builders::DisableHostedZoneDNSSECFluentBuilder::set_hosted_zone_id):<br>required: **true**<br><p>A unique string used to identify a hosted zone.</p><br>
7    /// - On success, responds with [`DisableHostedZoneDnssecOutput`](crate::operation::disable_hosted_zone_dnssec::DisableHostedZoneDnssecOutput) with field(s):
8    ///   - [`change_info(Option<ChangeInfo>)`](crate::operation::disable_hosted_zone_dnssec::DisableHostedZoneDnssecOutput::change_info): <p>A complex type that describes change information about changes made to your hosted zone.</p>
9    /// - On failure, responds with [`SdkError<DisableHostedZoneDNSSECError>`](crate::operation::disable_hosted_zone_dnssec::DisableHostedZoneDNSSECError)
10    pub fn disable_hosted_zone_dnssec(&self) -> crate::operation::disable_hosted_zone_dnssec::builders::DisableHostedZoneDNSSECFluentBuilder {
11        crate::operation::disable_hosted_zone_dnssec::builders::DisableHostedZoneDNSSECFluentBuilder::new(self.handle.clone())
12    }
13}