/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace QuickSight { namespace Model { /** *

A structure that contains information about the users that the dashboard * snapshot is generated for. Sensitive user information is excluded. *

See Also:

AWS * API Reference

*/ class SnapshotUserConfigurationRedacted { public: AWS_QUICKSIGHT_API SnapshotUserConfigurationRedacted(); AWS_QUICKSIGHT_API SnapshotUserConfigurationRedacted(Aws::Utils::Json::JsonView jsonValue); AWS_QUICKSIGHT_API SnapshotUserConfigurationRedacted& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

An array of records that describe anonymous users that the dashboard * snapshot is generated for. Sensitive user information is excluded.

*/ inline const Aws::Vector& GetAnonymousUsers() const{ return m_anonymousUsers; } /** *

An array of records that describe anonymous users that the dashboard * snapshot is generated for. Sensitive user information is excluded.

*/ inline bool AnonymousUsersHasBeenSet() const { return m_anonymousUsersHasBeenSet; } /** *

An array of records that describe anonymous users that the dashboard * snapshot is generated for. Sensitive user information is excluded.

*/ inline void SetAnonymousUsers(const Aws::Vector& value) { m_anonymousUsersHasBeenSet = true; m_anonymousUsers = value; } /** *

An array of records that describe anonymous users that the dashboard * snapshot is generated for. Sensitive user information is excluded.

*/ inline void SetAnonymousUsers(Aws::Vector&& value) { m_anonymousUsersHasBeenSet = true; m_anonymousUsers = std::move(value); } /** *

An array of records that describe anonymous users that the dashboard * snapshot is generated for. Sensitive user information is excluded.

*/ inline SnapshotUserConfigurationRedacted& WithAnonymousUsers(const Aws::Vector& value) { SetAnonymousUsers(value); return *this;} /** *

An array of records that describe anonymous users that the dashboard * snapshot is generated for. Sensitive user information is excluded.

*/ inline SnapshotUserConfigurationRedacted& WithAnonymousUsers(Aws::Vector&& value) { SetAnonymousUsers(std::move(value)); return *this;} /** *

An array of records that describe anonymous users that the dashboard * snapshot is generated for. Sensitive user information is excluded.

*/ inline SnapshotUserConfigurationRedacted& AddAnonymousUsers(const SnapshotAnonymousUserRedacted& value) { m_anonymousUsersHasBeenSet = true; m_anonymousUsers.push_back(value); return *this; } /** *

An array of records that describe anonymous users that the dashboard * snapshot is generated for. Sensitive user information is excluded.

*/ inline SnapshotUserConfigurationRedacted& AddAnonymousUsers(SnapshotAnonymousUserRedacted&& value) { m_anonymousUsersHasBeenSet = true; m_anonymousUsers.push_back(std::move(value)); return *this; } private: Aws::Vector m_anonymousUsers; bool m_anonymousUsersHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws