/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Provides information about an S3 object that Amazon Macie selected for
* analysis while performing automated sensitive data discovery for an S3 bucket,
* and the status and results of the analysis. This information is available only
* if automated sensitive data discovery is currently enabled for your
* account.See Also:
AWS
* API Reference
The Amazon Resource Name (ARN) of the object.
*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *The Amazon Resource Name (ARN) of the object.
*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the object.
*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *The Amazon Resource Name (ARN) of the object.
*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *The Amazon Resource Name (ARN) of the object.
*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *The Amazon Resource Name (ARN) of the object.
*/ inline ResourceProfileArtifact& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the object.
*/ inline ResourceProfileArtifact& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the object.
*/ inline ResourceProfileArtifact& WithArn(const char* value) { SetArn(value); return *this;} /** *The status of the analysis. Possible values are:
COMPLETE - * Amazon Macie successfully completed its analysis of the object.
PARTIAL - Macie analyzed only a subset of data in the object. For * example, the object is an archive file that contains files in an unsupported * format.
SKIPPED - Macie wasn't able to analyze the object. For * example, the object is a malformed file.
The status of the analysis. Possible values are:
COMPLETE - * Amazon Macie successfully completed its analysis of the object.
PARTIAL - Macie analyzed only a subset of data in the object. For * example, the object is an archive file that contains files in an unsupported * format.
SKIPPED - Macie wasn't able to analyze the object. For * example, the object is a malformed file.
The status of the analysis. Possible values are:
COMPLETE - * Amazon Macie successfully completed its analysis of the object.
PARTIAL - Macie analyzed only a subset of data in the object. For * example, the object is an archive file that contains files in an unsupported * format.
SKIPPED - Macie wasn't able to analyze the object. For * example, the object is a malformed file.
The status of the analysis. Possible values are:
COMPLETE - * Amazon Macie successfully completed its analysis of the object.
PARTIAL - Macie analyzed only a subset of data in the object. For * example, the object is an archive file that contains files in an unsupported * format.
SKIPPED - Macie wasn't able to analyze the object. For * example, the object is a malformed file.
The status of the analysis. Possible values are:
COMPLETE - * Amazon Macie successfully completed its analysis of the object.
PARTIAL - Macie analyzed only a subset of data in the object. For * example, the object is an archive file that contains files in an unsupported * format.
SKIPPED - Macie wasn't able to analyze the object. For * example, the object is a malformed file.
The status of the analysis. Possible values are:
COMPLETE - * Amazon Macie successfully completed its analysis of the object.
PARTIAL - Macie analyzed only a subset of data in the object. For * example, the object is an archive file that contains files in an unsupported * format.
SKIPPED - Macie wasn't able to analyze the object. For * example, the object is a malformed file.
The status of the analysis. Possible values are:
COMPLETE - * Amazon Macie successfully completed its analysis of the object.
PARTIAL - Macie analyzed only a subset of data in the object. For * example, the object is an archive file that contains files in an unsupported * format.
SKIPPED - Macie wasn't able to analyze the object. For * example, the object is a malformed file.
The status of the analysis. Possible values are:
COMPLETE - * Amazon Macie successfully completed its analysis of the object.
PARTIAL - Macie analyzed only a subset of data in the object. For * example, the object is an archive file that contains files in an unsupported * format.
SKIPPED - Macie wasn't able to analyze the object. For * example, the object is a malformed file.
Specifies whether Amazon Macie found sensitive data in the object.
*/ inline bool GetSensitive() const{ return m_sensitive; } /** *Specifies whether Amazon Macie found sensitive data in the object.
*/ inline bool SensitiveHasBeenSet() const { return m_sensitiveHasBeenSet; } /** *Specifies whether Amazon Macie found sensitive data in the object.
*/ inline void SetSensitive(bool value) { m_sensitiveHasBeenSet = true; m_sensitive = value; } /** *Specifies whether Amazon Macie found sensitive data in the object.
*/ inline ResourceProfileArtifact& WithSensitive(bool value) { SetSensitive(value); return *this;} private: Aws::String m_arn; bool m_arnHasBeenSet = false; Aws::String m_classificationResultStatus; bool m_classificationResultStatusHasBeenSet = false; bool m_sensitive; bool m_sensitiveHasBeenSet = false; }; } // namespace Model } // namespace Macie2 } // namespace Aws