Class: Aws::S3Files::Types::CreateMountTargetRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-s3files/lib/aws-sdk-s3files/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#file_system_idString

The ID or Amazon Resource Name (ARN) of the S3 File System to create the mount target for.

Returns:

  • (String)


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_typeString

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.

Returns:

  • (String)


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_addressString

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.

Returns:

  • (String)


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_addressString

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.

Returns:

  • (String)


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_groupsArray<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.

Returns:

  • (Array<String>)


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_idString

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.

Returns:

  • (String)


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