/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Provides information about a custom data identifier.See Also:
* AWS
* API Reference
The Amazon Resource Name (ARN) of the custom data identifier.
*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *The Amazon Resource Name (ARN) of the custom data identifier.
*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the custom data identifier.
*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *The Amazon Resource Name (ARN) of the custom data identifier.
*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *The Amazon Resource Name (ARN) of the custom data identifier.
*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *The Amazon Resource Name (ARN) of the custom data identifier.
*/ inline CustomDataIdentifierSummary& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the custom data identifier.
*/ inline CustomDataIdentifierSummary& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the custom data identifier.
*/ inline CustomDataIdentifierSummary& WithArn(const char* value) { SetArn(value); return *this;} /** *The date and time, in UTC and extended ISO 8601 format, when the custom data * identifier was created.
*/ inline const Aws::Utils::DateTime& GetCreatedAt() const{ return m_createdAt; } /** *The date and time, in UTC and extended ISO 8601 format, when the custom data * identifier was created.
*/ inline bool CreatedAtHasBeenSet() const { return m_createdAtHasBeenSet; } /** *The date and time, in UTC and extended ISO 8601 format, when the custom data * identifier was created.
*/ inline void SetCreatedAt(const Aws::Utils::DateTime& value) { m_createdAtHasBeenSet = true; m_createdAt = value; } /** *The date and time, in UTC and extended ISO 8601 format, when the custom data * identifier was created.
*/ inline void SetCreatedAt(Aws::Utils::DateTime&& value) { m_createdAtHasBeenSet = true; m_createdAt = std::move(value); } /** *The date and time, in UTC and extended ISO 8601 format, when the custom data * identifier was created.
*/ inline CustomDataIdentifierSummary& WithCreatedAt(const Aws::Utils::DateTime& value) { SetCreatedAt(value); return *this;} /** *The date and time, in UTC and extended ISO 8601 format, when the custom data * identifier was created.
*/ inline CustomDataIdentifierSummary& WithCreatedAt(Aws::Utils::DateTime&& value) { SetCreatedAt(std::move(value)); return *this;} /** *The custom description of the custom data identifier.
*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *The custom description of the custom data identifier.
*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *The custom description of the custom data identifier.
*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *The custom description of the custom data identifier.
*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *The custom description of the custom data identifier.
*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *The custom description of the custom data identifier.
*/ inline CustomDataIdentifierSummary& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *The custom description of the custom data identifier.
*/ inline CustomDataIdentifierSummary& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *The custom description of the custom data identifier.
*/ inline CustomDataIdentifierSummary& WithDescription(const char* value) { SetDescription(value); return *this;} /** *The unique identifier for the custom data identifier.
*/ inline const Aws::String& GetId() const{ return m_id; } /** *The unique identifier for the custom data identifier.
*/ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** *The unique identifier for the custom data identifier.
*/ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** *The unique identifier for the custom data identifier.
*/ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** *The unique identifier for the custom data identifier.
*/ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** *The unique identifier for the custom data identifier.
*/ inline CustomDataIdentifierSummary& WithId(const Aws::String& value) { SetId(value); return *this;} /** *The unique identifier for the custom data identifier.
*/ inline CustomDataIdentifierSummary& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *The unique identifier for the custom data identifier.
*/ inline CustomDataIdentifierSummary& WithId(const char* value) { SetId(value); return *this;} /** *The custom name of the custom data identifier.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *The custom name of the custom data identifier.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *The custom name of the custom data identifier.
*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *The custom name of the custom data identifier.
*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *The custom name of the custom data identifier.
*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *The custom name of the custom data identifier.
*/ inline CustomDataIdentifierSummary& WithName(const Aws::String& value) { SetName(value); return *this;} /** *The custom name of the custom data identifier.
*/ inline CustomDataIdentifierSummary& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *The custom name of the custom data identifier.
*/ inline CustomDataIdentifierSummary& WithName(const char* value) { SetName(value); return *this;} private: Aws::String m_arn; bool m_arnHasBeenSet = false; Aws::Utils::DateTime m_createdAt; bool m_createdAtHasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; Aws::String m_id; bool m_idHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; }; } // namespace Model } // namespace Macie2 } // namespace Aws