/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace ServerlessApplicationRepository { namespace Model { /** */ class PutApplicationPolicyRequest : public ServerlessApplicationRepositoryRequest { public: AWS_SERVERLESSAPPLICATIONREPOSITORY_API PutApplicationPolicyRequest(); // 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 "PutApplicationPolicy"; } AWS_SERVERLESSAPPLICATIONREPOSITORY_API Aws::String SerializePayload() const override; /** *

The Amazon Resource Name (ARN) of the application.

*/ inline const Aws::String& GetApplicationId() const{ return m_applicationId; } /** *

The Amazon Resource Name (ARN) of the application.

*/ inline bool ApplicationIdHasBeenSet() const { return m_applicationIdHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the application.

*/ inline void SetApplicationId(const Aws::String& value) { m_applicationIdHasBeenSet = true; m_applicationId = value; } /** *

The Amazon Resource Name (ARN) of the application.

*/ inline void SetApplicationId(Aws::String&& value) { m_applicationIdHasBeenSet = true; m_applicationId = std::move(value); } /** *

The Amazon Resource Name (ARN) of the application.

*/ inline void SetApplicationId(const char* value) { m_applicationIdHasBeenSet = true; m_applicationId.assign(value); } /** *

The Amazon Resource Name (ARN) of the application.

*/ inline PutApplicationPolicyRequest& WithApplicationId(const Aws::String& value) { SetApplicationId(value); return *this;} /** *

The Amazon Resource Name (ARN) of the application.

*/ inline PutApplicationPolicyRequest& WithApplicationId(Aws::String&& value) { SetApplicationId(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the application.

*/ inline PutApplicationPolicyRequest& WithApplicationId(const char* value) { SetApplicationId(value); return *this;} /** *

An array of policy statements applied to the application.

*/ inline const Aws::Vector& GetStatements() const{ return m_statements; } /** *

An array of policy statements applied to the application.

*/ inline bool StatementsHasBeenSet() const { return m_statementsHasBeenSet; } /** *

An array of policy statements applied to the application.

*/ inline void SetStatements(const Aws::Vector& value) { m_statementsHasBeenSet = true; m_statements = value; } /** *

An array of policy statements applied to the application.

*/ inline void SetStatements(Aws::Vector&& value) { m_statementsHasBeenSet = true; m_statements = std::move(value); } /** *

An array of policy statements applied to the application.

*/ inline PutApplicationPolicyRequest& WithStatements(const Aws::Vector& value) { SetStatements(value); return *this;} /** *

An array of policy statements applied to the application.

*/ inline PutApplicationPolicyRequest& WithStatements(Aws::Vector&& value) { SetStatements(std::move(value)); return *this;} /** *

An array of policy statements applied to the application.

*/ inline PutApplicationPolicyRequest& AddStatements(const ApplicationPolicyStatement& value) { m_statementsHasBeenSet = true; m_statements.push_back(value); return *this; } /** *

An array of policy statements applied to the application.

*/ inline PutApplicationPolicyRequest& AddStatements(ApplicationPolicyStatement&& value) { m_statementsHasBeenSet = true; m_statements.push_back(std::move(value)); return *this; } private: Aws::String m_applicationId; bool m_applicationIdHasBeenSet = false; Aws::Vector m_statements; bool m_statementsHasBeenSet = false; }; } // namespace Model } // namespace ServerlessApplicationRepository } // namespace Aws