AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ExternalEventsDetail.h
1
6#pragma once
7#include <aws/frauddetector/FraudDetector_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace FraudDetector
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_FRAUDDETECTOR_API ExternalEventsDetail();
36 AWS_FRAUDDETECTOR_API ExternalEventsDetail(Aws::Utils::Json::JsonView jsonValue);
38 AWS_FRAUDDETECTOR_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetDataLocation() const{ return m_dataLocation; }
46 inline bool DataLocationHasBeenSet() const { return m_dataLocationHasBeenSet; }
47 inline void SetDataLocation(const Aws::String& value) { m_dataLocationHasBeenSet = true; m_dataLocation = value; }
48 inline void SetDataLocation(Aws::String&& value) { m_dataLocationHasBeenSet = true; m_dataLocation = std::move(value); }
49 inline void SetDataLocation(const char* value) { m_dataLocationHasBeenSet = true; m_dataLocation.assign(value); }
50 inline ExternalEventsDetail& WithDataLocation(const Aws::String& value) { SetDataLocation(value); return *this;}
51 inline ExternalEventsDetail& WithDataLocation(Aws::String&& value) { SetDataLocation(std::move(value)); return *this;}
52 inline ExternalEventsDetail& WithDataLocation(const char* value) { SetDataLocation(value); return *this;}
54
56
60 inline const Aws::String& GetDataAccessRoleArn() const{ return m_dataAccessRoleArn; }
61 inline bool DataAccessRoleArnHasBeenSet() const { return m_dataAccessRoleArnHasBeenSet; }
62 inline void SetDataAccessRoleArn(const Aws::String& value) { m_dataAccessRoleArnHasBeenSet = true; m_dataAccessRoleArn = value; }
63 inline void SetDataAccessRoleArn(Aws::String&& value) { m_dataAccessRoleArnHasBeenSet = true; m_dataAccessRoleArn = std::move(value); }
64 inline void SetDataAccessRoleArn(const char* value) { m_dataAccessRoleArnHasBeenSet = true; m_dataAccessRoleArn.assign(value); }
65 inline ExternalEventsDetail& WithDataAccessRoleArn(const Aws::String& value) { SetDataAccessRoleArn(value); return *this;}
66 inline ExternalEventsDetail& WithDataAccessRoleArn(Aws::String&& value) { SetDataAccessRoleArn(std::move(value)); return *this;}
67 inline ExternalEventsDetail& WithDataAccessRoleArn(const char* value) { SetDataAccessRoleArn(value); return *this;}
69 private:
70
71 Aws::String m_dataLocation;
72 bool m_dataLocationHasBeenSet = false;
73
74 Aws::String m_dataAccessRoleArn;
75 bool m_dataAccessRoleArnHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace FraudDetector
80} // namespace Aws
ExternalEventsDetail & WithDataAccessRoleArn(Aws::String &&value)
ExternalEventsDetail & WithDataLocation(const Aws::String &value)
AWS_FRAUDDETECTOR_API ExternalEventsDetail(Aws::Utils::Json::JsonView jsonValue)
ExternalEventsDetail & WithDataAccessRoleArn(const Aws::String &value)
ExternalEventsDetail & WithDataLocation(Aws::String &&value)
AWS_FRAUDDETECTOR_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_FRAUDDETECTOR_API ExternalEventsDetail & operator=(Aws::Utils::Json::JsonView jsonValue)
ExternalEventsDetail & WithDataAccessRoleArn(const char *value)
ExternalEventsDetail & WithDataLocation(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue