Struct rusoto_iam::DeleteSigningCertificateRequest[][src]

pub struct DeleteSigningCertificateRequest {
    pub certificate_id: String,
    pub user_name: Option<String>,
}

Fields

The ID of the signing certificate to delete.

The format of this parameter, as described by its regex pattern, is a string of characters that can be upper- or lower-cased letters or digits.

The name of the user the signing certificate belongs to.

This parameter allows (per its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-

Trait Implementations

impl Default for DeleteSigningCertificateRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for DeleteSigningCertificateRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DeleteSigningCertificateRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DeleteSigningCertificateRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations