/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template 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& result); DescribeAddressResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The address that you want the Snowball or Snowballs associated with a * specific job to be shipped to.

*/ inline const Address& GetAddress() const{ return m_address; } /** *

The address that you want the Snowball or Snowballs associated with a * specific job to be shipped to.

*/ inline void SetAddress(const Address& value) { m_address = value; } /** *

The address that you want the Snowball or Snowballs associated with a * specific job to be shipped to.

*/ inline void SetAddress(Address&& value) { m_address = std::move(value); } /** *

The address that you want the Snowball or Snowballs associated with a * specific job to be shipped to.

*/ inline DescribeAddressResult& WithAddress(const Address& value) { SetAddress(value); return *this;} /** *

The address that you want the Snowball or Snowballs associated with a * specific job to be shipped to.

*/ inline DescribeAddressResult& WithAddress(Address&& value) { SetAddress(std::move(value)); return *this;} private: Address m_address; }; } // namespace Model } // namespace Snowball } // namespace Aws