AwsEfsMountTargetArgs
interface AwsEfsMountTargetArgs {
ipAddress?: Input<string>;
ipAddressType?: 'IPV4_ONLY' | 'IPV6_ONLY' | 'DUAL_STACK';
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: 'IPV4_ONLY' | 'IPV6_ONLY' | 'DUAL_STACK'
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.