CreateNetworkProfileRequest
public struct CreateNetworkProfileRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The ARN of the Private Certificate Authority (PCA) created in AWS Certificate Manager (ACM). This is used to issue certificates to the devices.
Declaration
Swift
public let certificateAuthorityArn: String?
-
Undocumented
Declaration
Swift
public let clientRequestToken: String
-
The current password of the Wi-Fi network.
Declaration
Swift
public let currentPassword: String?
-
Detailed information about a device’s network profile.
Declaration
Swift
public let description: String?
-
The authentication standard that is used in the EAP framework. Currently, EAP_TLS is supported.
Declaration
Swift
public let eapMethod: NetworkEapMethod?
-
The name of the network profile associated with a device.
Declaration
Swift
public let networkProfileName: 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.
Declaration
Swift
public let nextPassword: String?
-
The security type of the Wi-Fi network. This can be WPA2_ENTERPRISE, WPA2_PSK, WPA_PSK, WEP, or OPEN.
Declaration
Swift
public let securityType: NetworkSecurityType
-
The SSID of the Wi-Fi network.
Declaration
Swift
public let ssid: String
-
The root certificates of your authentication server that is installed on your devices and used to trust your authentication server during EAP negotiation.
Declaration
Swift
public let trustAnchors: [String]?
-
init(certificateAuthorityArn:clientRequestToken:currentPassword:description:eapMethod:networkProfileName:nextPassword:securityType:ssid:trustAnchors:)
Undocumented
Declaration
Swift
public init(certificateAuthorityArn: String? = nil, clientRequestToken: String = CreateNetworkProfileRequest.idempotencyToken(), currentPassword: String? = nil, description: String? = nil, eapMethod: NetworkEapMethod? = nil, networkProfileName: String, nextPassword: String? = nil, securityType: NetworkSecurityType, ssid: String, trustAnchors: [String]? = nil)
-
Declaration
Swift
public func validate(name: String) throws