AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UpdateDatasourcePackagesRequest.h
1
6#pragma once
7#include <aws/detective/Detective_EXPORTS.h>
8#include <aws/detective/DetectiveRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/detective/model/DatasourcePackage.h>
12#include <utility>
13
14namespace Aws
15{
16namespace Detective
17{
18namespace Model
19{
20
24 {
25 public:
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "UpdateDatasourcePackages"; }
33
34 AWS_DETECTIVE_API Aws::String SerializePayload() const override;
35
36
38
41 inline const Aws::String& GetGraphArn() const{ return m_graphArn; }
42 inline bool GraphArnHasBeenSet() const { return m_graphArnHasBeenSet; }
43 inline void SetGraphArn(const Aws::String& value) { m_graphArnHasBeenSet = true; m_graphArn = value; }
44 inline void SetGraphArn(Aws::String&& value) { m_graphArnHasBeenSet = true; m_graphArn = std::move(value); }
45 inline void SetGraphArn(const char* value) { m_graphArnHasBeenSet = true; m_graphArn.assign(value); }
46 inline UpdateDatasourcePackagesRequest& WithGraphArn(const Aws::String& value) { SetGraphArn(value); return *this;}
47 inline UpdateDatasourcePackagesRequest& WithGraphArn(Aws::String&& value) { SetGraphArn(std::move(value)); return *this;}
48 inline UpdateDatasourcePackagesRequest& WithGraphArn(const char* value) { SetGraphArn(value); return *this;}
50
52
55 inline const Aws::Vector<DatasourcePackage>& GetDatasourcePackages() const{ return m_datasourcePackages; }
56 inline bool DatasourcePackagesHasBeenSet() const { return m_datasourcePackagesHasBeenSet; }
57 inline void SetDatasourcePackages(const Aws::Vector<DatasourcePackage>& value) { m_datasourcePackagesHasBeenSet = true; m_datasourcePackages = value; }
58 inline void SetDatasourcePackages(Aws::Vector<DatasourcePackage>&& value) { m_datasourcePackagesHasBeenSet = true; m_datasourcePackages = std::move(value); }
61 inline UpdateDatasourcePackagesRequest& AddDatasourcePackages(const DatasourcePackage& value) { m_datasourcePackagesHasBeenSet = true; m_datasourcePackages.push_back(value); return *this; }
62 inline UpdateDatasourcePackagesRequest& AddDatasourcePackages(DatasourcePackage&& value) { m_datasourcePackagesHasBeenSet = true; m_datasourcePackages.push_back(std::move(value)); return *this; }
64 private:
65
66 Aws::String m_graphArn;
67 bool m_graphArnHasBeenSet = false;
68
69 Aws::Vector<DatasourcePackage> m_datasourcePackages;
70 bool m_datasourcePackagesHasBeenSet = false;
71 };
72
73} // namespace Model
74} // namespace Detective
75} // namespace Aws
void SetDatasourcePackages(Aws::Vector< DatasourcePackage > &&value)
UpdateDatasourcePackagesRequest & WithGraphArn(const Aws::String &value)
const Aws::Vector< DatasourcePackage > & GetDatasourcePackages() const
AWS_DETECTIVE_API Aws::String SerializePayload() const override
UpdateDatasourcePackagesRequest & WithDatasourcePackages(Aws::Vector< DatasourcePackage > &&value)
UpdateDatasourcePackagesRequest & AddDatasourcePackages(DatasourcePackage &&value)
UpdateDatasourcePackagesRequest & WithGraphArn(const char *value)
void SetDatasourcePackages(const Aws::Vector< DatasourcePackage > &value)
UpdateDatasourcePackagesRequest & WithDatasourcePackages(const Aws::Vector< DatasourcePackage > &value)
UpdateDatasourcePackagesRequest & WithGraphArn(Aws::String &&value)
UpdateDatasourcePackagesRequest & AddDatasourcePackages(const DatasourcePackage &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector