interface CfnMountTargetProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.EFS.CfnMountTargetProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsefs#CfnMountTargetProps |
![]() | software.amazon.awscdk.services.efs.CfnMountTargetProps |
![]() | aws_cdk.aws_efs.CfnMountTargetProps |
![]() | aws-cdk-lib » aws_efs » CfnMountTargetProps |
Properties for defining a CfnMountTarget
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_efs as efs } from 'aws-cdk-lib';
const cfnMountTargetProps: efs.CfnMountTargetProps = {
fileSystemId: 'fileSystemId',
securityGroups: ['securityGroups'],
subnetId: 'subnetId',
// the properties below are optional
ipAddress: 'ipAddress',
ipAddressType: 'ipAddressType',
ipv6Address: 'ipv6Address',
};
Properties
Name | Type | Description |
---|---|---|
file | string | The ID of the file system for which to create the mount target. |
security | string[] | VPC security group IDs, of the form sg-xxxxxxxx . |
subnet | string | The ID of the subnet to add the mount target in. |
ip | string | If the IpAddressType for the mount target is IPv4 ( IPV4_ONLY or DUAL_STACK ), then specify the IPv4 address to use. |
ip | string | The IP address type for the mount target. |
ipv6 | string | If the IPAddressType for the mount target is IPv6 ( IPV6_ONLY or DUAL_STACK ), then specify the IPv6 address to use. |
fileSystemId
Type:
string
The ID of the file system for which to create the mount target.
securityGroups
Type:
string[]
VPC security group IDs, of the form sg-xxxxxxxx
.
These must be for the same VPC as the subnet specified. The maximum number of security groups depends on account quota. For more information, see Amazon VPC Quotas in the Amazon VPC User Guide (see the Security Groups table). If you don't specify a security group, then Amazon EFS uses the default security group for the subnet's VPC.
subnetId
Type:
string
The ID of the subnet to add the mount target in.
For One Zone file systems, use the subnet that is associated with the file system's Availability Zone. The subnet type must be the same type as the IpAddressType
.
ipAddress?
Type:
string
(optional)
If the IpAddressType
for the mount target is IPv4 ( IPV4_ONLY
or DUAL_STACK
), then specify the IPv4 address to use.
If you do not specify an IpAddress
, then Amazon EFS selects an unused IP address from the subnet specified for SubnetId
.
ipAddressType?
Type:
string
(optional)
The IP address type for the mount target.
The possible values are IPV4_ONLY
(only IPv4 addresses), IPV6_ONLY
(only IPv6 addresses), and DUAL_STACK
(dual-stack, both IPv4 and IPv6 addresses). If you don’t specify an IpAddressType
, then IPV4_ONLY
is used.
The
IPAddressType
must match the IP type of the subnet. Additionally, theIPAddressType
parameter overrides the value set as the default IP address for the subnet in the VPC. For example, if theIPAddressType
isIPV4_ONLY
andAssignIpv6AddressOnCreation
istrue
, then IPv4 is used for the mount target. For more information, see Modify the IP addressing attributes of your subnet .
ipv6Address?
Type:
string
(optional)
If the IPAddressType
for the mount target is IPv6 ( IPV6_ONLY
or DUAL_STACK
), then specify the IPv6 address to use.
If you do not specify an Ipv6Address
, then Amazon EFS selects an unused IP address from the subnet specified for SubnetId
.