pub struct OutgoingCertificate {
pub certificate_arn: Option<String>,
pub certificate_id: Option<String>,
pub creation_date: Option<f64>,
pub transfer_date: Option<f64>,
pub transfer_message: Option<String>,
pub transferred_to: Option<String>,
}Expand description
A certificate that has been transferred but not yet accepted.
Fields§
§certificate_arn: Option<String>The certificate ARN.
certificate_id: Option<String>The certificate ID.
creation_date: Option<f64>The certificate creation date.
transfer_date: Option<f64>The date the transfer was initiated.
transfer_message: Option<String>The transfer message.
transferred_to: Option<String>The AWS account to which the transfer was made.
Trait Implementations§
Source§impl Clone for OutgoingCertificate
impl Clone for OutgoingCertificate
Source§fn clone(&self) -> OutgoingCertificate
fn clone(&self) -> OutgoingCertificate
Returns a duplicate 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 Debug for OutgoingCertificate
impl Debug for OutgoingCertificate
Source§impl Default for OutgoingCertificate
impl Default for OutgoingCertificate
Source§fn default() -> OutgoingCertificate
fn default() -> OutgoingCertificate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OutgoingCertificate
impl<'de> Deserialize<'de> for OutgoingCertificate
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
Source§impl PartialEq for OutgoingCertificate
impl PartialEq for OutgoingCertificate
impl StructuralPartialEq for OutgoingCertificate
Auto Trait Implementations§
impl Freeze for OutgoingCertificate
impl RefUnwindSafe for OutgoingCertificate
impl Send for OutgoingCertificate
impl Sync for OutgoingCertificate
impl Unpin for OutgoingCertificate
impl UnwindSafe for OutgoingCertificate
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