/** * 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 DirectConnect { namespace Model { /** */ class CreateInterconnectRequest : public DirectConnectRequest { public: AWS_DIRECTCONNECT_API CreateInterconnectRequest(); // 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 "CreateInterconnect"; } AWS_DIRECTCONNECT_API Aws::String SerializePayload() const override; AWS_DIRECTCONNECT_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name of the interconnect.

*/ inline const Aws::String& GetInterconnectName() const{ return m_interconnectName; } /** *

The name of the interconnect.

*/ inline bool InterconnectNameHasBeenSet() const { return m_interconnectNameHasBeenSet; } /** *

The name of the interconnect.

*/ inline void SetInterconnectName(const Aws::String& value) { m_interconnectNameHasBeenSet = true; m_interconnectName = value; } /** *

The name of the interconnect.

*/ inline void SetInterconnectName(Aws::String&& value) { m_interconnectNameHasBeenSet = true; m_interconnectName = std::move(value); } /** *

The name of the interconnect.

*/ inline void SetInterconnectName(const char* value) { m_interconnectNameHasBeenSet = true; m_interconnectName.assign(value); } /** *

The name of the interconnect.

*/ inline CreateInterconnectRequest& WithInterconnectName(const Aws::String& value) { SetInterconnectName(value); return *this;} /** *

The name of the interconnect.

*/ inline CreateInterconnectRequest& WithInterconnectName(Aws::String&& value) { SetInterconnectName(std::move(value)); return *this;} /** *

The name of the interconnect.

*/ inline CreateInterconnectRequest& WithInterconnectName(const char* value) { SetInterconnectName(value); return *this;} /** *

The port bandwidth, in Gbps. The possible values are 1 and 10.

*/ inline const Aws::String& GetBandwidth() const{ return m_bandwidth; } /** *

The port bandwidth, in Gbps. The possible values are 1 and 10.

*/ inline bool BandwidthHasBeenSet() const { return m_bandwidthHasBeenSet; } /** *

The port bandwidth, in Gbps. The possible values are 1 and 10.

*/ inline void SetBandwidth(const Aws::String& value) { m_bandwidthHasBeenSet = true; m_bandwidth = value; } /** *

The port bandwidth, in Gbps. The possible values are 1 and 10.

*/ inline void SetBandwidth(Aws::String&& value) { m_bandwidthHasBeenSet = true; m_bandwidth = std::move(value); } /** *

The port bandwidth, in Gbps. The possible values are 1 and 10.

*/ inline void SetBandwidth(const char* value) { m_bandwidthHasBeenSet = true; m_bandwidth.assign(value); } /** *

The port bandwidth, in Gbps. The possible values are 1 and 10.

*/ inline CreateInterconnectRequest& WithBandwidth(const Aws::String& value) { SetBandwidth(value); return *this;} /** *

The port bandwidth, in Gbps. The possible values are 1 and 10.

*/ inline CreateInterconnectRequest& WithBandwidth(Aws::String&& value) { SetBandwidth(std::move(value)); return *this;} /** *

The port bandwidth, in Gbps. The possible values are 1 and 10.

*/ inline CreateInterconnectRequest& WithBandwidth(const char* value) { SetBandwidth(value); return *this;} /** *

The location of the interconnect.

*/ inline const Aws::String& GetLocation() const{ return m_location; } /** *

The location of the interconnect.

*/ inline bool LocationHasBeenSet() const { return m_locationHasBeenSet; } /** *

The location of the interconnect.

*/ inline void SetLocation(const Aws::String& value) { m_locationHasBeenSet = true; m_location = value; } /** *

The location of the interconnect.

*/ inline void SetLocation(Aws::String&& value) { m_locationHasBeenSet = true; m_location = std::move(value); } /** *

The location of the interconnect.

*/ inline void SetLocation(const char* value) { m_locationHasBeenSet = true; m_location.assign(value); } /** *

The location of the interconnect.

*/ inline CreateInterconnectRequest& WithLocation(const Aws::String& value) { SetLocation(value); return *this;} /** *

The location of the interconnect.

*/ inline CreateInterconnectRequest& WithLocation(Aws::String&& value) { SetLocation(std::move(value)); return *this;} /** *

The location of the interconnect.

*/ inline CreateInterconnectRequest& WithLocation(const char* value) { SetLocation(value); return *this;} /** *

The ID of the LAG.

*/ inline const Aws::String& GetLagId() const{ return m_lagId; } /** *

The ID of the LAG.

*/ inline bool LagIdHasBeenSet() const { return m_lagIdHasBeenSet; } /** *

The ID of the LAG.

*/ inline void SetLagId(const Aws::String& value) { m_lagIdHasBeenSet = true; m_lagId = value; } /** *

The ID of the LAG.

*/ inline void SetLagId(Aws::String&& value) { m_lagIdHasBeenSet = true; m_lagId = std::move(value); } /** *

The ID of the LAG.

*/ inline void SetLagId(const char* value) { m_lagIdHasBeenSet = true; m_lagId.assign(value); } /** *

The ID of the LAG.

*/ inline CreateInterconnectRequest& WithLagId(const Aws::String& value) { SetLagId(value); return *this;} /** *

The ID of the LAG.

*/ inline CreateInterconnectRequest& WithLagId(Aws::String&& value) { SetLagId(std::move(value)); return *this;} /** *

The ID of the LAG.

*/ inline CreateInterconnectRequest& WithLagId(const char* value) { SetLagId(value); return *this;} /** *

The tags to associate with the interconnect.

*/ inline const Aws::Vector& GetTags() const{ return m_tags; } /** *

The tags to associate with the interconnect.

*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *

The tags to associate with the interconnect.

*/ inline void SetTags(const Aws::Vector& value) { m_tagsHasBeenSet = true; m_tags = value; } /** *

The tags to associate with the interconnect.

*/ inline void SetTags(Aws::Vector&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); } /** *

The tags to associate with the interconnect.

*/ inline CreateInterconnectRequest& WithTags(const Aws::Vector& value) { SetTags(value); return *this;} /** *

The tags to associate with the interconnect.

*/ inline CreateInterconnectRequest& WithTags(Aws::Vector&& value) { SetTags(std::move(value)); return *this;} /** *

The tags to associate with the interconnect.

*/ inline CreateInterconnectRequest& AddTags(const Tag& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; } /** *

The tags to associate with the interconnect.

*/ inline CreateInterconnectRequest& AddTags(Tag&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; } /** *

The name of the service provider associated with the interconnect.

*/ inline const Aws::String& GetProviderName() const{ return m_providerName; } /** *

The name of the service provider associated with the interconnect.

*/ inline bool ProviderNameHasBeenSet() const { return m_providerNameHasBeenSet; } /** *

The name of the service provider associated with the interconnect.

*/ inline void SetProviderName(const Aws::String& value) { m_providerNameHasBeenSet = true; m_providerName = value; } /** *

The name of the service provider associated with the interconnect.

*/ inline void SetProviderName(Aws::String&& value) { m_providerNameHasBeenSet = true; m_providerName = std::move(value); } /** *

The name of the service provider associated with the interconnect.

*/ inline void SetProviderName(const char* value) { m_providerNameHasBeenSet = true; m_providerName.assign(value); } /** *

The name of the service provider associated with the interconnect.

*/ inline CreateInterconnectRequest& WithProviderName(const Aws::String& value) { SetProviderName(value); return *this;} /** *

The name of the service provider associated with the interconnect.

*/ inline CreateInterconnectRequest& WithProviderName(Aws::String&& value) { SetProviderName(std::move(value)); return *this;} /** *

The name of the service provider associated with the interconnect.

*/ inline CreateInterconnectRequest& WithProviderName(const char* value) { SetProviderName(value); return *this;} private: Aws::String m_interconnectName; bool m_interconnectNameHasBeenSet = false; Aws::String m_bandwidth; bool m_bandwidthHasBeenSet = false; Aws::String m_location; bool m_locationHasBeenSet = false; Aws::String m_lagId; bool m_lagIdHasBeenSet = false; Aws::Vector m_tags; bool m_tagsHasBeenSet = false; Aws::String m_providerName; bool m_providerNameHasBeenSet = false; }; } // namespace Model } // namespace DirectConnect } // namespace Aws