Struct aws_sdk_iam::model::SigningCertificate [−][src]
#[non_exhaustive]pub struct SigningCertificate {
pub user_name: Option<String>,
pub certificate_id: Option<String>,
pub certificate_body: Option<String>,
pub status: Option<StatusType>,
pub upload_date: Option<DateTime>,
}Expand description
Contains information about an X.509 signing certificate.
This data type is used as a response element in the UploadSigningCertificate and ListSigningCertificates operations.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.user_name: Option<String>The name of the user the signing certificate is associated with.
certificate_id: Option<String>The ID for the signing certificate.
certificate_body: Option<String>The contents of the signing certificate.
status: Option<StatusType>The status of the signing certificate. Active means that the key is valid
for API calls, while Inactive means it is not.
upload_date: Option<DateTime>The date when the signing certificate was uploaded.
Implementations
The name of the user the signing certificate is associated with.
The ID for the signing certificate.
The contents of the signing certificate.
The status of the signing certificate. Active means that the key is valid
for API calls, while Inactive means it is not.
The date when the signing certificate was uploaded.
Creates a new builder-style object to manufacture SigningCertificate
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for SigningCertificate
impl Send for SigningCertificate
impl Sync for SigningCertificate
impl Unpin for SigningCertificate
impl UnwindSafe for SigningCertificate
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more