/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the output of a BatchUpdate
response
* operation.See Also:
AWS
* API Reference
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