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

NetworkProfileData

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

The data associated with a network profile.

interface NetworkProfileData {
CertificateAuthorityArn?: string | null;
Description?: string | null;
EapMethod?: NetworkEapMethod | null;
NetworkProfileArn?: string | null;
NetworkProfileName?: string | null;
SecurityType?: NetworkSecurityType | null;
Ssid?: 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.

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

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