pub struct CloudFrontDistribution {
pub id: String,
pub domain_name: String,
pub enabled: bool,
pub bound_port: Option<u16>,
}Fields§
§id: String§domain_name: String§enabled: bool§bound_port: Option<u16>In-process data-plane listener port. None until the supervisor binds
a listener for an enabled distribution (data-plane extension, not part
of the AWS API surface).
Trait Implementations§
Source§impl Clone for CloudFrontDistribution
impl Clone for CloudFrontDistribution
Source§fn clone(&self) -> CloudFrontDistribution
fn clone(&self) -> CloudFrontDistribution
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 CloudFrontDistribution
impl Debug for CloudFrontDistribution
Source§impl<'de> Deserialize<'de> for CloudFrontDistribution
impl<'de> Deserialize<'de> for CloudFrontDistribution
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 CloudFrontDistribution
impl RefUnwindSafe for CloudFrontDistribution
impl Send for CloudFrontDistribution
impl Sync for CloudFrontDistribution
impl Unpin for CloudFrontDistribution
impl UnsafeUnpin for CloudFrontDistribution
impl UnwindSafe for CloudFrontDistribution
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