/** * 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 Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace S3 { namespace Model { /** *

Container for the owner's display name and ID.

See Also:

AWS API * Reference

*/ class Owner { public: AWS_S3_API Owner(); AWS_S3_API Owner(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_S3_API Owner& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_S3_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const; /** *

Container for the display name of the owner. This value is only supported in * the following Amazon Web Services Regions:

  • US East (N. * Virginia)

  • US West (N. California)

  • US West * (Oregon)

  • Asia Pacific (Singapore)

  • Asia * Pacific (Sydney)

  • Asia Pacific (Tokyo)

  • Europe * (Ireland)

  • South America (São Paulo)

*/ inline const Aws::String& GetDisplayName() const{ return m_displayName; } /** *

Container for the display name of the owner. This value is only supported in * the following Amazon Web Services Regions:

  • US East (N. * Virginia)

  • US West (N. California)

  • US West * (Oregon)

  • Asia Pacific (Singapore)

  • Asia * Pacific (Sydney)

  • Asia Pacific (Tokyo)

  • Europe * (Ireland)

  • South America (São Paulo)

*/ inline bool DisplayNameHasBeenSet() const { return m_displayNameHasBeenSet; } /** *

Container for the display name of the owner. This value is only supported in * the following Amazon Web Services Regions:

  • US East (N. * Virginia)

  • US West (N. California)

  • US West * (Oregon)

  • Asia Pacific (Singapore)

  • Asia * Pacific (Sydney)

  • Asia Pacific (Tokyo)

  • Europe * (Ireland)

  • South America (São Paulo)

*/ inline void SetDisplayName(const Aws::String& value) { m_displayNameHasBeenSet = true; m_displayName = value; } /** *

Container for the display name of the owner. This value is only supported in * the following Amazon Web Services Regions:

  • US East (N. * Virginia)

  • US West (N. California)

  • US West * (Oregon)

  • Asia Pacific (Singapore)

  • Asia * Pacific (Sydney)

  • Asia Pacific (Tokyo)

  • Europe * (Ireland)

  • South America (São Paulo)

*/ inline void SetDisplayName(Aws::String&& value) { m_displayNameHasBeenSet = true; m_displayName = std::move(value); } /** *

Container for the display name of the owner. This value is only supported in * the following Amazon Web Services Regions:

  • US East (N. * Virginia)

  • US West (N. California)

  • US West * (Oregon)

  • Asia Pacific (Singapore)

  • Asia * Pacific (Sydney)

  • Asia Pacific (Tokyo)

  • Europe * (Ireland)

  • South America (São Paulo)

*/ inline void SetDisplayName(const char* value) { m_displayNameHasBeenSet = true; m_displayName.assign(value); } /** *

Container for the display name of the owner. This value is only supported in * the following Amazon Web Services Regions:

  • US East (N. * Virginia)

  • US West (N. California)

  • US West * (Oregon)

  • Asia Pacific (Singapore)

  • Asia * Pacific (Sydney)

  • Asia Pacific (Tokyo)

  • Europe * (Ireland)

  • South America (São Paulo)

*/ inline Owner& WithDisplayName(const Aws::String& value) { SetDisplayName(value); return *this;} /** *

Container for the display name of the owner. This value is only supported in * the following Amazon Web Services Regions:

  • US East (N. * Virginia)

  • US West (N. California)

  • US West * (Oregon)

  • Asia Pacific (Singapore)

  • Asia * Pacific (Sydney)

  • Asia Pacific (Tokyo)

  • Europe * (Ireland)

  • South America (São Paulo)

*/ inline Owner& WithDisplayName(Aws::String&& value) { SetDisplayName(std::move(value)); return *this;} /** *

Container for the display name of the owner. This value is only supported in * the following Amazon Web Services Regions:

  • US East (N. * Virginia)

  • US West (N. California)

  • US West * (Oregon)

  • Asia Pacific (Singapore)

  • Asia * Pacific (Sydney)

  • Asia Pacific (Tokyo)

  • Europe * (Ireland)

  • South America (São Paulo)

*/ 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 = false; Aws::String m_iD; bool m_iDHasBeenSet = false; }; } // namespace Model } // namespace S3 } // namespace Aws