[][src]Struct rusoto_transfer::DescribedSecurityPolicy

pub struct DescribedSecurityPolicy {
    pub fips: Option<bool>,
    pub security_policy_name: String,
    pub ssh_ciphers: Option<Vec<String>>,
    pub ssh_kexs: Option<Vec<String>>,
    pub ssh_macs: Option<Vec<String>>,
    pub tls_ciphers: Option<Vec<String>>,
}

Describes the properties of a security policy that was specified. For more information about security policies, see Working with security policies.

Fields

fips: Option<bool>

Specifies whether this policy enables Federal Information Processing Standards (FIPS).

security_policy_name: String

Specifies the name of the security policy that is attached to the server.

ssh_ciphers: Option<Vec<String>>

Specifies the enabled Secure Shell (SSH) cipher encryption algorithms in the security policy that is attached to the server.

ssh_kexs: Option<Vec<String>>

Specifies the enabled SSH key exchange (KEX) encryption algorithms in the security policy that is attached to the server.

ssh_macs: Option<Vec<String>>

Specifies the enabled SSH message authentication code (MAC) encryption algorithms in the security policy that is attached to the server.

tls_ciphers: Option<Vec<String>>

Specifies the enabled Transport Layer Security (TLS) cipher encryption algorithms in the security policy that is attached to the server.

Trait Implementations

impl Clone for DescribedSecurityPolicy[src]

impl Debug for DescribedSecurityPolicy[src]

impl Default for DescribedSecurityPolicy[src]

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

impl PartialEq<DescribedSecurityPolicy> for DescribedSecurityPolicy[src]

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