Struct aws_sdk_paymentcryptography::operation::get_public_key_certificate::GetPublicKeyCertificateInput
source · #[non_exhaustive]pub struct GetPublicKeyCertificateInput {
pub key_identifier: Option<String>,
}
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_identifier: Option<String>
The KeyARN
of the asymmetric key pair.
Implementations§
source§impl GetPublicKeyCertificateInput
impl GetPublicKeyCertificateInput
sourcepub fn key_identifier(&self) -> Option<&str>
pub fn key_identifier(&self) -> Option<&str>
The KeyARN
of the asymmetric key pair.
source§impl GetPublicKeyCertificateInput
impl GetPublicKeyCertificateInput
sourcepub fn builder() -> GetPublicKeyCertificateInputBuilder
pub fn builder() -> GetPublicKeyCertificateInputBuilder
Creates a new builder-style object to manufacture GetPublicKeyCertificateInput
.
Trait Implementations§
source§impl Clone for GetPublicKeyCertificateInput
impl Clone for GetPublicKeyCertificateInput
source§fn clone(&self) -> GetPublicKeyCertificateInput
fn clone(&self) -> GetPublicKeyCertificateInput
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 Debug for GetPublicKeyCertificateInput
impl Debug for GetPublicKeyCertificateInput
source§impl PartialEq for GetPublicKeyCertificateInput
impl PartialEq for GetPublicKeyCertificateInput
source§fn eq(&self, other: &GetPublicKeyCertificateInput) -> bool
fn eq(&self, other: &GetPublicKeyCertificateInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetPublicKeyCertificateInput
Auto Trait Implementations§
impl RefUnwindSafe for GetPublicKeyCertificateInput
impl Send for GetPublicKeyCertificateInput
impl Sync for GetPublicKeyCertificateInput
impl Unpin for GetPublicKeyCertificateInput
impl UnwindSafe for GetPublicKeyCertificateInput
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