Struct aws_sdk_paymentcryptography::operation::get_public_key_certificate::GetPublicKeyCertificateOutput
source · #[non_exhaustive]pub struct GetPublicKeyCertificateOutput {
pub key_certificate: String,
pub key_certificate_chain: String,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.key_certificate: StringThe public key component of the asymmetric key pair in a certificate PEM format (base64 encoded). It is signed by the root certificate authority (CA). The certificate expires in 90 days.
key_certificate_chain: StringThe root certificate authority (CA) that signed the public key certificate in PEM format (base64 encoded) of the asymmetric key pair.
Implementations§
source§impl GetPublicKeyCertificateOutput
impl GetPublicKeyCertificateOutput
sourcepub fn key_certificate(&self) -> &str
pub fn key_certificate(&self) -> &str
The public key component of the asymmetric key pair in a certificate PEM format (base64 encoded). It is signed by the root certificate authority (CA). The certificate expires in 90 days.
sourcepub fn key_certificate_chain(&self) -> &str
pub fn key_certificate_chain(&self) -> &str
The root certificate authority (CA) that signed the public key certificate in PEM format (base64 encoded) of the asymmetric key pair.
source§impl GetPublicKeyCertificateOutput
impl GetPublicKeyCertificateOutput
sourcepub fn builder() -> GetPublicKeyCertificateOutputBuilder
pub fn builder() -> GetPublicKeyCertificateOutputBuilder
Creates a new builder-style object to manufacture GetPublicKeyCertificateOutput.
Trait Implementations§
source§impl Clone for GetPublicKeyCertificateOutput
impl Clone for GetPublicKeyCertificateOutput
source§fn clone(&self) -> GetPublicKeyCertificateOutput
fn clone(&self) -> GetPublicKeyCertificateOutput
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 PartialEq for GetPublicKeyCertificateOutput
impl PartialEq for GetPublicKeyCertificateOutput
source§fn eq(&self, other: &GetPublicKeyCertificateOutput) -> bool
fn eq(&self, other: &GetPublicKeyCertificateOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for GetPublicKeyCertificateOutput
impl RequestId for GetPublicKeyCertificateOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for GetPublicKeyCertificateOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetPublicKeyCertificateOutput
impl Send for GetPublicKeyCertificateOutput
impl Sync for GetPublicKeyCertificateOutput
impl Unpin for GetPublicKeyCertificateOutput
impl UnwindSafe for GetPublicKeyCertificateOutput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.