#[non_exhaustive]pub struct UpdateFileCacheInput {
pub file_cache_id: Option<String>,
pub client_request_token: Option<String>,
pub lustre_configuration: Option<UpdateFileCacheLustreConfiguration>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.file_cache_id: Option<String>The ID of the cache that you are updating.
client_request_token: Option<String>(Optional) An idempotency token for resource creation, in a string of up to 63 ASCII characters. This token is automatically filled on your behalf when you use the Command Line Interface (CLI) or an Amazon Web Services SDK.
lustre_configuration: Option<UpdateFileCacheLustreConfiguration>The configuration updates for an Amazon File Cache resource.
Implementations§
source§impl UpdateFileCacheInput
impl UpdateFileCacheInput
sourcepub fn file_cache_id(&self) -> Option<&str>
pub fn file_cache_id(&self) -> Option<&str>
The ID of the cache that you are updating.
sourcepub fn client_request_token(&self) -> Option<&str>
pub fn client_request_token(&self) -> Option<&str>
(Optional) An idempotency token for resource creation, in a string of up to 63 ASCII characters. This token is automatically filled on your behalf when you use the Command Line Interface (CLI) or an Amazon Web Services SDK.
sourcepub fn lustre_configuration(
&self
) -> Option<&UpdateFileCacheLustreConfiguration>
pub fn lustre_configuration( &self ) -> Option<&UpdateFileCacheLustreConfiguration>
The configuration updates for an Amazon File Cache resource.
source§impl UpdateFileCacheInput
impl UpdateFileCacheInput
sourcepub fn builder() -> UpdateFileCacheInputBuilder
pub fn builder() -> UpdateFileCacheInputBuilder
Creates a new builder-style object to manufacture UpdateFileCacheInput.
Trait Implementations§
source§impl Clone for UpdateFileCacheInput
impl Clone for UpdateFileCacheInput
source§fn clone(&self) -> UpdateFileCacheInput
fn clone(&self) -> UpdateFileCacheInput
Returns a copy 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 UpdateFileCacheInput
impl Debug for UpdateFileCacheInput
source§impl PartialEq<UpdateFileCacheInput> for UpdateFileCacheInput
impl PartialEq<UpdateFileCacheInput> for UpdateFileCacheInput
source§fn eq(&self, other: &UpdateFileCacheInput) -> bool
fn eq(&self, other: &UpdateFileCacheInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateFileCacheInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateFileCacheInput
impl Send for UpdateFileCacheInput
impl Sync for UpdateFileCacheInput
impl Unpin for UpdateFileCacheInput
impl UnwindSafe for UpdateFileCacheInput
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