Struct rusoto_iot::CustomCodeSigning [] [src]

pub struct CustomCodeSigning {
    pub certificate_chain: Option<CodeSigningCertificateChain>,
    pub hash_algorithm: Option<String>,
    pub signature: Option<CodeSigningSignature>,
    pub signature_algorithm: Option<String>,
}

Describes a custom method used to code sign a file.

Fields

The certificate chain.

The hash algorithm used to code sign the file.

The signature for the file.

The signature algorithm used to code sign the file.

Trait Implementations

impl Default for CustomCodeSigning
[src]

[src]

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

impl Debug for CustomCodeSigning
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CustomCodeSigning
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations