Class: Aws::AlexaForBusiness::Types::UpdateNetworkProfileRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AlexaForBusiness::Types::UpdateNetworkProfileRequest
- Defined in:
- gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb
Overview
When making an API call, you may pass UpdateNetworkProfileRequest data as a hash:
{
network_profile_arn: "Arn", # required
network_profile_name: "NetworkProfileName",
description: "NetworkProfileDescription",
current_password: "CurrentWiFiPassword",
next_password: "NextWiFiPassword",
certificate_authority_arn: "Arn",
trust_anchors: ["TrustAnchor"],
}
Constant Summary collapse
- SENSITIVE =
[:current_password, :next_password]
Instance Attribute Summary collapse
-
#certificate_authority_arn ⇒ String
The ARN of the Private Certificate Authority (PCA) created in AWS Certificate Manager (ACM).
-
#current_password ⇒ String
The current password of the Wi-Fi network.
-
#description ⇒ 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 ⇒ String
The name of the network profile associated with a device.
-
#next_password ⇒ String
The next, or subsequent, password of the Wi-Fi network.
-
#trust_anchors ⇒ Array<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.
Instance Attribute Details
#certificate_authority_arn ⇒ String
The ARN of the Private Certificate Authority (PCA) created in AWS Certificate Manager (ACM). This is used to issue certificates to the devices.
6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 6333 class UpdateNetworkProfileRequest < Struct.new( :network_profile_arn, :network_profile_name, :description, :current_password, :next_password, :certificate_authority_arn, :trust_anchors) SENSITIVE = [:current_password, :next_password] include Aws::Structure end |
#current_password ⇒ String
The current password of the Wi-Fi network.
6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 6333 class UpdateNetworkProfileRequest < Struct.new( :network_profile_arn, :network_profile_name, :description, :current_password, :next_password, :certificate_authority_arn, :trust_anchors) SENSITIVE = [:current_password, :next_password] include Aws::Structure end |
#description ⇒ String
Detailed information about a device's network profile.
6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 6333 class UpdateNetworkProfileRequest < Struct.new( :network_profile_arn, :network_profile_name, :description, :current_password, :next_password, :certificate_authority_arn, :trust_anchors) SENSITIVE = [:current_password, :next_password] include Aws::Structure end |
#network_profile_arn ⇒ String
The ARN of the network profile associated with a device.
6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 6333 class UpdateNetworkProfileRequest < Struct.new( :network_profile_arn, :network_profile_name, :description, :current_password, :next_password, :certificate_authority_arn, :trust_anchors) SENSITIVE = [:current_password, :next_password] include Aws::Structure end |
#network_profile_name ⇒ String
The name of the network profile associated with a device.
6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 6333 class UpdateNetworkProfileRequest < Struct.new( :network_profile_arn, :network_profile_name, :description, :current_password, :next_password, :certificate_authority_arn, :trust_anchors) SENSITIVE = [:current_password, :next_password] include Aws::Structure end |
#next_password ⇒ 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.
6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 6333 class UpdateNetworkProfileRequest < Struct.new( :network_profile_arn, :network_profile_name, :description, :current_password, :next_password, :certificate_authority_arn, :trust_anchors) SENSITIVE = [:current_password, :next_password] include Aws::Structure end |
#trust_anchors ⇒ Array<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.
6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 |
# File 'gems/aws-sdk-alexaforbusiness/lib/aws-sdk-alexaforbusiness/types.rb', line 6333 class UpdateNetworkProfileRequest < Struct.new( :network_profile_arn, :network_profile_name, :description, :current_password, :next_password, :certificate_authority_arn, :trust_anchors) SENSITIVE = [:current_password, :next_password] include Aws::Structure end |