Struct rusoto_cloudfront::OriginSslProtocols[][src]

pub struct OriginSslProtocols {
    pub items: Vec<String>,
    pub quantity: i64,
}

A complex type that contains information about the SSL/TLS protocols that CloudFront can use when establishing an HTTPS connection with your origin.

Fields

A list that contains allowed SSL/TLS protocols for this distribution.

The number of SSL/TLS protocols that you want to allow CloudFront to use when establishing an HTTPS connection with this origin.

Trait Implementations

impl Default for OriginSslProtocols
[src]

Returns the "default value" for a type. Read more

impl Debug for OriginSslProtocols
[src]

Formats the value using the given formatter. Read more

impl Clone for OriginSslProtocols
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for OriginSslProtocols
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations