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-neptune/include/aws/neptune/model/Timezone.h

91 lines
2.4 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/neptune/Neptune_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Xml
{
class XmlNode;
} // namespace Xml
} // namespace Utils
namespace Neptune
{
namespace Model
{
/**
* <p>A time zone associated with a <a>DBInstance</a>.</p><p><h3>See Also:</h3>
* <a href="http://docs.aws.amazon.com/goto/WebAPI/neptune-2014-10-31/Timezone">AWS
* API Reference</a></p>
*/
class AWS_NEPTUNE_API Timezone
{
public:
Timezone();
Timezone(const Aws::Utils::Xml::XmlNode& xmlNode);
Timezone& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
void OutputToStream(Aws::OStream& oStream, const char* location) const;
/**
* <p>The name of the time zone.</p>
*/
inline const Aws::String& GetTimezoneName() const{ return m_timezoneName; }
/**
* <p>The name of the time zone.</p>
*/
inline bool TimezoneNameHasBeenSet() const { return m_timezoneNameHasBeenSet; }
/**
* <p>The name of the time zone.</p>
*/
inline void SetTimezoneName(const Aws::String& value) { m_timezoneNameHasBeenSet = true; m_timezoneName = value; }
/**
* <p>The name of the time zone.</p>
*/
inline void SetTimezoneName(Aws::String&& value) { m_timezoneNameHasBeenSet = true; m_timezoneName = std::move(value); }
/**
* <p>The name of the time zone.</p>
*/
inline void SetTimezoneName(const char* value) { m_timezoneNameHasBeenSet = true; m_timezoneName.assign(value); }
/**
* <p>The name of the time zone.</p>
*/
inline Timezone& WithTimezoneName(const Aws::String& value) { SetTimezoneName(value); return *this;}
/**
* <p>The name of the time zone.</p>
*/
inline Timezone& WithTimezoneName(Aws::String&& value) { SetTimezoneName(std::move(value)); return *this;}
/**
* <p>The name of the time zone.</p>
*/
inline Timezone& WithTimezoneName(const char* value) { SetTimezoneName(value); return *this;}
private:
Aws::String m_timezoneName;
bool m_timezoneNameHasBeenSet;
};
} // namespace Model
} // namespace Neptune
} // namespace Aws