/** * 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 Organizations { namespace Model { /** */ class DisableAWSServiceAccessRequest : public OrganizationsRequest { public: AWS_ORGANIZATIONS_API DisableAWSServiceAccessRequest(); // 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 "DisableAWSServiceAccess"; } AWS_ORGANIZATIONS_API Aws::String SerializePayload() const override; AWS_ORGANIZATIONS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The service principal name of the Amazon Web Services service for which you * want to disable integration with your organization. This is typically in the * form of a URL, such as * service-abbreviation.amazonaws.com.

*/ inline const Aws::String& GetServicePrincipal() const{ return m_servicePrincipal; } /** *

The service principal name of the Amazon Web Services service for which you * want to disable integration with your organization. This is typically in the * form of a URL, such as * service-abbreviation.amazonaws.com.

*/ inline bool ServicePrincipalHasBeenSet() const { return m_servicePrincipalHasBeenSet; } /** *

The service principal name of the Amazon Web Services service for which you * want to disable integration with your organization. This is typically in the * form of a URL, such as * service-abbreviation.amazonaws.com.

*/ inline void SetServicePrincipal(const Aws::String& value) { m_servicePrincipalHasBeenSet = true; m_servicePrincipal = value; } /** *

The service principal name of the Amazon Web Services service for which you * want to disable integration with your organization. This is typically in the * form of a URL, such as * service-abbreviation.amazonaws.com.

*/ inline void SetServicePrincipal(Aws::String&& value) { m_servicePrincipalHasBeenSet = true; m_servicePrincipal = std::move(value); } /** *

The service principal name of the Amazon Web Services service for which you * want to disable integration with your organization. This is typically in the * form of a URL, such as * service-abbreviation.amazonaws.com.

*/ inline void SetServicePrincipal(const char* value) { m_servicePrincipalHasBeenSet = true; m_servicePrincipal.assign(value); } /** *

The service principal name of the Amazon Web Services service for which you * want to disable integration with your organization. This is typically in the * form of a URL, such as * service-abbreviation.amazonaws.com.

*/ inline DisableAWSServiceAccessRequest& WithServicePrincipal(const Aws::String& value) { SetServicePrincipal(value); return *this;} /** *

The service principal name of the Amazon Web Services service for which you * want to disable integration with your organization. This is typically in the * form of a URL, such as * service-abbreviation.amazonaws.com.

*/ inline DisableAWSServiceAccessRequest& WithServicePrincipal(Aws::String&& value) { SetServicePrincipal(std::move(value)); return *this;} /** *

The service principal name of the Amazon Web Services service for which you * want to disable integration with your organization. This is typically in the * form of a URL, such as * service-abbreviation.amazonaws.com.

*/ inline DisableAWSServiceAccessRequest& WithServicePrincipal(const char* value) { SetServicePrincipal(value); return *this;} private: Aws::String m_servicePrincipal; bool m_servicePrincipalHasBeenSet = false; }; } // namespace Model } // namespace Organizations } // namespace Aws