AwsEfsMountTargetArgs

interface AwsEfsMountTargetArgs { ipAddress?: Input<string>; ipAddressType?: 'DUAL_STACK' | 'IPV4_ONLY' | 'IPV6_ONLY'; ipv6Address?: Input<string>; securityGroups: AwsEfsSecurityGroupReference[]; subnet: AwsEfsSubnetReference; }

Settings for one EFS mount target.

Example

CODE
const mountTarget: AwsEfsMountTargetArgs = { subnet: 'subnet-123', securityGroups: ['sg-123'] };

Properties

ipAddress: Input<string>

Optional IPv4 address within the selected subnet.

ipAddressType: 'DUAL_STACK' | 'IPV4_ONLY' | 'IPV6_ONLY'

IP address family.

Default: `IPV4_ONLY`

ipv6Address: Input<string>

Optional IPv6 address within the selected subnet.

securityGroups: AwsEfsSecurityGroupReference[]

Explicit security groups for the mount target. The default VPC security group is never used.

subnet: AwsEfsSubnetReference

Existing subnet resource, ID, or VPC-scoped Name-tag lookup.