/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace SecurityLake { namespace Model { /** */ class UpdateDataLakeRequest : public SecurityLakeRequest { public: AWS_SECURITYLAKE_API UpdateDataLakeRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "UpdateDataLake"; } AWS_SECURITYLAKE_API Aws::String SerializePayload() const override; /** *

Specify the Region or Regions that will contribute data to the rollup * region.

*/ inline const Aws::Vector& GetConfigurations() const{ return m_configurations; } /** *

Specify the Region or Regions that will contribute data to the rollup * region.

*/ inline bool ConfigurationsHasBeenSet() const { return m_configurationsHasBeenSet; } /** *

Specify the Region or Regions that will contribute data to the rollup * region.

*/ inline void SetConfigurations(const Aws::Vector& value) { m_configurationsHasBeenSet = true; m_configurations = value; } /** *

Specify the Region or Regions that will contribute data to the rollup * region.

*/ inline void SetConfigurations(Aws::Vector&& value) { m_configurationsHasBeenSet = true; m_configurations = std::move(value); } /** *

Specify the Region or Regions that will contribute data to the rollup * region.

*/ inline UpdateDataLakeRequest& WithConfigurations(const Aws::Vector& value) { SetConfigurations(value); return *this;} /** *

Specify the Region or Regions that will contribute data to the rollup * region.

*/ inline UpdateDataLakeRequest& WithConfigurations(Aws::Vector&& value) { SetConfigurations(std::move(value)); return *this;} /** *

Specify the Region or Regions that will contribute data to the rollup * region.

*/ inline UpdateDataLakeRequest& AddConfigurations(const DataLakeConfiguration& value) { m_configurationsHasBeenSet = true; m_configurations.push_back(value); return *this; } /** *

Specify the Region or Regions that will contribute data to the rollup * region.

*/ inline UpdateDataLakeRequest& AddConfigurations(DataLakeConfiguration&& value) { m_configurationsHasBeenSet = true; m_configurations.push_back(std::move(value)); return *this; } private: Aws::Vector m_configurations; bool m_configurationsHasBeenSet = false; }; } // namespace Model } // namespace SecurityLake } // namespace Aws