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

NetworkProfile

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

The network profile associated with a device.

interface NetworkProfile {
CertificateAuthorityArn?: string | null;
CurrentPassword?: string | null;
Description?: string | null;
EapMethod?: NetworkEapMethod | null;
NetworkProfileArn?: string | null;
NetworkProfileName?: string | null;
NextPassword?: string | null;
SecurityType?: NetworkSecurityType | null;
Ssid?: string | null;
TrustAnchors?: string[] | null;
}

§Properties

§
CertificateAuthorityArn?: string | null
[src]

The ARN of the Private Certificate Authority (PCA) created in AWS Certificate Manager (ACM). This is used to issue certificates to the devices.

§
CurrentPassword?: string | null
[src]

The current password of the Wi-Fi network.

§
Description?: string | null
[src]

Detailed information about a device's network profile.

§
EapMethod?: NetworkEapMethod | null
[src]

The authentication standard that is used in the EAP framework. Currently, EAP_TLS is supported.

§
NetworkProfileArn?: string | null
[src]

The ARN of the network profile associated with a device.

§
NetworkProfileName?: string | null
[src]

The name of the network profile associated with a device.

§
NextPassword?: string | null
[src]

The next, or subsequent, password of the Wi-Fi network. This password is asynchronously transmitted to the device and is used when the password of the network changes to NextPassword.

§
SecurityType?: NetworkSecurityType | null
[src]

The security type of the Wi-Fi network. This can be WPA2_ENTERPRISE, WPA2_PSK, WPA_PSK, WEP, or OPEN.

§
Ssid?: string | null
[src]

The SSID of the Wi-Fi network.

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

The root certificates of your authentication server, which is installed on your devices and used to trust your authentication server during EAP negotiation.