pub struct ServerlessCache {Show 19 fields
pub serverless_cache_name: String,
pub description: String,
pub engine: String,
pub major_engine_version: String,
pub full_engine_version: String,
pub status: String,
pub endpoint: ServerlessCacheEndpoint,
pub reader_endpoint: ServerlessCacheEndpoint,
pub arn: String,
pub created_at: String,
pub cache_usage_limits: Option<ServerlessCacheUsageLimits>,
pub security_group_ids: Vec<String>,
pub subnet_ids: Vec<String>,
pub kms_key_id: Option<String>,
pub user_group_id: Option<String>,
pub snapshot_retention_limit: Option<i32>,
pub daily_snapshot_time: Option<String>,
pub container_id: String,
pub host_port: u16,
}Fields§
§serverless_cache_name: String§description: String§engine: String§major_engine_version: String§full_engine_version: String§status: String§endpoint: ServerlessCacheEndpoint§reader_endpoint: ServerlessCacheEndpoint§arn: String§created_at: String§cache_usage_limits: Option<ServerlessCacheUsageLimits>§security_group_ids: Vec<String>§subnet_ids: Vec<String>§kms_key_id: Option<String>§user_group_id: Option<String>§snapshot_retention_limit: Option<i32>§daily_snapshot_time: Option<String>§container_id: String§host_port: u16Trait Implementations§
Source§impl Clone for ServerlessCache
impl Clone for ServerlessCache
Source§fn clone(&self) -> ServerlessCache
fn clone(&self) -> ServerlessCache
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 moreAuto Trait Implementations§
impl Freeze for ServerlessCache
impl RefUnwindSafe for ServerlessCache
impl Send for ServerlessCache
impl Sync for ServerlessCache
impl Unpin for ServerlessCache
impl UnsafeUnpin for ServerlessCache
impl UnwindSafe for ServerlessCache
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