/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains details about an activity.See Also:
AWS
* API Reference
The Amazon Resource Name (ARN) that identifies the activity.
*/ inline const Aws::String& GetActivityArn() const{ return m_activityArn; } /** *The Amazon Resource Name (ARN) that identifies the activity.
*/ inline bool ActivityArnHasBeenSet() const { return m_activityArnHasBeenSet; } /** *The Amazon Resource Name (ARN) that identifies the activity.
*/ inline void SetActivityArn(const Aws::String& value) { m_activityArnHasBeenSet = true; m_activityArn = value; } /** *The Amazon Resource Name (ARN) that identifies the activity.
*/ inline void SetActivityArn(Aws::String&& value) { m_activityArnHasBeenSet = true; m_activityArn = std::move(value); } /** *The Amazon Resource Name (ARN) that identifies the activity.
*/ inline void SetActivityArn(const char* value) { m_activityArnHasBeenSet = true; m_activityArn.assign(value); } /** *The Amazon Resource Name (ARN) that identifies the activity.
*/ inline ActivityListItem& WithActivityArn(const Aws::String& value) { SetActivityArn(value); return *this;} /** *The Amazon Resource Name (ARN) that identifies the activity.
*/ inline ActivityListItem& WithActivityArn(Aws::String&& value) { SetActivityArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) that identifies the activity.
*/ inline ActivityListItem& WithActivityArn(const char* value) { SetActivityArn(value); return *this;} /** *The name of the activity.
A name must not contain:
white space
brackets < > { } [ ]
*
wildcard characters ? *
special characters " # % \ ^ | ~ ` $ & , ; : /
control characters (U+0000-001F
,
* U+007F-009F
)
To enable logging with CloudWatch * Logs, the name should only contain 0-9, A-Z, a-z, - and _.
*/ inline const Aws::String& GetName() const{ return m_name; } /** *The name of the activity.
A name must not contain:
white space
brackets < > { } [ ]
*
wildcard characters ? *
special characters " # % \ ^ | ~ ` $ & , ; : /
control characters (U+0000-001F
,
* U+007F-009F
)
To enable logging with CloudWatch * Logs, the name should only contain 0-9, A-Z, a-z, - and _.
*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *The name of the activity.
A name must not contain:
white space
brackets < > { } [ ]
*
wildcard characters ? *
special characters " # % \ ^ | ~ ` $ & , ; : /
control characters (U+0000-001F
,
* U+007F-009F
)
To enable logging with CloudWatch * Logs, the name should only contain 0-9, A-Z, a-z, - and _.
*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *The name of the activity.
A name must not contain:
white space
brackets < > { } [ ]
*
wildcard characters ? *
special characters " # % \ ^ | ~ ` $ & , ; : /
control characters (U+0000-001F
,
* U+007F-009F
)
To enable logging with CloudWatch * Logs, the name should only contain 0-9, A-Z, a-z, - and _.
*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *The name of the activity.
A name must not contain:
white space
brackets < > { } [ ]
*
wildcard characters ? *
special characters " # % \ ^ | ~ ` $ & , ; : /
control characters (U+0000-001F
,
* U+007F-009F
)
To enable logging with CloudWatch * Logs, the name should only contain 0-9, A-Z, a-z, - and _.
*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *The name of the activity.
A name must not contain:
white space
brackets < > { } [ ]
*
wildcard characters ? *
special characters " # % \ ^ | ~ ` $ & , ; : /
control characters (U+0000-001F
,
* U+007F-009F
)
To enable logging with CloudWatch * Logs, the name should only contain 0-9, A-Z, a-z, - and _.
*/ inline ActivityListItem& WithName(const Aws::String& value) { SetName(value); return *this;} /** *The name of the activity.
A name must not contain:
white space
brackets < > { } [ ]
*
wildcard characters ? *
special characters " # % \ ^ | ~ ` $ & , ; : /
control characters (U+0000-001F
,
* U+007F-009F
)
To enable logging with CloudWatch * Logs, the name should only contain 0-9, A-Z, a-z, - and _.
*/ inline ActivityListItem& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *The name of the activity.
A name must not contain:
white space
brackets < > { } [ ]
*
wildcard characters ? *
special characters " # % \ ^ | ~ ` $ & , ; : /
control characters (U+0000-001F
,
* U+007F-009F
)
To enable logging with CloudWatch * Logs, the name should only contain 0-9, A-Z, a-z, - and _.
*/ inline ActivityListItem& WithName(const char* value) { SetName(value); return *this;} /** *The date the activity is created.
*/ inline const Aws::Utils::DateTime& GetCreationDate() const{ return m_creationDate; } /** *The date the activity is created.
*/ inline bool CreationDateHasBeenSet() const { return m_creationDateHasBeenSet; } /** *The date the activity is created.
*/ inline void SetCreationDate(const Aws::Utils::DateTime& value) { m_creationDateHasBeenSet = true; m_creationDate = value; } /** *The date the activity is created.
*/ inline void SetCreationDate(Aws::Utils::DateTime&& value) { m_creationDateHasBeenSet = true; m_creationDate = std::move(value); } /** *The date the activity is created.
*/ inline ActivityListItem& WithCreationDate(const Aws::Utils::DateTime& value) { SetCreationDate(value); return *this;} /** *The date the activity is created.
*/ inline ActivityListItem& WithCreationDate(Aws::Utils::DateTime&& value) { SetCreationDate(std::move(value)); return *this;} private: Aws::String m_activityArn; bool m_activityArnHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; Aws::Utils::DateTime m_creationDate; bool m_creationDateHasBeenSet = false; }; } // namespace Model } // namespace SFN } // namespace Aws