pub struct DeleteCertificateAuthorityRequest {
pub certificate_authority_arn: String,
pub permanent_deletion_time_in_days: Option<i64>,
}
Fields§
The Amazon Resource Name (ARN) that was returned when you called CreateCertificateAuthority. This must have the following form:
arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012
.
permanent_deletion_time_in_days: Option<i64>
The number of days to make a CA restorable after it has been deleted. This can be anywhere from 7 to 30 days, with 30 being the default.
Trait Implementations§
Source§impl Clone for DeleteCertificateAuthorityRequest
impl Clone for DeleteCertificateAuthorityRequest
Source§fn clone(&self) -> DeleteCertificateAuthorityRequest
fn clone(&self) -> DeleteCertificateAuthorityRequest
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for DeleteCertificateAuthorityRequest
impl Default for DeleteCertificateAuthorityRequest
Source§fn default() -> DeleteCertificateAuthorityRequest
fn default() -> DeleteCertificateAuthorityRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteCertificateAuthorityRequest
impl PartialEq for DeleteCertificateAuthorityRequest
Source§fn eq(&self, other: &DeleteCertificateAuthorityRequest) -> bool
fn eq(&self, other: &DeleteCertificateAuthorityRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DeleteCertificateAuthorityRequest
Auto Trait Implementations§
impl Freeze for DeleteCertificateAuthorityRequest
impl RefUnwindSafe for DeleteCertificateAuthorityRequest
impl Send for DeleteCertificateAuthorityRequest
impl Sync for DeleteCertificateAuthorityRequest
impl Unpin for DeleteCertificateAuthorityRequest
impl UnwindSafe for DeleteCertificateAuthorityRequest
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