Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CreateFileSystemOntapConfiguration

import type { CreateFileSystemOntapConfiguration } from "https://aws-api.deno.dev/v0.4/services/fsx.ts?docs=full";

The ONTAP configuration properties of the FSx for ONTAP file system that you are creating.

interface CreateFileSystemOntapConfiguration {
AutomaticBackupRetentionDays?: number | null;
DailyAutomaticBackupStartTime?: string | null;
DeploymentType: OntapDeploymentType;
DiskIopsConfiguration?: DiskIopsConfiguration | null;
EndpointIpAddressRange?: string | null;
FsxAdminPassword?: string | null;
PreferredSubnetId?: string | null;
RouteTableIds?: string[] | null;
ThroughputCapacity: number;
WeeklyMaintenanceStartTime?: string | null;
}

§Properties

§
AutomaticBackupRetentionDays?: number | null
[src]
§
DailyAutomaticBackupStartTime?: string | null
[src]
§
DeploymentType: OntapDeploymentType
[src]

Specifies the FSx for ONTAP file system deployment type to use in creating the file system.

  • MULTI_AZ_1 - (Default) A high availability file system configured for Multi-AZ redundancy to tolerate temporary Availability Zone (AZ) unavailability.
  • SINGLE_AZ_1 - A file system configured for Single-AZ redundancy.

For information about the use cases for Multi-AZ and Single-AZ deployments, refer to Choosing a file system deployment type.

§
DiskIopsConfiguration?: DiskIopsConfiguration | null
[src]

The SSD IOPS configuration for the FSx for ONTAP file system.

§
EndpointIpAddressRange?: string | null
[src]

(Multi-AZ only) Specifies the IP address range in which the endpoints to access your file system will be created. By default in the Amazon FSx API, Amazon FSx selects an unused IP address range for you from the 198.19.* range. By default in the Amazon FSx console, Amazon FSx chooses the last 64 IP addresses from the VPC’s primary CIDR range to use as the endpoint IP address range for the file system. You can have overlapping endpoint IP addresses for file systems deployed in the same VPC/route tables.

§
FsxAdminPassword?: string | null
[src]

The ONTAP administrative password for the fsxadmin user with which you administer your file system using the NetApp ONTAP CLI and REST API.

§
PreferredSubnetId?: string | null
[src]

Required when DeploymentType is set to MULTI_AZ_1. This specifies the subnet in which you want the preferred file server to be located.

§
RouteTableIds?: string[] | null
[src]

(Multi-AZ only) Specifies the virtual private cloud (VPC) route tables in which your file system's endpoints will be created. You should specify all VPC route tables associated with the subnets in which your clients are located. By default, Amazon FSx selects your VPC's default route table.

§
ThroughputCapacity: number
[src]

Sets the throughput capacity for the file system that you're creating. Valid values are 128, 256, 512, 1024, 2048, and 4096 MBps.

§
WeeklyMaintenanceStartTime?: string | null
[src]