We recommend new projects start with resources from the AWS provider.
aws-native.efs.MountTarget
Explore with Pulumi AI
We recommend new projects start with resources from the AWS provider.
The AWS::EFS::MountTarget
resource is an Amazon EFS resource that creates a mount target for an EFS file system. You can then mount the file system on Amazon EC2 instances or other resources by using the mount target.
Create MountTarget Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MountTarget(name: string, args: MountTargetArgs, opts?: CustomResourceOptions);
@overload
def MountTarget(resource_name: str,
args: MountTargetArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MountTarget(resource_name: str,
opts: Optional[ResourceOptions] = None,
file_system_id: Optional[str] = None,
security_groups: Optional[Sequence[str]] = None,
subnet_id: Optional[str] = None,
ip_address: Optional[str] = None,
ip_address_type: Optional[MountTargetIpAddressType] = None,
ipv6_address: Optional[str] = None)
func NewMountTarget(ctx *Context, name string, args MountTargetArgs, opts ...ResourceOption) (*MountTarget, error)
public MountTarget(string name, MountTargetArgs args, CustomResourceOptions? opts = null)
public MountTarget(String name, MountTargetArgs args)
public MountTarget(String name, MountTargetArgs args, CustomResourceOptions options)
type: aws-native:efs:MountTarget
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args MountTargetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args MountTargetArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args MountTargetArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MountTargetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MountTargetArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
MountTarget Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The MountTarget resource accepts the following input properties:
- File
System stringId - The ID of the file system for which to create the mount target.
- Security
Groups List<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). - Subnet
Id 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.
- Ip
Address string - Valid IPv4 address within the address range of the specified subnet.
- Ip
Address Pulumi.Type Aws Native. Efs. Mount Target Ip Address Type The IP address type for the mount target. The possible values are
IPV4_ONLY
(only IPv4 addresses),IPV6_ONLY
(only IPv6 addresses), andDUAL_STACK
(dual-stack, both IPv4 and IPv6 addresses). If you don’t specify anIpAddressType
, thenIPV4_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 string
- If the
IPAddressType
for the mount target is IPv6 (IPV6_ONLY
orDUAL_STACK
), then specify the IPv6 address to use. If you do not specify anIpv6Address
, then Amazon EFS selects an unused IP address from the subnet specified forSubnetId
.
- File
System stringId - The ID of the file system for which to create the mount target.
- Security
Groups []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). - Subnet
Id 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.
- Ip
Address string - Valid IPv4 address within the address range of the specified subnet.
- Ip
Address MountType Target Ip Address Type The IP address type for the mount target. The possible values are
IPV4_ONLY
(only IPv4 addresses),IPV6_ONLY
(only IPv6 addresses), andDUAL_STACK
(dual-stack, both IPv4 and IPv6 addresses). If you don’t specify anIpAddressType
, thenIPV4_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 string
- If the
IPAddressType
for the mount target is IPv6 (IPV6_ONLY
orDUAL_STACK
), then specify the IPv6 address to use. If you do not specify anIpv6Address
, then Amazon EFS selects an unused IP address from the subnet specified forSubnetId
.
- file
System StringId - The ID of the file system for which to create the mount target.
- security
Groups List<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). - subnet
Id 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.
- ip
Address String - Valid IPv4 address within the address range of the specified subnet.
- ip
Address MountType Target Ip Address Type The IP address type for the mount target. The possible values are
IPV4_ONLY
(only IPv4 addresses),IPV6_ONLY
(only IPv6 addresses), andDUAL_STACK
(dual-stack, both IPv4 and IPv6 addresses). If you don’t specify anIpAddressType
, thenIPV4_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 String
- If the
IPAddressType
for the mount target is IPv6 (IPV6_ONLY
orDUAL_STACK
), then specify the IPv6 address to use. If you do not specify anIpv6Address
, then Amazon EFS selects an unused IP address from the subnet specified forSubnetId
.
- file
System stringId - The ID of the file system for which to create the mount target.
- security
Groups 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). - subnet
Id 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.
- ip
Address string - Valid IPv4 address within the address range of the specified subnet.
- ip
Address MountType Target Ip Address Type The IP address type for the mount target. The possible values are
IPV4_ONLY
(only IPv4 addresses),IPV6_ONLY
(only IPv6 addresses), andDUAL_STACK
(dual-stack, both IPv4 and IPv6 addresses). If you don’t specify anIpAddressType
, thenIPV4_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 string
- If the
IPAddressType
for the mount target is IPv6 (IPV6_ONLY
orDUAL_STACK
), then specify the IPv6 address to use. If you do not specify anIpv6Address
, then Amazon EFS selects an unused IP address from the subnet specified forSubnetId
.
- file_
system_ strid - The ID of the file system for which to create the mount target.
- security_
groups Sequence[str] - 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). - subnet_
id str - 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.
- ip_
address str - Valid IPv4 address within the address range of the specified subnet.
- ip_
address_ Mounttype Target Ip Address Type The IP address type for the mount target. The possible values are
IPV4_ONLY
(only IPv4 addresses),IPV6_ONLY
(only IPv6 addresses), andDUAL_STACK
(dual-stack, both IPv4 and IPv6 addresses). If you don’t specify anIpAddressType
, thenIPV4_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 .- ipv6_
address str - If the
IPAddressType
for the mount target is IPv6 (IPV6_ONLY
orDUAL_STACK
), then specify the IPv6 address to use. If you do not specify anIpv6Address
, then Amazon EFS selects an unused IP address from the subnet specified forSubnetId
.
- file
System StringId - The ID of the file system for which to create the mount target.
- security
Groups List<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). - subnet
Id 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.
- ip
Address String - Valid IPv4 address within the address range of the specified subnet.
- ip
Address "IPV4_ONLY" | "IPV6_ONLY" | "DUAL_STACK"Type The IP address type for the mount target. The possible values are
IPV4_ONLY
(only IPv4 addresses),IPV6_ONLY
(only IPv6 addresses), andDUAL_STACK
(dual-stack, both IPv4 and IPv6 addresses). If you don’t specify anIpAddressType
, thenIPV4_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 String
- If the
IPAddressType
for the mount target is IPv6 (IPV6_ONLY
orDUAL_STACK
), then specify the IPv6 address to use. If you do not specify anIpv6Address
, then Amazon EFS selects an unused IP address from the subnet specified forSubnetId
.
Outputs
All input properties are implicitly available as output properties. Additionally, the MountTarget resource produces the following output properties:
Supporting Types
MountTargetIpAddressType, MountTargetIpAddressTypeArgs
- Ipv4Only
- IPV4_ONLY
- Ipv6Only
- IPV6_ONLY
- Dual
Stack - DUAL_STACK
- Mount
Target Ip Address Type Ipv4Only - IPV4_ONLY
- Mount
Target Ip Address Type Ipv6Only - IPV6_ONLY
- Mount
Target Ip Address Type Dual Stack - DUAL_STACK
- Ipv4Only
- IPV4_ONLY
- Ipv6Only
- IPV6_ONLY
- Dual
Stack - DUAL_STACK
- Ipv4Only
- IPV4_ONLY
- Ipv6Only
- IPV6_ONLY
- Dual
Stack - DUAL_STACK
- IPV4_ONLY
- IPV4_ONLY
- IPV6_ONLY
- IPV6_ONLY
- DUAL_STACK
- DUAL_STACK
- "IPV4_ONLY"
- IPV4_ONLY
- "IPV6_ONLY"
- IPV6_ONLY
- "DUAL_STACK"
- DUAL_STACK
Package Details
- Repository
- AWS Native pulumi/pulumi-aws-native
- License
- Apache-2.0
We recommend new projects start with resources from the AWS provider.