[][src]Struct rusoto_alexaforbusiness::CreateNetworkProfileRequest

pub struct CreateNetworkProfileRequest {
    pub certificate_authority_arn: Option<String>,
    pub client_request_token: String,
    pub current_password: Option<String>,
    pub description: Option<String>,
    pub eap_method: Option<String>,
    pub network_profile_name: String,
    pub next_password: Option<String>,
    pub security_type: String,
    pub ssid: String,
    pub trust_anchors: Option<Vec<String>>,
}

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.

client_request_token: Stringcurrent_password: Option<String>

The current password of the Wi-Fi network.

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_name: String

The name of the network profile associated with a device.

next_password: Option<String>

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.

security_type: String

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

ssid: String

The SSID of the Wi-Fi network.

trust_anchors: Option<Vec<String>>

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

Trait Implementations

impl Clone for CreateNetworkProfileRequest[src]

impl Debug for CreateNetworkProfileRequest[src]

impl Default for CreateNetworkProfileRequest[src]

impl PartialEq<CreateNetworkProfileRequest> for CreateNetworkProfileRequest[src]

impl Serialize for CreateNetworkProfileRequest[src]

impl StructuralPartialEq for CreateNetworkProfileRequest[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> From<T> for T[src]

impl<T> Instrument 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.