/** * 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 on the anonymous user * configuration.

See Also:

AWS * API Reference

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

The tags to be used for row-level security (RLS). Make sure that the relevant * datasets have RLS tags configured before you start a snapshot export job. You * can configure the RLS tags of a dataset with a * DataSet$RowLevelPermissionTagConfiguration API call.

These * are not the tags that are used for Amazon Web Services resource tagging. For * more information on row level security in Amazon QuickSight, see Using * Row-Level Security (RLS) with Tagsin the Amazon QuickSight User * Guide.

*/ inline const Aws::Vector& GetRowLevelPermissionTags() const{ return m_rowLevelPermissionTags; } /** *

The tags to be used for row-level security (RLS). Make sure that the relevant * datasets have RLS tags configured before you start a snapshot export job. You * can configure the RLS tags of a dataset with a * DataSet$RowLevelPermissionTagConfiguration API call.

These * are not the tags that are used for Amazon Web Services resource tagging. For * more information on row level security in Amazon QuickSight, see Using * Row-Level Security (RLS) with Tagsin the Amazon QuickSight User * Guide.

*/ inline bool RowLevelPermissionTagsHasBeenSet() const { return m_rowLevelPermissionTagsHasBeenSet; } /** *

The tags to be used for row-level security (RLS). Make sure that the relevant * datasets have RLS tags configured before you start a snapshot export job. You * can configure the RLS tags of a dataset with a * DataSet$RowLevelPermissionTagConfiguration API call.

These * are not the tags that are used for Amazon Web Services resource tagging. For * more information on row level security in Amazon QuickSight, see Using * Row-Level Security (RLS) with Tagsin the Amazon QuickSight User * Guide.

*/ inline void SetRowLevelPermissionTags(const Aws::Vector& value) { m_rowLevelPermissionTagsHasBeenSet = true; m_rowLevelPermissionTags = value; } /** *

The tags to be used for row-level security (RLS). Make sure that the relevant * datasets have RLS tags configured before you start a snapshot export job. You * can configure the RLS tags of a dataset with a * DataSet$RowLevelPermissionTagConfiguration API call.

These * are not the tags that are used for Amazon Web Services resource tagging. For * more information on row level security in Amazon QuickSight, see Using * Row-Level Security (RLS) with Tagsin the Amazon QuickSight User * Guide.

*/ inline void SetRowLevelPermissionTags(Aws::Vector&& value) { m_rowLevelPermissionTagsHasBeenSet = true; m_rowLevelPermissionTags = std::move(value); } /** *

The tags to be used for row-level security (RLS). Make sure that the relevant * datasets have RLS tags configured before you start a snapshot export job. You * can configure the RLS tags of a dataset with a * DataSet$RowLevelPermissionTagConfiguration API call.

These * are not the tags that are used for Amazon Web Services resource tagging. For * more information on row level security in Amazon QuickSight, see Using * Row-Level Security (RLS) with Tagsin the Amazon QuickSight User * Guide.

*/ inline SnapshotAnonymousUser& WithRowLevelPermissionTags(const Aws::Vector& value) { SetRowLevelPermissionTags(value); return *this;} /** *

The tags to be used for row-level security (RLS). Make sure that the relevant * datasets have RLS tags configured before you start a snapshot export job. You * can configure the RLS tags of a dataset with a * DataSet$RowLevelPermissionTagConfiguration API call.

These * are not the tags that are used for Amazon Web Services resource tagging. For * more information on row level security in Amazon QuickSight, see Using * Row-Level Security (RLS) with Tagsin the Amazon QuickSight User * Guide.

*/ inline SnapshotAnonymousUser& WithRowLevelPermissionTags(Aws::Vector&& value) { SetRowLevelPermissionTags(std::move(value)); return *this;} /** *

The tags to be used for row-level security (RLS). Make sure that the relevant * datasets have RLS tags configured before you start a snapshot export job. You * can configure the RLS tags of a dataset with a * DataSet$RowLevelPermissionTagConfiguration API call.

These * are not the tags that are used for Amazon Web Services resource tagging. For * more information on row level security in Amazon QuickSight, see Using * Row-Level Security (RLS) with Tagsin the Amazon QuickSight User * Guide.

*/ inline SnapshotAnonymousUser& AddRowLevelPermissionTags(const SessionTag& value) { m_rowLevelPermissionTagsHasBeenSet = true; m_rowLevelPermissionTags.push_back(value); return *this; } /** *

The tags to be used for row-level security (RLS). Make sure that the relevant * datasets have RLS tags configured before you start a snapshot export job. You * can configure the RLS tags of a dataset with a * DataSet$RowLevelPermissionTagConfiguration API call.

These * are not the tags that are used for Amazon Web Services resource tagging. For * more information on row level security in Amazon QuickSight, see Using * Row-Level Security (RLS) with Tagsin the Amazon QuickSight User * Guide.

*/ inline SnapshotAnonymousUser& AddRowLevelPermissionTags(SessionTag&& value) { m_rowLevelPermissionTagsHasBeenSet = true; m_rowLevelPermissionTags.push_back(std::move(value)); return *this; } private: Aws::Vector m_rowLevelPermissionTags; bool m_rowLevelPermissionTagsHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws