Class: Aws::FSx::Types::FileSystemEndpoint

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-fsx/types.rb

Overview

An Amazon FSx for NetApp ONTAP file system has two endpoints that are used to access data or to manage the file system using the NetApp ONTAP CLI, REST API, or NetApp SnapMirror. They are the ‘Management` and `Intercluster` endpoints.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#dns_nameString

The file system’s DNS name. You can mount your file system using its DNS name.

Returns:

  • (String)


5969
5970
5971
5972
5973
5974
# File 'lib/aws-sdk-fsx/types.rb', line 5969

class FileSystemEndpoint < Struct.new(
  :dns_name,
  :ip_addresses)
  SENSITIVE = []
  include Aws::Structure
end

#ip_addressesArray<String>

IP addresses of the file system endpoint.

Returns:

  • (Array<String>)


5969
5970
5971
5972
5973
5974
# File 'lib/aws-sdk-fsx/types.rb', line 5969

class FileSystemEndpoint < Struct.new(
  :dns_name,
  :ip_addresses)
  SENSITIVE = []
  include Aws::Structure
end