pub struct CreateKeysAndCertificateResponse {
pub certificate_arn: Option<String>,
pub certificate_id: Option<String>,
pub certificate_pem: Option<String>,
pub key_pair: Option<KeyPair>,
}Expand description
The output of the CreateKeysAndCertificate operation.
Fields§
§certificate_arn: Option<String>The ARN of the certificate.
certificate_id: Option<String>The ID of the certificate. AWS IoT issues a default subject name for the certificate (for example, AWS IoT Certificate).
certificate_pem: Option<String>The certificate data, in PEM format.
key_pair: Option<KeyPair>The generated key pair.
Trait Implementations§
Source§impl Clone for CreateKeysAndCertificateResponse
impl Clone for CreateKeysAndCertificateResponse
Source§fn clone(&self) -> CreateKeysAndCertificateResponse
fn clone(&self) -> CreateKeysAndCertificateResponse
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 CreateKeysAndCertificateResponse
impl Default for CreateKeysAndCertificateResponse
Source§fn default() -> CreateKeysAndCertificateResponse
fn default() -> CreateKeysAndCertificateResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateKeysAndCertificateResponse
impl<'de> Deserialize<'de> for CreateKeysAndCertificateResponse
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 CreateKeysAndCertificateResponse
impl PartialEq for CreateKeysAndCertificateResponse
Source§fn eq(&self, other: &CreateKeysAndCertificateResponse) -> bool
fn eq(&self, other: &CreateKeysAndCertificateResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateKeysAndCertificateResponse
Auto Trait Implementations§
impl Freeze for CreateKeysAndCertificateResponse
impl RefUnwindSafe for CreateKeysAndCertificateResponse
impl Send for CreateKeysAndCertificateResponse
impl Sync for CreateKeysAndCertificateResponse
impl Unpin for CreateKeysAndCertificateResponse
impl UnwindSafe for CreateKeysAndCertificateResponse
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