pub struct CreateCertificateFromCsrResponse {
pub certificate_arn: Option<String>,
pub certificate_id: Option<String>,
pub certificate_pem: Option<String>,
}Expand description
The output from the CreateCertificateFromCsr operation.
Fields§
§certificate_arn: Option<String>The Amazon Resource Name (ARN) of the certificate. You can use the ARN as a principal for policy operations.
certificate_id: Option<String>The ID of the certificate. Certificate management operations only take a certificateId.
certificate_pem: Option<String>The certificate data, in PEM format.
Trait Implementations§
Source§impl Clone for CreateCertificateFromCsrResponse
impl Clone for CreateCertificateFromCsrResponse
Source§fn clone(&self) -> CreateCertificateFromCsrResponse
fn clone(&self) -> CreateCertificateFromCsrResponse
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 Default for CreateCertificateFromCsrResponse
impl Default for CreateCertificateFromCsrResponse
Source§fn default() -> CreateCertificateFromCsrResponse
fn default() -> CreateCertificateFromCsrResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateCertificateFromCsrResponse
impl<'de> Deserialize<'de> for CreateCertificateFromCsrResponse
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 CreateCertificateFromCsrResponse
impl PartialEq for CreateCertificateFromCsrResponse
Source§fn eq(&self, other: &CreateCertificateFromCsrResponse) -> bool
fn eq(&self, other: &CreateCertificateFromCsrResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateCertificateFromCsrResponse
Auto Trait Implementations§
impl Freeze for CreateCertificateFromCsrResponse
impl RefUnwindSafe for CreateCertificateFromCsrResponse
impl Send for CreateCertificateFromCsrResponse
impl Sync for CreateCertificateFromCsrResponse
impl Unpin for CreateCertificateFromCsrResponse
impl UnwindSafe for CreateCertificateFromCsrResponse
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