/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace CloudDirectory { namespace Model { /** *

Represents the output of a BatchUpdate response * operation.

See Also:

AWS * API Reference

*/ class BatchUpdateObjectAttributesResponse { public: AWS_CLOUDDIRECTORY_API BatchUpdateObjectAttributesResponse(); AWS_CLOUDDIRECTORY_API BatchUpdateObjectAttributesResponse(Aws::Utils::Json::JsonView jsonValue); AWS_CLOUDDIRECTORY_API BatchUpdateObjectAttributesResponse& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_CLOUDDIRECTORY_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

ID that is associated with the object.

*/ inline const Aws::String& GetObjectIdentifier() const{ return m_objectIdentifier; } /** *

ID that is associated with the object.

*/ inline bool ObjectIdentifierHasBeenSet() const { return m_objectIdentifierHasBeenSet; } /** *

ID that is associated with the object.

*/ inline void SetObjectIdentifier(const Aws::String& value) { m_objectIdentifierHasBeenSet = true; m_objectIdentifier = value; } /** *

ID that is associated with the object.

*/ inline void SetObjectIdentifier(Aws::String&& value) { m_objectIdentifierHasBeenSet = true; m_objectIdentifier = std::move(value); } /** *

ID that is associated with the object.

*/ inline void SetObjectIdentifier(const char* value) { m_objectIdentifierHasBeenSet = true; m_objectIdentifier.assign(value); } /** *

ID that is associated with the object.

*/ inline BatchUpdateObjectAttributesResponse& WithObjectIdentifier(const Aws::String& value) { SetObjectIdentifier(value); return *this;} /** *

ID that is associated with the object.

*/ inline BatchUpdateObjectAttributesResponse& WithObjectIdentifier(Aws::String&& value) { SetObjectIdentifier(std::move(value)); return *this;} /** *

ID that is associated with the object.

*/ inline BatchUpdateObjectAttributesResponse& WithObjectIdentifier(const char* value) { SetObjectIdentifier(value); return *this;} private: Aws::String m_objectIdentifier; bool m_objectIdentifierHasBeenSet = false; }; } // namespace Model } // namespace CloudDirectory } // namespace Aws