/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains information on which data sources are enabled for a member
* account.See Also:
AWS
* API Reference
The account ID for the member account.
*/ inline const Aws::String& GetAccountId() const{ return m_accountId; } /** *The account ID for the member account.
*/ inline bool AccountIdHasBeenSet() const { return m_accountIdHasBeenSet; } /** *The account ID for the member account.
*/ inline void SetAccountId(const Aws::String& value) { m_accountIdHasBeenSet = true; m_accountId = value; } /** *The account ID for the member account.
*/ inline void SetAccountId(Aws::String&& value) { m_accountIdHasBeenSet = true; m_accountId = std::move(value); } /** *The account ID for the member account.
*/ inline void SetAccountId(const char* value) { m_accountIdHasBeenSet = true; m_accountId.assign(value); } /** *The account ID for the member account.
*/ inline MemberDataSourceConfiguration& WithAccountId(const Aws::String& value) { SetAccountId(value); return *this;} /** *The account ID for the member account.
*/ inline MemberDataSourceConfiguration& WithAccountId(Aws::String&& value) { SetAccountId(std::move(value)); return *this;} /** *The account ID for the member account.
*/ inline MemberDataSourceConfiguration& WithAccountId(const char* value) { SetAccountId(value); return *this;} /** *Contains information about the status of the features for the member * account.
*/ inline const Aws::VectorContains information about the status of the features for the member * account.
*/ inline bool FeaturesHasBeenSet() const { return m_featuresHasBeenSet; } /** *Contains information about the status of the features for the member * account.
*/ inline void SetFeatures(const Aws::VectorContains information about the status of the features for the member * account.
*/ inline void SetFeatures(Aws::VectorContains information about the status of the features for the member * account.
*/ inline MemberDataSourceConfiguration& WithFeatures(const Aws::VectorContains information about the status of the features for the member * account.
*/ inline MemberDataSourceConfiguration& WithFeatures(Aws::VectorContains information about the status of the features for the member * account.
*/ inline MemberDataSourceConfiguration& AddFeatures(const MemberFeaturesConfigurationResult& value) { m_featuresHasBeenSet = true; m_features.push_back(value); return *this; } /** *Contains information about the status of the features for the member * account.
*/ inline MemberDataSourceConfiguration& AddFeatures(MemberFeaturesConfigurationResult&& value) { m_featuresHasBeenSet = true; m_features.push_back(std::move(value)); return *this; } private: Aws::String m_accountId; bool m_accountIdHasBeenSet = false; Aws::Vector