Struct aws_sdk_licensemanager::types::IssuerDetails
source · #[non_exhaustive]pub struct IssuerDetails {
pub name: Option<String>,
pub sign_key: Option<String>,
pub key_fingerprint: Option<String>,
}Expand description
Details associated with the issuer of a license.
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.name: Option<String>Issuer name.
sign_key: Option<String>Asymmetric KMS key from Key Management Service. The KMS key must have a key usage of sign and verify, and support the RSASSA-PSS SHA-256 signing algorithm.
key_fingerprint: Option<String>Issuer key fingerprint.
Implementations§
source§impl IssuerDetails
impl IssuerDetails
source§impl IssuerDetails
impl IssuerDetails
sourcepub fn builder() -> IssuerDetailsBuilder
pub fn builder() -> IssuerDetailsBuilder
Creates a new builder-style object to manufacture IssuerDetails.
Trait Implementations§
source§impl Clone for IssuerDetails
impl Clone for IssuerDetails
source§fn clone(&self) -> IssuerDetails
fn clone(&self) -> IssuerDetails
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 IssuerDetails
impl Debug for IssuerDetails
source§impl PartialEq<IssuerDetails> for IssuerDetails
impl PartialEq<IssuerDetails> for IssuerDetails
source§fn eq(&self, other: &IssuerDetails) -> bool
fn eq(&self, other: &IssuerDetails) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for IssuerDetails
Auto Trait Implementations§
impl RefUnwindSafe for IssuerDetails
impl Send for IssuerDetails
impl Sync for IssuerDetails
impl Unpin for IssuerDetails
impl UnwindSafe for IssuerDetails
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