159 lines
5.2 KiB
C++
159 lines
5.2 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/glue/Glue_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/core/utils/DateTime.h>
|
|
#include <aws/glue/model/EncryptionConfiguration.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
class JsonView;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace Glue
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>Specifies a security configuration.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/SecurityConfiguration">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_GLUE_API SecurityConfiguration
|
|
{
|
|
public:
|
|
SecurityConfiguration();
|
|
SecurityConfiguration(Aws::Utils::Json::JsonView jsonValue);
|
|
SecurityConfiguration& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|
|
|
|
|
/**
|
|
* <p>The name of the security configuration.</p>
|
|
*/
|
|
inline const Aws::String& GetName() const{ return m_name; }
|
|
|
|
/**
|
|
* <p>The name of the security configuration.</p>
|
|
*/
|
|
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the security configuration.</p>
|
|
*/
|
|
inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
|
|
|
|
/**
|
|
* <p>The name of the security configuration.</p>
|
|
*/
|
|
inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the security configuration.</p>
|
|
*/
|
|
inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the security configuration.</p>
|
|
*/
|
|
inline SecurityConfiguration& WithName(const Aws::String& value) { SetName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the security configuration.</p>
|
|
*/
|
|
inline SecurityConfiguration& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the security configuration.</p>
|
|
*/
|
|
inline SecurityConfiguration& WithName(const char* value) { SetName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The time at which this security configuration was created.</p>
|
|
*/
|
|
inline const Aws::Utils::DateTime& GetCreatedTimeStamp() const{ return m_createdTimeStamp; }
|
|
|
|
/**
|
|
* <p>The time at which this security configuration was created.</p>
|
|
*/
|
|
inline bool CreatedTimeStampHasBeenSet() const { return m_createdTimeStampHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The time at which this security configuration was created.</p>
|
|
*/
|
|
inline void SetCreatedTimeStamp(const Aws::Utils::DateTime& value) { m_createdTimeStampHasBeenSet = true; m_createdTimeStamp = value; }
|
|
|
|
/**
|
|
* <p>The time at which this security configuration was created.</p>
|
|
*/
|
|
inline void SetCreatedTimeStamp(Aws::Utils::DateTime&& value) { m_createdTimeStampHasBeenSet = true; m_createdTimeStamp = std::move(value); }
|
|
|
|
/**
|
|
* <p>The time at which this security configuration was created.</p>
|
|
*/
|
|
inline SecurityConfiguration& WithCreatedTimeStamp(const Aws::Utils::DateTime& value) { SetCreatedTimeStamp(value); return *this;}
|
|
|
|
/**
|
|
* <p>The time at which this security configuration was created.</p>
|
|
*/
|
|
inline SecurityConfiguration& WithCreatedTimeStamp(Aws::Utils::DateTime&& value) { SetCreatedTimeStamp(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The encryption configuration associated with this security configuration.</p>
|
|
*/
|
|
inline const EncryptionConfiguration& GetEncryptionConfiguration() const{ return m_encryptionConfiguration; }
|
|
|
|
/**
|
|
* <p>The encryption configuration associated with this security configuration.</p>
|
|
*/
|
|
inline bool EncryptionConfigurationHasBeenSet() const { return m_encryptionConfigurationHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The encryption configuration associated with this security configuration.</p>
|
|
*/
|
|
inline void SetEncryptionConfiguration(const EncryptionConfiguration& value) { m_encryptionConfigurationHasBeenSet = true; m_encryptionConfiguration = value; }
|
|
|
|
/**
|
|
* <p>The encryption configuration associated with this security configuration.</p>
|
|
*/
|
|
inline void SetEncryptionConfiguration(EncryptionConfiguration&& value) { m_encryptionConfigurationHasBeenSet = true; m_encryptionConfiguration = std::move(value); }
|
|
|
|
/**
|
|
* <p>The encryption configuration associated with this security configuration.</p>
|
|
*/
|
|
inline SecurityConfiguration& WithEncryptionConfiguration(const EncryptionConfiguration& value) { SetEncryptionConfiguration(value); return *this;}
|
|
|
|
/**
|
|
* <p>The encryption configuration associated with this security configuration.</p>
|
|
*/
|
|
inline SecurityConfiguration& WithEncryptionConfiguration(EncryptionConfiguration&& value) { SetEncryptionConfiguration(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_name;
|
|
bool m_nameHasBeenSet;
|
|
|
|
Aws::Utils::DateTime m_createdTimeStamp;
|
|
bool m_createdTimeStampHasBeenSet;
|
|
|
|
EncryptionConfiguration m_encryptionConfiguration;
|
|
bool m_encryptionConfigurationHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Glue
|
|
} // namespace Aws
|