[][src]Struct rusoto_alexaforbusiness::NetworkProfileData

pub struct NetworkProfileData {
    pub certificate_authority_arn: Option<String>,
    pub description: Option<String>,
    pub eap_method: Option<String>,
    pub network_profile_arn: Option<String>,
    pub network_profile_name: Option<String>,
    pub security_type: Option<String>,
    pub ssid: Option<String>,
}

The data associated with a network profile.

Fields

certificate_authority_arn: Option<String>

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

description: Option<String>

Detailed information about a device's network profile.

eap_method: Option<String>

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

network_profile_arn: Option<String>

The ARN of the network profile associated with a device.

network_profile_name: Option<String>

The name of the network profile associated with a device.

security_type: Option<String>

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

ssid: Option<String>

The SSID of the Wi-Fi network.

Trait Implementations

impl Clone for NetworkProfileData[src]

impl Debug for NetworkProfileData[src]

impl Default for NetworkProfileData[src]

impl<'de> Deserialize<'de> for NetworkProfileData[src]

impl PartialEq<NetworkProfileData> for NetworkProfileData[src]

impl StructuralPartialEq for NetworkProfileData[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.