[][src]Struct rusoto_signer::PutSigningProfileRequest

pub struct PutSigningProfileRequest {
    pub overrides: Option<SigningPlatformOverrides>,
    pub platform_id: String,
    pub profile_name: String,
    pub signing_material: SigningMaterial,
    pub signing_parameters: Option<HashMap<String, String>>,
    pub tags: Option<HashMap<String, String>>,
}

Fields

overrides: Option<SigningPlatformOverrides>

A subfield of platform. This specifies any different configuration options that you want to apply to the chosen platform (such as a different hash-algorithm or signing-algorithm).

platform_id: String

The ID of the signing platform to be created.

profile_name: String

The name of the signing profile to be created.

signing_material: SigningMaterial

The AWS Certificate Manager certificate that will be used to sign code with the new signing profile.

signing_parameters: Option<HashMap<String, String>>

Map of key-value pairs for signing. These can include any information that you want to use during signing.

tags: Option<HashMap<String, String>>

Tags to be associated with the signing profile that is being created.

Trait Implementations

impl Clone for PutSigningProfileRequest[src]

impl Debug for PutSigningProfileRequest[src]

impl Default for PutSigningProfileRequest[src]

impl PartialEq<PutSigningProfileRequest> for PutSigningProfileRequest[src]

impl Serialize for PutSigningProfileRequest[src]

impl StructuralPartialEq for PutSigningProfileRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.