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

RadiusSettings

import type { RadiusSettings } from "https://aws-api.deno.dev/v0.3/services/directoryservice.ts?docs=full";

Contains information about a Remote Authentication Dial In User Service (RADIUS) server.

interface RadiusSettings {
AuthenticationProtocol?: RadiusAuthenticationProtocol | null;
DisplayLabel?: string | null;
RadiusPort?: number | null;
RadiusRetries?: number | null;
RadiusServers?: string[] | null;
RadiusTimeout?: number | null;
SharedSecret?: string | null;
UseSameUsername?: boolean | null;
}

§Properties

§
AuthenticationProtocol?: RadiusAuthenticationProtocol | null
[src]

The protocol specified for your RADIUS endpoints.

§
DisplayLabel?: string | null
[src]

Not currently used.

§
RadiusPort?: number | null
[src]

The port that your RADIUS server is using for communications. Your self-managed network must allow inbound traffic over this port from the Directory Service servers.

§
RadiusRetries?: number | null
[src]

The maximum number of times that communication with the RADIUS server is attempted.

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

An array of strings that contains the fully qualified domain name (FQDN) or IP addresses of the RADIUS server endpoints, or the FQDN or IP addresses of your RADIUS server load balancer.

§
RadiusTimeout?: number | null
[src]

The amount of time, in seconds, to wait for the RADIUS server to respond.

§
SharedSecret?: string | null
[src]

Required for enabling RADIUS on the directory.

§
UseSameUsername?: boolean | null
[src]

Not currently used.