/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A time zone associated with a DBInstance
or a
* DBSnapshot
. This data type is an element in the response to the
* DescribeDBInstances
, the DescribeDBSnapshots
, and the
* DescribeDBEngineVersions
actions.See Also:
AWS API
* Reference
The name of the time zone.
*/ inline const Aws::String& GetTimezoneName() const{ return m_timezoneName; } /** *The name of the time zone.
*/ inline bool TimezoneNameHasBeenSet() const { return m_timezoneNameHasBeenSet; } /** *The name of the time zone.
*/ inline void SetTimezoneName(const Aws::String& value) { m_timezoneNameHasBeenSet = true; m_timezoneName = value; } /** *The name of the time zone.
*/ inline void SetTimezoneName(Aws::String&& value) { m_timezoneNameHasBeenSet = true; m_timezoneName = std::move(value); } /** *The name of the time zone.
*/ inline void SetTimezoneName(const char* value) { m_timezoneNameHasBeenSet = true; m_timezoneName.assign(value); } /** *The name of the time zone.
*/ inline Timezone& WithTimezoneName(const Aws::String& value) { SetTimezoneName(value); return *this;} /** *The name of the time zone.
*/ inline Timezone& WithTimezoneName(Aws::String&& value) { SetTimezoneName(std::move(value)); return *this;} /** *The name of the time zone.
*/ inline Timezone& WithTimezoneName(const char* value) { SetTimezoneName(value); return *this;} private: Aws::String m_timezoneName; bool m_timezoneNameHasBeenSet = false; }; } // namespace Model } // namespace RDS } // namespace Aws