pub struct ResponseHeadersPolicy {
pub id: String,
pub last_modified_time: DateTime<Utc>,
pub config: ResponseHeadersPolicyConfig,
pub etag: String,
pub managed: bool,
}Expand description
Response headers policy record.
Fields§
§id: StringPolicy ID.
last_modified_time: DateTime<Utc>Last-modified timestamp.
config: ResponseHeadersPolicyConfigConfiguration.
etag: StringETag.
managed: boolAWS-managed flag.
Trait Implementations§
Source§impl Clone for ResponseHeadersPolicy
impl Clone for ResponseHeadersPolicy
Source§fn clone(&self) -> ResponseHeadersPolicy
fn clone(&self) -> ResponseHeadersPolicy
Returns a duplicate of the value. Read more
1.0.0 · 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 ResponseHeadersPolicy
impl Debug for ResponseHeadersPolicy
Source§impl<'de> Deserialize<'de> for ResponseHeadersPolicy
impl<'de> Deserialize<'de> for ResponseHeadersPolicy
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 ResponseHeadersPolicy
impl RefUnwindSafe for ResponseHeadersPolicy
impl Send for ResponseHeadersPolicy
impl Sync for ResponseHeadersPolicy
impl Unpin for ResponseHeadersPolicy
impl UnsafeUnpin for ResponseHeadersPolicy
impl UnwindSafe for ResponseHeadersPolicy
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