AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
SecurityConfiguration.h
1
6#pragma once
7#include <aws/glue/Glue_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/DateTime.h>
10#include <aws/glue/model/EncryptionConfiguration.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Json
18{
19 class JsonValue;
20 class JsonView;
21} // namespace Json
22} // namespace Utils
23namespace Glue
24{
25namespace Model
26{
27
34 {
35 public:
36 AWS_GLUE_API SecurityConfiguration();
40
41
43
46 inline const Aws::String& GetName() const{ return m_name; }
47 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
48 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
49 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
50 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
51 inline SecurityConfiguration& WithName(const Aws::String& value) { SetName(value); return *this;}
52 inline SecurityConfiguration& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
53 inline SecurityConfiguration& WithName(const char* value) { SetName(value); return *this;}
55
57
60 inline const Aws::Utils::DateTime& GetCreatedTimeStamp() const{ return m_createdTimeStamp; }
61 inline bool CreatedTimeStampHasBeenSet() const { return m_createdTimeStampHasBeenSet; }
62 inline void SetCreatedTimeStamp(const Aws::Utils::DateTime& value) { m_createdTimeStampHasBeenSet = true; m_createdTimeStamp = value; }
63 inline void SetCreatedTimeStamp(Aws::Utils::DateTime&& value) { m_createdTimeStampHasBeenSet = true; m_createdTimeStamp = std::move(value); }
65 inline SecurityConfiguration& WithCreatedTimeStamp(Aws::Utils::DateTime&& value) { SetCreatedTimeStamp(std::move(value)); return *this;}
67
69
72 inline const EncryptionConfiguration& GetEncryptionConfiguration() const{ return m_encryptionConfiguration; }
73 inline bool EncryptionConfigurationHasBeenSet() const { return m_encryptionConfigurationHasBeenSet; }
74 inline void SetEncryptionConfiguration(const EncryptionConfiguration& value) { m_encryptionConfigurationHasBeenSet = true; m_encryptionConfiguration = value; }
75 inline void SetEncryptionConfiguration(EncryptionConfiguration&& value) { m_encryptionConfigurationHasBeenSet = true; m_encryptionConfiguration = std::move(value); }
79 private:
80
81 Aws::String m_name;
82 bool m_nameHasBeenSet = false;
83
84 Aws::Utils::DateTime m_createdTimeStamp;
85 bool m_createdTimeStampHasBeenSet = false;
86
87 EncryptionConfiguration m_encryptionConfiguration;
88 bool m_encryptionConfigurationHasBeenSet = false;
89 };
90
91} // namespace Model
92} // namespace Glue
93} // namespace Aws
AWS_GLUE_API SecurityConfiguration(Aws::Utils::Json::JsonView jsonValue)
void SetCreatedTimeStamp(Aws::Utils::DateTime &&value)
AWS_GLUE_API SecurityConfiguration & operator=(Aws::Utils::Json::JsonView jsonValue)
SecurityConfiguration & WithEncryptionConfiguration(const EncryptionConfiguration &value)
SecurityConfiguration & WithEncryptionConfiguration(EncryptionConfiguration &&value)
const Aws::Utils::DateTime & GetCreatedTimeStamp() const
void SetEncryptionConfiguration(EncryptionConfiguration &&value)
void SetCreatedTimeStamp(const Aws::Utils::DateTime &value)
SecurityConfiguration & WithName(const Aws::String &value)
const EncryptionConfiguration & GetEncryptionConfiguration() const
void SetEncryptionConfiguration(const EncryptionConfiguration &value)
SecurityConfiguration & WithCreatedTimeStamp(Aws::Utils::DateTime &&value)
SecurityConfiguration & WithName(const char *value)
SecurityConfiguration & WithName(Aws::String &&value)
AWS_GLUE_API Aws::Utils::Json::JsonValue Jsonize() const
SecurityConfiguration & WithCreatedTimeStamp(const Aws::Utils::DateTime &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue