pub struct ApiCacheEntry {
pub api_id: String,
pub api_caching_behavior: String,
pub type: String,
pub ttl: i64,
pub at_rest_encryption_enabled: bool,
pub transit_encryption_enabled: bool,
pub status: String,
pub health_metrics_config: Option<String>,
}Expand description
An API cache resource.
Fields§
§api_id: String§api_caching_behavior: String§type: String§ttl: i64§at_rest_encryption_enabled: bool§transit_encryption_enabled: bool§status: String§health_metrics_config: Option<String>Trait Implementations§
Source§impl Clone for ApiCacheEntry
impl Clone for ApiCacheEntry
Source§fn clone(&self) -> ApiCacheEntry
fn clone(&self) -> ApiCacheEntry
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 ApiCacheEntry
impl Debug for ApiCacheEntry
Source§impl From<&ApiCacheEntry> for ApiCacheView
impl From<&ApiCacheEntry> for ApiCacheView
Source§fn from(e: &ApiCacheEntry) -> Self
fn from(e: &ApiCacheEntry) -> Self
Converts to this type from the input type.
Source§impl From<ApiCacheView> for ApiCacheEntry
impl From<ApiCacheView> for ApiCacheEntry
Source§fn from(v: ApiCacheView) -> Self
fn from(v: ApiCacheView) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ApiCacheEntry
impl RefUnwindSafe for ApiCacheEntry
impl Send for ApiCacheEntry
impl Sync for ApiCacheEntry
impl Unpin for ApiCacheEntry
impl UnsafeUnpin for ApiCacheEntry
impl UnwindSafe for ApiCacheEntry
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.