Struct aws_sdk_fsx::operation::update_data_repository_association::UpdateDataRepositoryAssociationInput
source · #[non_exhaustive]pub struct UpdateDataRepositoryAssociationInput {
pub association_id: Option<String>,
pub client_request_token: Option<String>,
pub imported_file_chunk_size: Option<i32>,
pub s3: Option<S3DataRepositoryConfiguration>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.association_id: Option<String>The ID of the data repository association 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.
imported_file_chunk_size: Option<i32>For files imported from a data repository, this value determines the stripe count and maximum amount of data per file (in MiB) stored on a single physical disk. The maximum number of disks that a single file can be striped across is limited by the total number of disks that make up the file system.
The default chunk size is 1,024 MiB (1 GiB) and can go as high as 512,000 MiB (500 GiB). Amazon S3 objects have a maximum size of 5 TB.
s3: Option<S3DataRepositoryConfiguration>The configuration for an Amazon S3 data repository linked to an Amazon FSx Lustre file system with a data repository association. The configuration defines which file events (new, changed, or deleted files or directories) are automatically imported from the linked data repository to the file system or automatically exported from the file system to the data repository.
Implementations§
source§impl UpdateDataRepositoryAssociationInput
impl UpdateDataRepositoryAssociationInput
sourcepub fn association_id(&self) -> Option<&str>
pub fn association_id(&self) -> Option<&str>
The ID of the data repository association 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 imported_file_chunk_size(&self) -> Option<i32>
pub fn imported_file_chunk_size(&self) -> Option<i32>
For files imported from a data repository, this value determines the stripe count and maximum amount of data per file (in MiB) stored on a single physical disk. The maximum number of disks that a single file can be striped across is limited by the total number of disks that make up the file system.
The default chunk size is 1,024 MiB (1 GiB) and can go as high as 512,000 MiB (500 GiB). Amazon S3 objects have a maximum size of 5 TB.
sourcepub fn s3(&self) -> Option<&S3DataRepositoryConfiguration>
pub fn s3(&self) -> Option<&S3DataRepositoryConfiguration>
The configuration for an Amazon S3 data repository linked to an Amazon FSx Lustre file system with a data repository association. The configuration defines which file events (new, changed, or deleted files or directories) are automatically imported from the linked data repository to the file system or automatically exported from the file system to the data repository.
source§impl UpdateDataRepositoryAssociationInput
impl UpdateDataRepositoryAssociationInput
sourcepub fn builder() -> UpdateDataRepositoryAssociationInputBuilder
pub fn builder() -> UpdateDataRepositoryAssociationInputBuilder
Creates a new builder-style object to manufacture UpdateDataRepositoryAssociationInput.
Trait Implementations§
source§impl Clone for UpdateDataRepositoryAssociationInput
impl Clone for UpdateDataRepositoryAssociationInput
source§fn clone(&self) -> UpdateDataRepositoryAssociationInput
fn clone(&self) -> UpdateDataRepositoryAssociationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for UpdateDataRepositoryAssociationInput
impl PartialEq for UpdateDataRepositoryAssociationInput
source§fn eq(&self, other: &UpdateDataRepositoryAssociationInput) -> bool
fn eq(&self, other: &UpdateDataRepositoryAssociationInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateDataRepositoryAssociationInput
Auto Trait Implementations§
impl Freeze for UpdateDataRepositoryAssociationInput
impl RefUnwindSafe for UpdateDataRepositoryAssociationInput
impl Send for UpdateDataRepositoryAssociationInput
impl Sync for UpdateDataRepositoryAssociationInput
impl Unpin for UpdateDataRepositoryAssociationInput
impl UnwindSafe for UpdateDataRepositoryAssociationInput
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
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>
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>
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 more