/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Summary information about a managed resource.See Also:
AWS
* API Reference
Type of resource associated with a license.
*/ inline const ResourceType& GetResourceType() const{ return m_resourceType; } /** *Type of resource associated with a license.
*/ inline bool ResourceTypeHasBeenSet() const { return m_resourceTypeHasBeenSet; } /** *Type of resource associated with a license.
*/ inline void SetResourceType(const ResourceType& value) { m_resourceTypeHasBeenSet = true; m_resourceType = value; } /** *Type of resource associated with a license.
*/ inline void SetResourceType(ResourceType&& value) { m_resourceTypeHasBeenSet = true; m_resourceType = std::move(value); } /** *Type of resource associated with a license.
*/ inline ManagedResourceSummary& WithResourceType(const ResourceType& value) { SetResourceType(value); return *this;} /** *Type of resource associated with a license.
*/ inline ManagedResourceSummary& WithResourceType(ResourceType&& value) { SetResourceType(std::move(value)); return *this;} /** *Number of resources associated with licenses.
*/ inline long long GetAssociationCount() const{ return m_associationCount; } /** *Number of resources associated with licenses.
*/ inline bool AssociationCountHasBeenSet() const { return m_associationCountHasBeenSet; } /** *Number of resources associated with licenses.
*/ inline void SetAssociationCount(long long value) { m_associationCountHasBeenSet = true; m_associationCount = value; } /** *Number of resources associated with licenses.
*/ inline ManagedResourceSummary& WithAssociationCount(long long value) { SetAssociationCount(value); return *this;} private: ResourceType m_resourceType; bool m_resourceTypeHasBeenSet = false; long long m_associationCount; bool m_associationCountHasBeenSet = false; }; } // namespace Model } // namespace LicenseManager } // namespace Aws