/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace AlexaForBusiness { namespace Model { /** *

Detailed information about a device's network profile.

See * Also:

AWS * API Reference

*/ class DeviceNetworkProfileInfo { public: AWS_ALEXAFORBUSINESS_API DeviceNetworkProfileInfo(); AWS_ALEXAFORBUSINESS_API DeviceNetworkProfileInfo(Aws::Utils::Json::JsonView jsonValue); AWS_ALEXAFORBUSINESS_API DeviceNetworkProfileInfo& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_ALEXAFORBUSINESS_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The ARN of the network profile associated with a device.

*/ inline const Aws::String& GetNetworkProfileArn() const{ return m_networkProfileArn; } /** *

The ARN of the network profile associated with a device.

*/ inline bool NetworkProfileArnHasBeenSet() const { return m_networkProfileArnHasBeenSet; } /** *

The ARN of the network profile associated with a device.

*/ inline void SetNetworkProfileArn(const Aws::String& value) { m_networkProfileArnHasBeenSet = true; m_networkProfileArn = value; } /** *

The ARN of the network profile associated with a device.

*/ inline void SetNetworkProfileArn(Aws::String&& value) { m_networkProfileArnHasBeenSet = true; m_networkProfileArn = std::move(value); } /** *

The ARN of the network profile associated with a device.

*/ inline void SetNetworkProfileArn(const char* value) { m_networkProfileArnHasBeenSet = true; m_networkProfileArn.assign(value); } /** *

The ARN of the network profile associated with a device.

*/ inline DeviceNetworkProfileInfo& WithNetworkProfileArn(const Aws::String& value) { SetNetworkProfileArn(value); return *this;} /** *

The ARN of the network profile associated with a device.

*/ inline DeviceNetworkProfileInfo& WithNetworkProfileArn(Aws::String&& value) { SetNetworkProfileArn(std::move(value)); return *this;} /** *

The ARN of the network profile associated with a device.

*/ inline DeviceNetworkProfileInfo& WithNetworkProfileArn(const char* value) { SetNetworkProfileArn(value); return *this;} /** *

The ARN of the certificate associated with a device.

*/ inline const Aws::String& GetCertificateArn() const{ return m_certificateArn; } /** *

The ARN of the certificate associated with a device.

*/ inline bool CertificateArnHasBeenSet() const { return m_certificateArnHasBeenSet; } /** *

The ARN of the certificate associated with a device.

*/ inline void SetCertificateArn(const Aws::String& value) { m_certificateArnHasBeenSet = true; m_certificateArn = value; } /** *

The ARN of the certificate associated with a device.

*/ inline void SetCertificateArn(Aws::String&& value) { m_certificateArnHasBeenSet = true; m_certificateArn = std::move(value); } /** *

The ARN of the certificate associated with a device.

*/ inline void SetCertificateArn(const char* value) { m_certificateArnHasBeenSet = true; m_certificateArn.assign(value); } /** *

The ARN of the certificate associated with a device.

*/ inline DeviceNetworkProfileInfo& WithCertificateArn(const Aws::String& value) { SetCertificateArn(value); return *this;} /** *

The ARN of the certificate associated with a device.

*/ inline DeviceNetworkProfileInfo& WithCertificateArn(Aws::String&& value) { SetCertificateArn(std::move(value)); return *this;} /** *

The ARN of the certificate associated with a device.

*/ inline DeviceNetworkProfileInfo& WithCertificateArn(const char* value) { SetCertificateArn(value); return *this;} /** *

The time (in epoch) when the certificate expires.

*/ inline const Aws::Utils::DateTime& GetCertificateExpirationTime() const{ return m_certificateExpirationTime; } /** *

The time (in epoch) when the certificate expires.

*/ inline bool CertificateExpirationTimeHasBeenSet() const { return m_certificateExpirationTimeHasBeenSet; } /** *

The time (in epoch) when the certificate expires.

*/ inline void SetCertificateExpirationTime(const Aws::Utils::DateTime& value) { m_certificateExpirationTimeHasBeenSet = true; m_certificateExpirationTime = value; } /** *

The time (in epoch) when the certificate expires.

*/ inline void SetCertificateExpirationTime(Aws::Utils::DateTime&& value) { m_certificateExpirationTimeHasBeenSet = true; m_certificateExpirationTime = std::move(value); } /** *

The time (in epoch) when the certificate expires.

*/ inline DeviceNetworkProfileInfo& WithCertificateExpirationTime(const Aws::Utils::DateTime& value) { SetCertificateExpirationTime(value); return *this;} /** *

The time (in epoch) when the certificate expires.

*/ inline DeviceNetworkProfileInfo& WithCertificateExpirationTime(Aws::Utils::DateTime&& value) { SetCertificateExpirationTime(std::move(value)); return *this;} private: Aws::String m_networkProfileArn; bool m_networkProfileArnHasBeenSet = false; Aws::String m_certificateArn; bool m_certificateArnHasBeenSet = false; Aws::Utils::DateTime m_certificateExpirationTime; bool m_certificateExpirationTimeHasBeenSet = false; }; } // namespace Model } // namespace AlexaForBusiness } // namespace Aws