pub struct Route53Client<'a> { /* private fields */ }Implementations§
Source§impl Route53Client<'_>
impl Route53Client<'_>
Sourcepub async fn dnssec_material(
&self,
zone_id: &str,
) -> Result<Route53DnssecMaterialResponse, Error>
pub async fn dnssec_material( &self, zone_id: &str, ) -> Result<Route53DnssecMaterialResponse, Error>
Fetch the deterministic DNSSEC chain-of-trust material for a
hosted zone. Returns Err(Error::Api { status: 404, .. }) when
the zone has no ACTIVE KSK.
Sourcepub async fn dnssec_sign(
&self,
zone_id: &str,
req: &Route53DnssecSignRequest,
) -> Result<Route53DnssecSignResponse, Error>
pub async fn dnssec_sign( &self, zone_id: &str, req: &Route53DnssecSignRequest, ) -> Result<Route53DnssecSignResponse, Error>
Sign an RRset under the zone’s first ACTIVE KSK and return the raw RRSIG fields so tests can verify the signature against the zone’s DNSKEY material.
Source§impl Route53Client<'_>
impl Route53Client<'_>
Sourcepub async fn set_health_check_status(
&self,
id: &str,
req: &Route53HealthCheckStatusRequest,
) -> Result<(), Error>
pub async fn set_health_check_status( &self, id: &str, req: &Route53HealthCheckStatusRequest, ) -> Result<(), Error>
Flip a stored Route 53 health check’s reported status (and
optionally its last-failure observation) so tests can simulate
failover scenarios without a live checker. Returns
Error::Api { status: 404, .. } if the health check is unknown.
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for Route53Client<'a>
impl<'a> !UnwindSafe for Route53Client<'a>
impl<'a> Freeze for Route53Client<'a>
impl<'a> Send for Route53Client<'a>
impl<'a> Sync for Route53Client<'a>
impl<'a> Unpin for Route53Client<'a>
impl<'a> UnsafeUnpin for Route53Client<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more