39 lines
821 B
C
39 lines
821 B
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/elasticache/ElastiCache_EXPORTS.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace ElastiCache
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
enum class UpdateActionStatus
|
|||
|
|
{
|
|||
|
|
NOT_SET,
|
|||
|
|
not_applied,
|
|||
|
|
waiting_to_start,
|
|||
|
|
in_progress,
|
|||
|
|
stopping,
|
|||
|
|
stopped,
|
|||
|
|
complete,
|
|||
|
|
scheduling,
|
|||
|
|
scheduled,
|
|||
|
|
not_applicable
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
namespace UpdateActionStatusMapper
|
|||
|
|
{
|
|||
|
|
AWS_ELASTICACHE_API UpdateActionStatus GetUpdateActionStatusForName(const Aws::String& name);
|
|||
|
|
|
|||
|
|
AWS_ELASTICACHE_API Aws::String GetNameForUpdateActionStatus(UpdateActionStatus value);
|
|||
|
|
} // namespace UpdateActionStatusMapper
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace ElastiCache
|
|||
|
|
} // namespace Aws
|