/** * 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 CreateAddressResult { public: CreateAddressResult(); CreateAddressResult(const Aws::AmazonWebServiceResult& result); CreateAddressResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The automatically generated ID for a specific address. You'll use this ID * when you create a job to specify which address you want the Snowball for that * job shipped to.

*/ inline const Aws::String& GetAddressId() const{ return m_addressId; } /** *

The automatically generated ID for a specific address. You'll use this ID * when you create a job to specify which address you want the Snowball for that * job shipped to.

*/ inline void SetAddressId(const Aws::String& value) { m_addressId = value; } /** *

The automatically generated ID for a specific address. You'll use this ID * when you create a job to specify which address you want the Snowball for that * job shipped to.

*/ inline void SetAddressId(Aws::String&& value) { m_addressId = std::move(value); } /** *

The automatically generated ID for a specific address. You'll use this ID * when you create a job to specify which address you want the Snowball for that * job shipped to.

*/ inline void SetAddressId(const char* value) { m_addressId.assign(value); } /** *

The automatically generated ID for a specific address. You'll use this ID * when you create a job to specify which address you want the Snowball for that * job shipped to.

*/ inline CreateAddressResult& WithAddressId(const Aws::String& value) { SetAddressId(value); return *this;} /** *

The automatically generated ID for a specific address. You'll use this ID * when you create a job to specify which address you want the Snowball for that * job shipped to.

*/ inline CreateAddressResult& WithAddressId(Aws::String&& value) { SetAddressId(std::move(value)); return *this;} /** *

The automatically generated ID for a specific address. You'll use this ID * when you create a job to specify which address you want the Snowball for that * job shipped to.

*/ inline CreateAddressResult& WithAddressId(const char* value) { SetAddressId(value); return *this;} private: Aws::String m_addressId; }; } // namespace Model } // namespace Snowball } // namespace Aws