aws_sdk_route53/client/
enable_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 [`EnableHostedZoneDNSSEC`](crate::operation::enable_hosted_zone_dnssec::builders::EnableHostedZoneDNSSECFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`hosted_zone_id(impl Into<String>)`](crate::operation::enable_hosted_zone_dnssec::builders::EnableHostedZoneDNSSECFluentBuilder::hosted_zone_id) / [`set_hosted_zone_id(Option<String>)`](crate::operation::enable_hosted_zone_dnssec::builders::EnableHostedZoneDNSSECFluentBuilder::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 [`EnableHostedZoneDnssecOutput`](crate::operation::enable_hosted_zone_dnssec::EnableHostedZoneDnssecOutput) with field(s):
8    ///   - [`change_info(Option<ChangeInfo>)`](crate::operation::enable_hosted_zone_dnssec::EnableHostedZoneDnssecOutput::change_info): <p>A complex type that describes change information about changes made to your hosted zone.</p>
9    /// - On failure, responds with [`SdkError<EnableHostedZoneDNSSECError>`](crate::operation::enable_hosted_zone_dnssec::EnableHostedZoneDNSSECError)
10    pub fn enable_hosted_zone_dnssec(&self) -> crate::operation::enable_hosted_zone_dnssec::builders::EnableHostedZoneDNSSECFluentBuilder {
11        crate::operation::enable_hosted_zone_dnssec::builders::EnableHostedZoneDNSSECFluentBuilder::new(self.handle.clone())
12    }
13}