/** * 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 Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace EC2 { namespace Model { /** *

Describes the options when creating an Amazon Web Services Verified Access * trust provider using the device type.

See Also:

AWS * API Reference

*/ class CreateVerifiedAccessTrustProviderDeviceOptions { public: AWS_EC2_API CreateVerifiedAccessTrustProviderDeviceOptions(); AWS_EC2_API CreateVerifiedAccessTrustProviderDeviceOptions(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API CreateVerifiedAccessTrustProviderDeviceOptions& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const; AWS_EC2_API void OutputToStream(Aws::OStream& oStream, const char* location) const; /** *

The ID of the tenant application with the device-identity provider.

*/ inline const Aws::String& GetTenantId() const{ return m_tenantId; } /** *

The ID of the tenant application with the device-identity provider.

*/ inline bool TenantIdHasBeenSet() const { return m_tenantIdHasBeenSet; } /** *

The ID of the tenant application with the device-identity provider.

*/ inline void SetTenantId(const Aws::String& value) { m_tenantIdHasBeenSet = true; m_tenantId = value; } /** *

The ID of the tenant application with the device-identity provider.

*/ inline void SetTenantId(Aws::String&& value) { m_tenantIdHasBeenSet = true; m_tenantId = std::move(value); } /** *

The ID of the tenant application with the device-identity provider.

*/ inline void SetTenantId(const char* value) { m_tenantIdHasBeenSet = true; m_tenantId.assign(value); } /** *

The ID of the tenant application with the device-identity provider.

*/ inline CreateVerifiedAccessTrustProviderDeviceOptions& WithTenantId(const Aws::String& value) { SetTenantId(value); return *this;} /** *

The ID of the tenant application with the device-identity provider.

*/ inline CreateVerifiedAccessTrustProviderDeviceOptions& WithTenantId(Aws::String&& value) { SetTenantId(std::move(value)); return *this;} /** *

The ID of the tenant application with the device-identity provider.

*/ inline CreateVerifiedAccessTrustProviderDeviceOptions& WithTenantId(const char* value) { SetTenantId(value); return *this;} private: Aws::String m_tenantId; bool m_tenantIdHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws