137 lines
4.1 KiB
C++
137 lines
4.1 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/accessanalyzer/AccessAnalyzer_EXPORTS.h>
|
|
#include <aws/accessanalyzer/AccessAnalyzerRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Http
|
|
{
|
|
class URI;
|
|
} //namespace Http
|
|
namespace AccessAnalyzer
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>Retrieves a finding.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/accessanalyzer-2019-11-01/GetFindingRequest">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_ACCESSANALYZER_API GetFindingRequest : public AccessAnalyzerRequest
|
|
{
|
|
public:
|
|
GetFindingRequest();
|
|
|
|
// Service request name is the Operation name which will send this request out,
|
|
// each operation should has unique request name, so that we can get operation's name from this request.
|
|
// Note: this is not true for response, multiple operations may have the same response name,
|
|
// so we can not get operation's name from response.
|
|
inline virtual const char* GetServiceRequestName() const override { return "GetFinding"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
void AddQueryStringParameters(Aws::Http::URI& uri) const override;
|
|
|
|
|
|
/**
|
|
* <p>The ARN of the analyzer that generated the finding.</p>
|
|
*/
|
|
inline const Aws::String& GetAnalyzerArn() const{ return m_analyzerArn; }
|
|
|
|
/**
|
|
* <p>The ARN of the analyzer that generated the finding.</p>
|
|
*/
|
|
inline bool AnalyzerArnHasBeenSet() const { return m_analyzerArnHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The ARN of the analyzer that generated the finding.</p>
|
|
*/
|
|
inline void SetAnalyzerArn(const Aws::String& value) { m_analyzerArnHasBeenSet = true; m_analyzerArn = value; }
|
|
|
|
/**
|
|
* <p>The ARN of the analyzer that generated the finding.</p>
|
|
*/
|
|
inline void SetAnalyzerArn(Aws::String&& value) { m_analyzerArnHasBeenSet = true; m_analyzerArn = std::move(value); }
|
|
|
|
/**
|
|
* <p>The ARN of the analyzer that generated the finding.</p>
|
|
*/
|
|
inline void SetAnalyzerArn(const char* value) { m_analyzerArnHasBeenSet = true; m_analyzerArn.assign(value); }
|
|
|
|
/**
|
|
* <p>The ARN of the analyzer that generated the finding.</p>
|
|
*/
|
|
inline GetFindingRequest& WithAnalyzerArn(const Aws::String& value) { SetAnalyzerArn(value); return *this;}
|
|
|
|
/**
|
|
* <p>The ARN of the analyzer that generated the finding.</p>
|
|
*/
|
|
inline GetFindingRequest& WithAnalyzerArn(Aws::String&& value) { SetAnalyzerArn(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The ARN of the analyzer that generated the finding.</p>
|
|
*/
|
|
inline GetFindingRequest& WithAnalyzerArn(const char* value) { SetAnalyzerArn(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The ID of the finding to retrieve.</p>
|
|
*/
|
|
inline const Aws::String& GetId() const{ return m_id; }
|
|
|
|
/**
|
|
* <p>The ID of the finding to retrieve.</p>
|
|
*/
|
|
inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The ID of the finding to retrieve.</p>
|
|
*/
|
|
inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; }
|
|
|
|
/**
|
|
* <p>The ID of the finding to retrieve.</p>
|
|
*/
|
|
inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); }
|
|
|
|
/**
|
|
* <p>The ID of the finding to retrieve.</p>
|
|
*/
|
|
inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); }
|
|
|
|
/**
|
|
* <p>The ID of the finding to retrieve.</p>
|
|
*/
|
|
inline GetFindingRequest& WithId(const Aws::String& value) { SetId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the finding to retrieve.</p>
|
|
*/
|
|
inline GetFindingRequest& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the finding to retrieve.</p>
|
|
*/
|
|
inline GetFindingRequest& WithId(const char* value) { SetId(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_analyzerArn;
|
|
bool m_analyzerArnHasBeenSet;
|
|
|
|
Aws::String m_id;
|
|
bool m_idHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace AccessAnalyzer
|
|
} // namespace Aws
|