Class: Aws::EFS::Types::CreateMountTargetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EFS::Types::CreateMountTargetRequest
- Defined in:
- gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file_system_id ⇒ String
The ID of the file system for which to create the mount target.
-
#ip_address ⇒ String
Valid IPv4 address within the address range of the specified subnet.
-
#security_groups ⇒ Array<String>
Up to five VPC security group IDs, of the form
sg-xxxxxxxx
. -
#subnet_id ⇒ String
The ID of the subnet to add the mount target in.
Instance Attribute Details
#file_system_id ⇒ String
The ID of the file system for which to create the mount target.
543 544 545 546 547 548 549 550 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 543 class CreateMountTargetRequest < Struct.new( :file_system_id, :subnet_id, :ip_address, :security_groups) SENSITIVE = [] include Aws::Structure end |
#ip_address ⇒ String
Valid IPv4 address within the address range of the specified subnet.
543 544 545 546 547 548 549 550 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 543 class CreateMountTargetRequest < Struct.new( :file_system_id, :subnet_id, :ip_address, :security_groups) SENSITIVE = [] include Aws::Structure end |
#security_groups ⇒ Array<String>
Up to five VPC security group IDs, of the form sg-xxxxxxxx
. These
must be for the same VPC as subnet specified.
543 544 545 546 547 548 549 550 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 543 class CreateMountTargetRequest < Struct.new( :file_system_id, :subnet_id, :ip_address, :security_groups) SENSITIVE = [] include Aws::Structure end |
#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.
543 544 545 546 547 548 549 550 |
# File 'gems/aws-sdk-efs/lib/aws-sdk-efs/types.rb', line 543 class CreateMountTargetRequest < Struct.new( :file_system_id, :subnet_id, :ip_address, :security_groups) SENSITIVE = [] include Aws::Structure end |