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-lambda/include/aws/lambda/model/EventSourcePosition.h

33 lines
698 B
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/lambda/Lambda_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
namespace Aws
{
namespace Lambda
{
namespace Model
{
enum class EventSourcePosition
{
NOT_SET,
TRIM_HORIZON,
LATEST,
AT_TIMESTAMP
};
namespace EventSourcePositionMapper
{
AWS_LAMBDA_API EventSourcePosition GetEventSourcePositionForName(const Aws::String& name);
AWS_LAMBDA_API Aws::String GetNameForEventSourcePosition(EventSourcePosition value);
} // namespace EventSourcePositionMapper
} // namespace Model
} // namespace Lambda
} // namespace Aws