aws-sdk-route53 1.84.0

AWS SDK for Amazon Route 53
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetDNSSEC`](crate::operation::get_dnssec::builders::GetDNSSECFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`hosted_zone_id(impl Into<String>)`](crate::operation::get_dnssec::builders::GetDNSSECFluentBuilder::hosted_zone_id) / [`set_hosted_zone_id(Option<String>)`](crate::operation::get_dnssec::builders::GetDNSSECFluentBuilder::set_hosted_zone_id):<br>required: **true**<br><p>A unique string used to identify a hosted zone.</p><br>
    /// - On success, responds with [`GetDnssecOutput`](crate::operation::get_dnssec::GetDnssecOutput) with field(s):
    ///   - [`status(Option<DnssecStatus>)`](crate::operation::get_dnssec::GetDnssecOutput::status): <p>A string representing the status of DNSSEC.</p>
    ///   - [`key_signing_keys(Vec::<KeySigningKey>)`](crate::operation::get_dnssec::GetDnssecOutput::key_signing_keys): <p>The key-signing keys (KSKs) in your account.</p>
    /// - On failure, responds with [`SdkError<GetDNSSECError>`](crate::operation::get_dnssec::GetDNSSECError)
    pub fn get_dnssec(&self) -> crate::operation::get_dnssec::builders::GetDNSSECFluentBuilder {
        crate::operation::get_dnssec::builders::GetDNSSECFluentBuilder::new(self.handle.clone())
    }
}