#[non_exhaustive]pub struct AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails {
pub authorization_config: Option<AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationAuthorizationConfigDetails>,
pub filesystem_id: Option<String>,
pub root_directory: Option<String>,
pub transit_encryption: Option<String>,
pub transit_encryption_port: Option<i32>,
}Expand description
Information about the Amazon Elastic File System file system that is used for task storage.
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.The authorization configuration details for the Amazon EFS file system.
filesystem_id: Option<String>The Amazon EFS file system identifier to use.
root_directory: Option<String>The directory within the Amazon EFS file system to mount as the root directory inside the host.
transit_encryption: Option<String>Whether to enable encryption for Amazon EFS data in transit between the Amazon ECS host and the Amazon EFS server.
transit_encryption_port: Option<i32>The port to use when sending encrypted data between the Amazon ECS host and the Amazon EFS server.
Implementations§
source§impl AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails
impl AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails
The authorization configuration details for the Amazon EFS file system.
sourcepub fn filesystem_id(&self) -> Option<&str>
pub fn filesystem_id(&self) -> Option<&str>
The Amazon EFS file system identifier to use.
sourcepub fn root_directory(&self) -> Option<&str>
pub fn root_directory(&self) -> Option<&str>
The directory within the Amazon EFS file system to mount as the root directory inside the host.
sourcepub fn transit_encryption(&self) -> Option<&str>
pub fn transit_encryption(&self) -> Option<&str>
Whether to enable encryption for Amazon EFS data in transit between the Amazon ECS host and the Amazon EFS server.
sourcepub fn transit_encryption_port(&self) -> Option<i32>
pub fn transit_encryption_port(&self) -> Option<i32>
The port to use when sending encrypted data between the Amazon ECS host and the Amazon EFS server.
source§impl AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails
impl AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails
sourcepub fn builder() -> AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetailsBuilder
pub fn builder() -> AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetailsBuilder
Creates a new builder-style object to manufacture AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails.
Trait Implementations§
source§impl Clone for AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails
impl Clone for AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails
source§fn clone(&self) -> AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails
fn clone(&self) -> AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails
impl PartialEq for AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails
source§fn eq(
&self,
other: &AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails,
) -> bool
fn eq( &self, other: &AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails, ) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails
Auto Trait Implementations§
impl Freeze for AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails
impl RefUnwindSafe for AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails
impl Send for AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails
impl Sync for AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails
impl Unpin for AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails
impl UnwindSafe for AwsEcsTaskDefinitionVolumesEfsVolumeConfigurationDetails
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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