Class: Aws::S3Files::Types::CreateMountTargetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Files::Types::CreateMountTargetRequest
- Defined in:
- gems/aws-sdk-s3files/lib/aws-sdk-s3files/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file_system_id ⇒ String
The ID or Amazon Resource Name (ARN) of the S3 File System to create the mount target for.
-
#ip_address_type ⇒ String
The IP address type for the mount target.
-
#ipv4_address ⇒ String
A specific IPv4 address to assign to the mount target.
-
#ipv6_address ⇒ String
A specific IPv6 address to assign to the mount target.
-
#security_groups ⇒ Array<String>
An array of VPC security group IDs to associate with the mount target's network interface.
-
#subnet_id ⇒ String
The ID of the subnet where the mount target will be created.
Instance Attribute Details
#file_system_id ⇒ String
The ID or Amazon Resource Name (ARN) of the S3 File System to create the mount target for.
335 336 337 338 339 340 341 342 343 344 |
# File 'gems/aws-sdk-s3files/lib/aws-sdk-s3files/types.rb', line 335 class CreateMountTargetRequest < Struct.new( :file_system_id, :subnet_id, :ipv4_address, :ipv6_address, :ip_address_type, :security_groups) SENSITIVE = [] include Aws::Structure end |
#ip_address_type ⇒ String
The IP address type for the mount target. If not specified,
IPV4_ONLY is used. The IP address type must match the IP
configuration of the specified subnet.
335 336 337 338 339 340 341 342 343 344 |
# File 'gems/aws-sdk-s3files/lib/aws-sdk-s3files/types.rb', line 335 class CreateMountTargetRequest < Struct.new( :file_system_id, :subnet_id, :ipv4_address, :ipv6_address, :ip_address_type, :security_groups) SENSITIVE = [] include Aws::Structure end |
#ipv4_address ⇒ String
A specific IPv4 address to assign to the mount target. If not specified and the IP address type supports IPv4, an address is automatically assigned from the subnet's available IPv4 address range. The address must be within the subnet's CIDR block and not already in use.
335 336 337 338 339 340 341 342 343 344 |
# File 'gems/aws-sdk-s3files/lib/aws-sdk-s3files/types.rb', line 335 class CreateMountTargetRequest < Struct.new( :file_system_id, :subnet_id, :ipv4_address, :ipv6_address, :ip_address_type, :security_groups) SENSITIVE = [] include Aws::Structure end |
#ipv6_address ⇒ String
A specific IPv6 address to assign to the mount target. If not specified and the IP address type supports IPv6, an address is automatically assigned from the subnet's available IPv6 address range. The address must be within the subnet's IPv6 CIDR block and not already in use.
335 336 337 338 339 340 341 342 343 344 |
# File 'gems/aws-sdk-s3files/lib/aws-sdk-s3files/types.rb', line 335 class CreateMountTargetRequest < Struct.new( :file_system_id, :subnet_id, :ipv4_address, :ipv6_address, :ip_address_type, :security_groups) SENSITIVE = [] include Aws::Structure end |
#security_groups ⇒ Array<String>
An array of VPC security group IDs to associate with the mount target's network interface. These security groups control network access to the mount target. If not specified, the default security group for the subnet's VPC is used. All security groups must belong to the same VPC as the subnet.
335 336 337 338 339 340 341 342 343 344 |
# File 'gems/aws-sdk-s3files/lib/aws-sdk-s3files/types.rb', line 335 class CreateMountTargetRequest < Struct.new( :file_system_id, :subnet_id, :ipv4_address, :ipv6_address, :ip_address_type, :security_groups) SENSITIVE = [] include Aws::Structure end |
#subnet_id ⇒ String
The ID of the subnet where the mount target will be created. The subnet must be in the same Amazon Web Services Region as the file system. For file systems with regional availability, you can create mount targets in any subnet within the Region. The subnet determines the Availability Zone where the mount target will be located.
335 336 337 338 339 340 341 342 343 344 |
# File 'gems/aws-sdk-s3files/lib/aws-sdk-s3files/types.rb', line 335 class CreateMountTargetRequest < Struct.new( :file_system_id, :subnet_id, :ipv4_address, :ipv6_address, :ip_address_type, :security_groups) SENSITIVE = [] include Aws::Structure end |