/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Container for the owner's display name and ID.See Also:
AWS API
* Reference
Container for the display name of the owner.
*/ inline const Aws::String& GetDisplayName() const{ return m_displayName; } /** *Container for the display name of the owner.
*/ inline bool DisplayNameHasBeenSet() const { return m_displayNameHasBeenSet; } /** *Container for the display name of the owner.
*/ inline void SetDisplayName(const Aws::String& value) { m_displayNameHasBeenSet = true; m_displayName = value; } /** *Container for the display name of the owner.
*/ inline void SetDisplayName(Aws::String&& value) { m_displayNameHasBeenSet = true; m_displayName = std::move(value); } /** *Container for the display name of the owner.
*/ inline void SetDisplayName(const char* value) { m_displayNameHasBeenSet = true; m_displayName.assign(value); } /** *Container for the display name of the owner.
*/ inline Owner& WithDisplayName(const Aws::String& value) { SetDisplayName(value); return *this;} /** *Container for the display name of the owner.
*/ inline Owner& WithDisplayName(Aws::String&& value) { SetDisplayName(std::move(value)); return *this;} /** *Container for the display name of the owner.
*/ inline Owner& WithDisplayName(const char* value) { SetDisplayName(value); return *this;} /** *Container for the ID of the owner.
*/ inline const Aws::String& GetID() const{ return m_iD; } /** *Container for the ID of the owner.
*/ inline bool IDHasBeenSet() const { return m_iDHasBeenSet; } /** *Container for the ID of the owner.
*/ inline void SetID(const Aws::String& value) { m_iDHasBeenSet = true; m_iD = value; } /** *Container for the ID of the owner.
*/ inline void SetID(Aws::String&& value) { m_iDHasBeenSet = true; m_iD = std::move(value); } /** *Container for the ID of the owner.
*/ inline void SetID(const char* value) { m_iDHasBeenSet = true; m_iD.assign(value); } /** *Container for the ID of the owner.
*/ inline Owner& WithID(const Aws::String& value) { SetID(value); return *this;} /** *Container for the ID of the owner.
*/ inline Owner& WithID(Aws::String&& value) { SetID(std::move(value)); return *this;} /** *Container for the ID of the owner.
*/ inline Owner& WithID(const char* value) { SetID(value); return *this;} private: Aws::String m_displayName; bool m_displayNameHasBeenSet; Aws::String m_iD; bool m_iDHasBeenSet; }; } // namespace Model } // namespace S3 } // namespace Aws