265 lines
9.4 KiB
C++
265 lines
9.4 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/cloudfront/CloudFront_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/core/utils/DateTime.h>
|
|
#include <aws/cloudfront/model/EncryptionEntities.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Xml
|
|
{
|
|
class XmlNode;
|
|
} // namespace Xml
|
|
} // namespace Utils
|
|
namespace CloudFront
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>The field-level encryption profile summary.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/FieldLevelEncryptionProfileSummary">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_CLOUDFRONT_API FieldLevelEncryptionProfileSummary
|
|
{
|
|
public:
|
|
FieldLevelEncryptionProfileSummary();
|
|
FieldLevelEncryptionProfileSummary(const Aws::Utils::Xml::XmlNode& xmlNode);
|
|
FieldLevelEncryptionProfileSummary& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
|
|
|
|
void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
|
|
|
|
|
|
/**
|
|
* <p>ID for the field-level encryption profile summary.</p>
|
|
*/
|
|
inline const Aws::String& GetId() const{ return m_id; }
|
|
|
|
/**
|
|
* <p>ID for the field-level encryption profile summary.</p>
|
|
*/
|
|
inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
|
|
|
|
/**
|
|
* <p>ID for the field-level encryption profile summary.</p>
|
|
*/
|
|
inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; }
|
|
|
|
/**
|
|
* <p>ID for the field-level encryption profile summary.</p>
|
|
*/
|
|
inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); }
|
|
|
|
/**
|
|
* <p>ID for the field-level encryption profile summary.</p>
|
|
*/
|
|
inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); }
|
|
|
|
/**
|
|
* <p>ID for the field-level encryption profile summary.</p>
|
|
*/
|
|
inline FieldLevelEncryptionProfileSummary& WithId(const Aws::String& value) { SetId(value); return *this;}
|
|
|
|
/**
|
|
* <p>ID for the field-level encryption profile summary.</p>
|
|
*/
|
|
inline FieldLevelEncryptionProfileSummary& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>ID for the field-level encryption profile summary.</p>
|
|
*/
|
|
inline FieldLevelEncryptionProfileSummary& WithId(const char* value) { SetId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The time when the the field-level encryption profile summary was last
|
|
* updated.</p>
|
|
*/
|
|
inline const Aws::Utils::DateTime& GetLastModifiedTime() const{ return m_lastModifiedTime; }
|
|
|
|
/**
|
|
* <p>The time when the the field-level encryption profile summary was last
|
|
* updated.</p>
|
|
*/
|
|
inline bool LastModifiedTimeHasBeenSet() const { return m_lastModifiedTimeHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The time when the the field-level encryption profile summary was last
|
|
* updated.</p>
|
|
*/
|
|
inline void SetLastModifiedTime(const Aws::Utils::DateTime& value) { m_lastModifiedTimeHasBeenSet = true; m_lastModifiedTime = value; }
|
|
|
|
/**
|
|
* <p>The time when the the field-level encryption profile summary was last
|
|
* updated.</p>
|
|
*/
|
|
inline void SetLastModifiedTime(Aws::Utils::DateTime&& value) { m_lastModifiedTimeHasBeenSet = true; m_lastModifiedTime = std::move(value); }
|
|
|
|
/**
|
|
* <p>The time when the the field-level encryption profile summary was last
|
|
* updated.</p>
|
|
*/
|
|
inline FieldLevelEncryptionProfileSummary& WithLastModifiedTime(const Aws::Utils::DateTime& value) { SetLastModifiedTime(value); return *this;}
|
|
|
|
/**
|
|
* <p>The time when the the field-level encryption profile summary was last
|
|
* updated.</p>
|
|
*/
|
|
inline FieldLevelEncryptionProfileSummary& WithLastModifiedTime(Aws::Utils::DateTime&& value) { SetLastModifiedTime(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>Name for the field-level encryption profile summary.</p>
|
|
*/
|
|
inline const Aws::String& GetName() const{ return m_name; }
|
|
|
|
/**
|
|
* <p>Name for the field-level encryption profile summary.</p>
|
|
*/
|
|
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>Name for the field-level encryption profile summary.</p>
|
|
*/
|
|
inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
|
|
|
|
/**
|
|
* <p>Name for the field-level encryption profile summary.</p>
|
|
*/
|
|
inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
|
|
|
|
/**
|
|
* <p>Name for the field-level encryption profile summary.</p>
|
|
*/
|
|
inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
|
|
|
|
/**
|
|
* <p>Name for the field-level encryption profile summary.</p>
|
|
*/
|
|
inline FieldLevelEncryptionProfileSummary& WithName(const Aws::String& value) { SetName(value); return *this;}
|
|
|
|
/**
|
|
* <p>Name for the field-level encryption profile summary.</p>
|
|
*/
|
|
inline FieldLevelEncryptionProfileSummary& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>Name for the field-level encryption profile summary.</p>
|
|
*/
|
|
inline FieldLevelEncryptionProfileSummary& WithName(const char* value) { SetName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>A complex data type of encryption entities for the field-level encryption
|
|
* profile that include the public key ID, provider, and field patterns for
|
|
* specifying which fields to encrypt with this key.</p>
|
|
*/
|
|
inline const EncryptionEntities& GetEncryptionEntities() const{ return m_encryptionEntities; }
|
|
|
|
/**
|
|
* <p>A complex data type of encryption entities for the field-level encryption
|
|
* profile that include the public key ID, provider, and field patterns for
|
|
* specifying which fields to encrypt with this key.</p>
|
|
*/
|
|
inline bool EncryptionEntitiesHasBeenSet() const { return m_encryptionEntitiesHasBeenSet; }
|
|
|
|
/**
|
|
* <p>A complex data type of encryption entities for the field-level encryption
|
|
* profile that include the public key ID, provider, and field patterns for
|
|
* specifying which fields to encrypt with this key.</p>
|
|
*/
|
|
inline void SetEncryptionEntities(const EncryptionEntities& value) { m_encryptionEntitiesHasBeenSet = true; m_encryptionEntities = value; }
|
|
|
|
/**
|
|
* <p>A complex data type of encryption entities for the field-level encryption
|
|
* profile that include the public key ID, provider, and field patterns for
|
|
* specifying which fields to encrypt with this key.</p>
|
|
*/
|
|
inline void SetEncryptionEntities(EncryptionEntities&& value) { m_encryptionEntitiesHasBeenSet = true; m_encryptionEntities = std::move(value); }
|
|
|
|
/**
|
|
* <p>A complex data type of encryption entities for the field-level encryption
|
|
* profile that include the public key ID, provider, and field patterns for
|
|
* specifying which fields to encrypt with this key.</p>
|
|
*/
|
|
inline FieldLevelEncryptionProfileSummary& WithEncryptionEntities(const EncryptionEntities& value) { SetEncryptionEntities(value); return *this;}
|
|
|
|
/**
|
|
* <p>A complex data type of encryption entities for the field-level encryption
|
|
* profile that include the public key ID, provider, and field patterns for
|
|
* specifying which fields to encrypt with this key.</p>
|
|
*/
|
|
inline FieldLevelEncryptionProfileSummary& WithEncryptionEntities(EncryptionEntities&& value) { SetEncryptionEntities(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>An optional comment for the field-level encryption profile summary.</p>
|
|
*/
|
|
inline const Aws::String& GetComment() const{ return m_comment; }
|
|
|
|
/**
|
|
* <p>An optional comment for the field-level encryption profile summary.</p>
|
|
*/
|
|
inline bool CommentHasBeenSet() const { return m_commentHasBeenSet; }
|
|
|
|
/**
|
|
* <p>An optional comment for the field-level encryption profile summary.</p>
|
|
*/
|
|
inline void SetComment(const Aws::String& value) { m_commentHasBeenSet = true; m_comment = value; }
|
|
|
|
/**
|
|
* <p>An optional comment for the field-level encryption profile summary.</p>
|
|
*/
|
|
inline void SetComment(Aws::String&& value) { m_commentHasBeenSet = true; m_comment = std::move(value); }
|
|
|
|
/**
|
|
* <p>An optional comment for the field-level encryption profile summary.</p>
|
|
*/
|
|
inline void SetComment(const char* value) { m_commentHasBeenSet = true; m_comment.assign(value); }
|
|
|
|
/**
|
|
* <p>An optional comment for the field-level encryption profile summary.</p>
|
|
*/
|
|
inline FieldLevelEncryptionProfileSummary& WithComment(const Aws::String& value) { SetComment(value); return *this;}
|
|
|
|
/**
|
|
* <p>An optional comment for the field-level encryption profile summary.</p>
|
|
*/
|
|
inline FieldLevelEncryptionProfileSummary& WithComment(Aws::String&& value) { SetComment(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>An optional comment for the field-level encryption profile summary.</p>
|
|
*/
|
|
inline FieldLevelEncryptionProfileSummary& WithComment(const char* value) { SetComment(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_id;
|
|
bool m_idHasBeenSet;
|
|
|
|
Aws::Utils::DateTime m_lastModifiedTime;
|
|
bool m_lastModifiedTimeHasBeenSet;
|
|
|
|
Aws::String m_name;
|
|
bool m_nameHasBeenSet;
|
|
|
|
EncryptionEntities m_encryptionEntities;
|
|
bool m_encryptionEntitiesHasBeenSet;
|
|
|
|
Aws::String m_comment;
|
|
bool m_commentHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace CloudFront
|
|
} // namespace Aws
|