pub struct AcmCertificateChainInfo {
pub certificate_arn: String,
pub certificate_pem_bytes: u64,
pub certificate_pem_blocks: u64,
pub chain_pem_bytes: u64,
pub chain_pem_blocks: u64,
pub external_ca_validated: bool,
pub status: String,
pub cert_type: String,
}Expand description
Response body for GET /_fakecloud/acm/certificates/{arn-or-id}/chain-info.
Reports PEM block/byte counts and a status / cert_type snapshot
so tests can verify that uploaded chains round-trip intact. The
external_ca_validated flag is always false to document that
fakecloud does not run real X.509 verification.
Fields§
§certificate_arn: String§certificate_pem_bytes: u64§certificate_pem_blocks: u64§chain_pem_bytes: u64§chain_pem_blocks: u64§external_ca_validated: bool§status: String§cert_type: StringTrait Implementations§
Source§impl Clone for AcmCertificateChainInfo
impl Clone for AcmCertificateChainInfo
Source§fn clone(&self) -> AcmCertificateChainInfo
fn clone(&self) -> AcmCertificateChainInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AcmCertificateChainInfo
impl Debug for AcmCertificateChainInfo
Source§impl<'de> Deserialize<'de> for AcmCertificateChainInfo
impl<'de> Deserialize<'de> for AcmCertificateChainInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AcmCertificateChainInfo
impl RefUnwindSafe for AcmCertificateChainInfo
impl Send for AcmCertificateChainInfo
impl Sync for AcmCertificateChainInfo
impl Unpin for AcmCertificateChainInfo
impl UnsafeUnpin for AcmCertificateChainInfo
impl UnwindSafe for AcmCertificateChainInfo
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