fakecloud-cloudfront 0.15.1

AWS CloudFront for FakeCloud
Documentation
// CloudFront ConnectionFunction data types. Connection Functions are
// edge functions that run on the connection-handling path (different
// from regular CloudFront Functions which run on viewer requests).
// Same lifecycle as Functions: create -> publish -> attached to
// distributions.

use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct StoredConnectionFunction {
    pub id: String,
    pub name: String,
    pub arn: String,
    pub stage: String,
    pub status: String,
    pub runtime: String,
    pub comment: String,
    /// Latest source bytes (DEVELOPMENT stage). Replaced by
    /// UpdateConnectionFunction; the LIVE snapshot lives in
    /// `live_code` and is taken at PublishConnectionFunction.
    pub code: Vec<u8>,
    /// Snapshot of `code` taken at the most recent
    /// PublishConnectionFunction. `TestConnectionFunction(Stage=LIVE)`
    /// runs against this so the published behaviour stays stable while
    /// DEVELOPMENT keeps mutating.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub live_code: Option<Vec<u8>>,
    pub etag: String,
    pub created_time: DateTime<Utc>,
    pub last_modified_time: DateTime<Utc>,
}