[][src]Struct rusoto_signer::GetSigningPlatformResponse

pub struct GetSigningPlatformResponse {
    pub category: Option<String>,
    pub display_name: Option<String>,
    pub max_size_in_mb: Option<i64>,
    pub partner: Option<String>,
    pub platform_id: Option<String>,
    pub signing_configuration: Option<SigningConfiguration>,
    pub signing_image_format: Option<SigningImageFormat>,
    pub target: Option<String>,
}

Fields

category: Option<String>

The category type of the target signing platform.

display_name: Option<String>

The display name of the target signing platform.

max_size_in_mb: Option<i64>

The maximum size (in MB) of the payload that can be signed by the target platform.

partner: Option<String>

A list of partner entities that use the target signing platform.

platform_id: Option<String>

The ID of the target signing platform.

signing_configuration: Option<SigningConfiguration>

A list of configurations applied to the target platform at signing.

signing_image_format: Option<SigningImageFormat>

The format of the target platform's signing image.

target: Option<String>

The validation template that is used by the target signing platform.

Trait Implementations

impl Clone for GetSigningPlatformResponse[src]

impl Debug for GetSigningPlatformResponse[src]

impl Default for GetSigningPlatformResponse[src]

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

impl PartialEq<GetSigningPlatformResponse> for GetSigningPlatformResponse[src]

impl StructuralPartialEq for GetSigningPlatformResponse[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: Deserialize<'de>, 
[src]

impl<T> From<T> 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.