[][src]Struct rusoto_gamelift::CertificateConfiguration

pub struct CertificateConfiguration {
    pub certificate_type: String,
}

Information about the use of a TLS/SSL certificate for a fleet. TLS certificate generation is enabled at the fleet level, with one certificate generated for the fleet. When this feature is enabled, the certificate can be retrieved using the GameLift Server SDK call GetInstanceCertificate. All instances in a fleet share the same certificate.

Fields

certificate_type: String

Indicates whether a TLS/SSL certificate was generated for a fleet.

Trait Implementations

impl Clone for CertificateConfiguration[src]

impl Debug for CertificateConfiguration[src]

impl Default for CertificateConfiguration[src]

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

impl PartialEq<CertificateConfiguration> for CertificateConfiguration[src]

impl Serialize for CertificateConfiguration[src]

impl StructuralPartialEq for CertificateConfiguration[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.