#[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 ==
.