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-snowball/include/aws/snowball/model/DescribeAddressResult.h

73 lines
1.9 KiB
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/snowball/Snowball_EXPORTS.h>
#include <aws/snowball/model/Address.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace Snowball
{
namespace Model
{
class AWS_SNOWBALL_API DescribeAddressResult
{
public:
DescribeAddressResult();
DescribeAddressResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
DescribeAddressResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The address that you want the Snowball or Snowballs associated with a
* specific job to be shipped to.</p>
*/
inline const Address& GetAddress() const{ return m_address; }
/**
* <p>The address that you want the Snowball or Snowballs associated with a
* specific job to be shipped to.</p>
*/
inline void SetAddress(const Address& value) { m_address = value; }
/**
* <p>The address that you want the Snowball or Snowballs associated with a
* specific job to be shipped to.</p>
*/
inline void SetAddress(Address&& value) { m_address = std::move(value); }
/**
* <p>The address that you want the Snowball or Snowballs associated with a
* specific job to be shipped to.</p>
*/
inline DescribeAddressResult& WithAddress(const Address& value) { SetAddress(value); return *this;}
/**
* <p>The address that you want the Snowball or Snowballs associated with a
* specific job to be shipped to.</p>
*/
inline DescribeAddressResult& WithAddress(Address&& value) { SetAddress(std::move(value)); return *this;}
private:
Address m_address;
};
} // namespace Model
} // namespace Snowball
} // namespace Aws