[][src]Struct rusoto_alexaforbusiness::UpdateNetworkProfileRequest

pub struct UpdateNetworkProfileRequest {
    pub certificate_authority_arn: Option<String>,
    pub current_password: Option<String>,
    pub description: Option<String>,
    pub network_profile_arn: String,
    pub network_profile_name: Option<String>,
    pub next_password: Option<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.

current_password: Option<String>

The current password of the Wi-Fi network.

description: Option<String>

Detailed information about a device's network profile.

network_profile_arn: 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.

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.

trust_anchors: Option<Vec<String>>

The root certificate(s) of your authentication server that will be installed on your devices and used to trust your authentication server during EAP negotiation.

Trait Implementations

impl PartialEq<UpdateNetworkProfileRequest> for UpdateNetworkProfileRequest[src]

impl Default for UpdateNetworkProfileRequest[src]

impl Clone for UpdateNetworkProfileRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for UpdateNetworkProfileRequest[src]

impl Serialize for UpdateNetworkProfileRequest[src]

Auto Trait Implementations

impl Send for UpdateNetworkProfileRequest

impl Sync for UpdateNetworkProfileRequest

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self