/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A behavior graph in Detective.See Also:
AWS API
* Reference
The ARN of the behavior graph.
*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *The ARN of the behavior graph.
*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *The ARN of the behavior graph.
*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *The ARN of the behavior graph.
*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *The ARN of the behavior graph.
*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *The ARN of the behavior graph.
*/ inline Graph& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *The ARN of the behavior graph.
*/ inline Graph& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *The ARN of the behavior graph.
*/ inline Graph& WithArn(const char* value) { SetArn(value); return *this;} /** *The date and time that the behavior graph was created. The value is in * milliseconds since the epoch.
*/ inline const Aws::Utils::DateTime& GetCreatedTime() const{ return m_createdTime; } /** *The date and time that the behavior graph was created. The value is in * milliseconds since the epoch.
*/ inline bool CreatedTimeHasBeenSet() const { return m_createdTimeHasBeenSet; } /** *The date and time that the behavior graph was created. The value is in * milliseconds since the epoch.
*/ inline void SetCreatedTime(const Aws::Utils::DateTime& value) { m_createdTimeHasBeenSet = true; m_createdTime = value; } /** *The date and time that the behavior graph was created. The value is in * milliseconds since the epoch.
*/ inline void SetCreatedTime(Aws::Utils::DateTime&& value) { m_createdTimeHasBeenSet = true; m_createdTime = std::move(value); } /** *The date and time that the behavior graph was created. The value is in * milliseconds since the epoch.
*/ inline Graph& WithCreatedTime(const Aws::Utils::DateTime& value) { SetCreatedTime(value); return *this;} /** *The date and time that the behavior graph was created. The value is in * milliseconds since the epoch.
*/ inline Graph& WithCreatedTime(Aws::Utils::DateTime&& value) { SetCreatedTime(std::move(value)); return *this;} private: Aws::String m_arn; bool m_arnHasBeenSet; Aws::Utils::DateTime m_createdTime; bool m_createdTimeHasBeenSet; }; } // namespace Model } // namespace Detective } // namespace Aws