[][src]Struct rusoto_signer::GetSigningProfileResponse

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

Fields

arn: Option<String>

The Amazon Resource Name (ARN) for the signing profile.

overrides: Option<SigningPlatformOverrides>

A list of overrides applied by the target signing profile for signing operations.

platform_id: Option<String>

The ID of the platform that is used by the target signing profile.

profile_name: Option<String>

The name of the target signing profile.

signing_material: Option<SigningMaterial>

The ARN of the certificate that the target profile uses for signing operations.

signing_parameters: Option<HashMap<String, String>>

A map of key-value pairs for signing operations that is attached to the target signing profile.

status: Option<String>

The status of the target signing profile.

tags: Option<HashMap<String, String>>

A list of tags associated with the signing profile.

Trait Implementations

impl Clone for GetSigningProfileResponse[src]

impl Debug for GetSigningProfileResponse[src]

impl Default for GetSigningProfileResponse[src]

impl<'de> Deserialize<'de> for GetSigningProfileResponse[src]

impl PartialEq<GetSigningProfileResponse> for GetSigningProfileResponse[src]

impl StructuralPartialEq for GetSigningProfileResponse[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.