/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Retrieves a finding.See Also:
AWS
* API Reference
The ARN * of the analyzer that generated the finding.
*/ inline const Aws::String& GetAnalyzerArn() const{ return m_analyzerArn; } /** *The ARN * of the analyzer that generated the finding.
*/ inline bool AnalyzerArnHasBeenSet() const { return m_analyzerArnHasBeenSet; } /** *The ARN * of the analyzer that generated the finding.
*/ inline void SetAnalyzerArn(const Aws::String& value) { m_analyzerArnHasBeenSet = true; m_analyzerArn = value; } /** *The ARN * of the analyzer that generated the finding.
*/ inline void SetAnalyzerArn(Aws::String&& value) { m_analyzerArnHasBeenSet = true; m_analyzerArn = std::move(value); } /** *The ARN * of the analyzer that generated the finding.
*/ inline void SetAnalyzerArn(const char* value) { m_analyzerArnHasBeenSet = true; m_analyzerArn.assign(value); } /** *The ARN * of the analyzer that generated the finding.
*/ inline GetFindingRequest& WithAnalyzerArn(const Aws::String& value) { SetAnalyzerArn(value); return *this;} /** *The ARN * of the analyzer that generated the finding.
*/ inline GetFindingRequest& WithAnalyzerArn(Aws::String&& value) { SetAnalyzerArn(std::move(value)); return *this;} /** *The ARN * of the analyzer that generated the finding.
*/ inline GetFindingRequest& WithAnalyzerArn(const char* value) { SetAnalyzerArn(value); return *this;} /** *The ID of the finding to retrieve.
*/ inline const Aws::String& GetId() const{ return m_id; } /** *The ID of the finding to retrieve.
*/ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** *The ID of the finding to retrieve.
*/ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** *The ID of the finding to retrieve.
*/ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** *The ID of the finding to retrieve.
*/ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** *The ID of the finding to retrieve.
*/ inline GetFindingRequest& WithId(const Aws::String& value) { SetId(value); return *this;} /** *The ID of the finding to retrieve.
*/ inline GetFindingRequest& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *The ID of the finding to retrieve.
*/ inline GetFindingRequest& WithId(const char* value) { SetId(value); return *this;} private: Aws::String m_analyzerArn; bool m_analyzerArnHasBeenSet = false; Aws::String m_id; bool m_idHasBeenSet = false; }; } // namespace Model } // namespace AccessAnalyzer } // namespace Aws