/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes the options when creating an Amazon Web Services Verified Access
* trust provider using the device
type.See Also:
AWS
* API Reference
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