/** * 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 AuditManager { namespace Model { /** */ class DeleteAssessmentFrameworkRequest : public AuditManagerRequest { public: AWS_AUDITMANAGER_API DeleteAssessmentFrameworkRequest(); // 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 "DeleteAssessmentFramework"; } AWS_AUDITMANAGER_API Aws::String SerializePayload() const override; /** *

The identifier for the custom framework.

*/ inline const Aws::String& GetFrameworkId() const{ return m_frameworkId; } /** *

The identifier for the custom framework.

*/ inline bool FrameworkIdHasBeenSet() const { return m_frameworkIdHasBeenSet; } /** *

The identifier for the custom framework.

*/ inline void SetFrameworkId(const Aws::String& value) { m_frameworkIdHasBeenSet = true; m_frameworkId = value; } /** *

The identifier for the custom framework.

*/ inline void SetFrameworkId(Aws::String&& value) { m_frameworkIdHasBeenSet = true; m_frameworkId = std::move(value); } /** *

The identifier for the custom framework.

*/ inline void SetFrameworkId(const char* value) { m_frameworkIdHasBeenSet = true; m_frameworkId.assign(value); } /** *

The identifier for the custom framework.

*/ inline DeleteAssessmentFrameworkRequest& WithFrameworkId(const Aws::String& value) { SetFrameworkId(value); return *this;} /** *

The identifier for the custom framework.

*/ inline DeleteAssessmentFrameworkRequest& WithFrameworkId(Aws::String&& value) { SetFrameworkId(std::move(value)); return *this;} /** *

The identifier for the custom framework.

*/ inline DeleteAssessmentFrameworkRequest& WithFrameworkId(const char* value) { SetFrameworkId(value); return *this;} private: Aws::String m_frameworkId; bool m_frameworkIdHasBeenSet = false; }; } // namespace Model } // namespace AuditManager } // namespace Aws