This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-ram/include/aws/ram/model/ResourceShareStatus.h

35 lines
696 B
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/ram/RAM_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
namespace Aws
{
namespace RAM
{
namespace Model
{
enum class ResourceShareStatus
{
NOT_SET,
PENDING,
ACTIVE,
FAILED,
DELETING,
DELETED
};
namespace ResourceShareStatusMapper
{
AWS_RAM_API ResourceShareStatus GetResourceShareStatusForName(const Aws::String& name);
AWS_RAM_API Aws::String GetNameForResourceShareStatus(ResourceShareStatus value);
} // namespace ResourceShareStatusMapper
} // namespace Model
} // namespace RAM
} // namespace Aws