pub struct StoredDistribution {
pub id: String,
pub arn: String,
pub status: String,
pub last_modified_time: DateTime<Utc>,
pub domain_name: String,
pub in_progress_invalidation_batches: u32,
pub etag: String,
pub config: DistributionConfig,
}Fields§
§id: String§arn: String§status: String§last_modified_time: DateTime<Utc>§domain_name: String§in_progress_invalidation_batches: u32§etag: String§config: DistributionConfigTrait Implementations§
Source§impl Clone for StoredDistribution
impl Clone for StoredDistribution
Source§fn clone(&self) -> StoredDistribution
fn clone(&self) -> StoredDistribution
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StoredDistribution
impl Debug for StoredDistribution
Source§impl<'de> Deserialize<'de> for StoredDistribution
impl<'de> Deserialize<'de> for StoredDistribution
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for StoredDistribution
impl RefUnwindSafe for StoredDistribution
impl Send for StoredDistribution
impl Sync for StoredDistribution
impl Unpin for StoredDistribution
impl UnsafeUnpin for StoredDistribution
impl UnwindSafe for StoredDistribution
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more