/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Http { class URI; } //namespace Http namespace AccessAnalyzer { namespace Model { /** */ class GetAccessPreviewRequest : public AccessAnalyzerRequest { public: AWS_ACCESSANALYZER_API GetAccessPreviewRequest(); // 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 "GetAccessPreview"; } AWS_ACCESSANALYZER_API Aws::String SerializePayload() const override; AWS_ACCESSANALYZER_API void AddQueryStringParameters(Aws::Http::URI& uri) const override; /** *

The unique ID for the access preview.

*/ inline const Aws::String& GetAccessPreviewId() const{ return m_accessPreviewId; } /** *

The unique ID for the access preview.

*/ inline bool AccessPreviewIdHasBeenSet() const { return m_accessPreviewIdHasBeenSet; } /** *

The unique ID for the access preview.

*/ inline void SetAccessPreviewId(const Aws::String& value) { m_accessPreviewIdHasBeenSet = true; m_accessPreviewId = value; } /** *

The unique ID for the access preview.

*/ inline void SetAccessPreviewId(Aws::String&& value) { m_accessPreviewIdHasBeenSet = true; m_accessPreviewId = std::move(value); } /** *

The unique ID for the access preview.

*/ inline void SetAccessPreviewId(const char* value) { m_accessPreviewIdHasBeenSet = true; m_accessPreviewId.assign(value); } /** *

The unique ID for the access preview.

*/ inline GetAccessPreviewRequest& WithAccessPreviewId(const Aws::String& value) { SetAccessPreviewId(value); return *this;} /** *

The unique ID for the access preview.

*/ inline GetAccessPreviewRequest& WithAccessPreviewId(Aws::String&& value) { SetAccessPreviewId(std::move(value)); return *this;} /** *

The unique ID for the access preview.

*/ inline GetAccessPreviewRequest& WithAccessPreviewId(const char* value) { SetAccessPreviewId(value); return *this;} /** *

The ARN * of the analyzer used to generate the access preview.

*/ inline const Aws::String& GetAnalyzerArn() const{ return m_analyzerArn; } /** *

The ARN * of the analyzer used to generate the access preview.

*/ inline bool AnalyzerArnHasBeenSet() const { return m_analyzerArnHasBeenSet; } /** *

The ARN * of the analyzer used to generate the access preview.

*/ inline void SetAnalyzerArn(const Aws::String& value) { m_analyzerArnHasBeenSet = true; m_analyzerArn = value; } /** *

The ARN * of the analyzer used to generate the access preview.

*/ inline void SetAnalyzerArn(Aws::String&& value) { m_analyzerArnHasBeenSet = true; m_analyzerArn = std::move(value); } /** *

The ARN * of the analyzer used to generate the access preview.

*/ inline void SetAnalyzerArn(const char* value) { m_analyzerArnHasBeenSet = true; m_analyzerArn.assign(value); } /** *

The ARN * of the analyzer used to generate the access preview.

*/ inline GetAccessPreviewRequest& WithAnalyzerArn(const Aws::String& value) { SetAnalyzerArn(value); return *this;} /** *

The ARN * of the analyzer used to generate the access preview.

*/ inline GetAccessPreviewRequest& WithAnalyzerArn(Aws::String&& value) { SetAnalyzerArn(std::move(value)); return *this;} /** *

The ARN * of the analyzer used to generate the access preview.

*/ inline GetAccessPreviewRequest& WithAnalyzerArn(const char* value) { SetAnalyzerArn(value); return *this;} private: Aws::String m_accessPreviewId; bool m_accessPreviewIdHasBeenSet = false; Aws::String m_analyzerArn; bool m_analyzerArnHasBeenSet = false; }; } // namespace Model } // namespace AccessAnalyzer } // namespace Aws