aws_sdk_route53/client/get_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 [`GetDNSSEC`](crate::operation::get_dnssec::builders::GetDNSSECFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - On success, responds with [`GetDnssecOutput`](crate::operation::get_dnssec::GetDnssecOutput) with field(s):
8 /// - [`status(Option<DnssecStatus>)`](crate::operation::get_dnssec::GetDnssecOutput::status): <p>A string representing the status of DNSSEC.</p>
9 /// - [`key_signing_keys(Vec::<KeySigningKey>)`](crate::operation::get_dnssec::GetDnssecOutput::key_signing_keys): <p>The key-signing keys (KSKs) in your account.</p>
10 /// - On failure, responds with [`SdkError<GetDNSSECError>`](crate::operation::get_dnssec::GetDNSSECError)
11 pub fn get_dnssec(&self) -> crate::operation::get_dnssec::builders::GetDNSSECFluentBuilder {
12 crate::operation::get_dnssec::builders::GetDNSSECFluentBuilder::new(self.handle.clone())
13 }
14}