/** * 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 NetworkFirewall { namespace Model { /** */ class DeleteTLSInspectionConfigurationRequest : public NetworkFirewallRequest { public: AWS_NETWORKFIREWALL_API DeleteTLSInspectionConfigurationRequest(); // 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 "DeleteTLSInspectionConfiguration"; } AWS_NETWORKFIREWALL_API Aws::String SerializePayload() const override; AWS_NETWORKFIREWALL_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The Amazon Resource Name (ARN) of the TLS inspection configuration.

*

You must specify the ARN or the name, and you can specify both.

*/ inline const Aws::String& GetTLSInspectionConfigurationArn() const{ return m_tLSInspectionConfigurationArn; } /** *

The Amazon Resource Name (ARN) of the TLS inspection configuration.

*

You must specify the ARN or the name, and you can specify both.

*/ inline bool TLSInspectionConfigurationArnHasBeenSet() const { return m_tLSInspectionConfigurationArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the TLS inspection configuration.

*

You must specify the ARN or the name, and you can specify both.

*/ inline void SetTLSInspectionConfigurationArn(const Aws::String& value) { m_tLSInspectionConfigurationArnHasBeenSet = true; m_tLSInspectionConfigurationArn = value; } /** *

The Amazon Resource Name (ARN) of the TLS inspection configuration.

*

You must specify the ARN or the name, and you can specify both.

*/ inline void SetTLSInspectionConfigurationArn(Aws::String&& value) { m_tLSInspectionConfigurationArnHasBeenSet = true; m_tLSInspectionConfigurationArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the TLS inspection configuration.

*

You must specify the ARN or the name, and you can specify both.

*/ inline void SetTLSInspectionConfigurationArn(const char* value) { m_tLSInspectionConfigurationArnHasBeenSet = true; m_tLSInspectionConfigurationArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the TLS inspection configuration.

*

You must specify the ARN or the name, and you can specify both.

*/ inline DeleteTLSInspectionConfigurationRequest& WithTLSInspectionConfigurationArn(const Aws::String& value) { SetTLSInspectionConfigurationArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the TLS inspection configuration.

*

You must specify the ARN or the name, and you can specify both.

*/ inline DeleteTLSInspectionConfigurationRequest& WithTLSInspectionConfigurationArn(Aws::String&& value) { SetTLSInspectionConfigurationArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the TLS inspection configuration.

*

You must specify the ARN or the name, and you can specify both.

*/ inline DeleteTLSInspectionConfigurationRequest& WithTLSInspectionConfigurationArn(const char* value) { SetTLSInspectionConfigurationArn(value); return *this;} /** *

The descriptive name of the TLS inspection configuration. You can't change * the name of a TLS inspection configuration after you create it.

You must * specify the ARN or the name, and you can specify both.

*/ inline const Aws::String& GetTLSInspectionConfigurationName() const{ return m_tLSInspectionConfigurationName; } /** *

The descriptive name of the TLS inspection configuration. You can't change * the name of a TLS inspection configuration after you create it.

You must * specify the ARN or the name, and you can specify both.

*/ inline bool TLSInspectionConfigurationNameHasBeenSet() const { return m_tLSInspectionConfigurationNameHasBeenSet; } /** *

The descriptive name of the TLS inspection configuration. You can't change * the name of a TLS inspection configuration after you create it.

You must * specify the ARN or the name, and you can specify both.

*/ inline void SetTLSInspectionConfigurationName(const Aws::String& value) { m_tLSInspectionConfigurationNameHasBeenSet = true; m_tLSInspectionConfigurationName = value; } /** *

The descriptive name of the TLS inspection configuration. You can't change * the name of a TLS inspection configuration after you create it.

You must * specify the ARN or the name, and you can specify both.

*/ inline void SetTLSInspectionConfigurationName(Aws::String&& value) { m_tLSInspectionConfigurationNameHasBeenSet = true; m_tLSInspectionConfigurationName = std::move(value); } /** *

The descriptive name of the TLS inspection configuration. You can't change * the name of a TLS inspection configuration after you create it.

You must * specify the ARN or the name, and you can specify both.

*/ inline void SetTLSInspectionConfigurationName(const char* value) { m_tLSInspectionConfigurationNameHasBeenSet = true; m_tLSInspectionConfigurationName.assign(value); } /** *

The descriptive name of the TLS inspection configuration. You can't change * the name of a TLS inspection configuration after you create it.

You must * specify the ARN or the name, and you can specify both.

*/ inline DeleteTLSInspectionConfigurationRequest& WithTLSInspectionConfigurationName(const Aws::String& value) { SetTLSInspectionConfigurationName(value); return *this;} /** *

The descriptive name of the TLS inspection configuration. You can't change * the name of a TLS inspection configuration after you create it.

You must * specify the ARN or the name, and you can specify both.

*/ inline DeleteTLSInspectionConfigurationRequest& WithTLSInspectionConfigurationName(Aws::String&& value) { SetTLSInspectionConfigurationName(std::move(value)); return *this;} /** *

The descriptive name of the TLS inspection configuration. You can't change * the name of a TLS inspection configuration after you create it.

You must * specify the ARN or the name, and you can specify both.

*/ inline DeleteTLSInspectionConfigurationRequest& WithTLSInspectionConfigurationName(const char* value) { SetTLSInspectionConfigurationName(value); return *this;} private: Aws::String m_tLSInspectionConfigurationArn; bool m_tLSInspectionConfigurationArnHasBeenSet = false; Aws::String m_tLSInspectionConfigurationName; bool m_tLSInspectionConfigurationNameHasBeenSet = false; }; } // namespace Model } // namespace NetworkFirewall } // namespace Aws