316 lines
9.8 KiB
C++
316 lines
9.8 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/directconnect/DirectConnect_EXPORTS.h>
|
|
#include <aws/directconnect/DirectConnectRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|
#include <aws/directconnect/model/Tag.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace DirectConnect
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_DIRECTCONNECT_API CreateConnectionRequest : public DirectConnectRequest
|
|
{
|
|
public:
|
|
CreateConnectionRequest();
|
|
|
|
// 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 "CreateConnection"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
|
|
|
|
|
|
/**
|
|
* <p>The location of the connection.</p>
|
|
*/
|
|
inline const Aws::String& GetLocation() const{ return m_location; }
|
|
|
|
/**
|
|
* <p>The location of the connection.</p>
|
|
*/
|
|
inline bool LocationHasBeenSet() const { return m_locationHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The location of the connection.</p>
|
|
*/
|
|
inline void SetLocation(const Aws::String& value) { m_locationHasBeenSet = true; m_location = value; }
|
|
|
|
/**
|
|
* <p>The location of the connection.</p>
|
|
*/
|
|
inline void SetLocation(Aws::String&& value) { m_locationHasBeenSet = true; m_location = std::move(value); }
|
|
|
|
/**
|
|
* <p>The location of the connection.</p>
|
|
*/
|
|
inline void SetLocation(const char* value) { m_locationHasBeenSet = true; m_location.assign(value); }
|
|
|
|
/**
|
|
* <p>The location of the connection.</p>
|
|
*/
|
|
inline CreateConnectionRequest& WithLocation(const Aws::String& value) { SetLocation(value); return *this;}
|
|
|
|
/**
|
|
* <p>The location of the connection.</p>
|
|
*/
|
|
inline CreateConnectionRequest& WithLocation(Aws::String&& value) { SetLocation(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The location of the connection.</p>
|
|
*/
|
|
inline CreateConnectionRequest& WithLocation(const char* value) { SetLocation(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The bandwidth of the connection.</p>
|
|
*/
|
|
inline const Aws::String& GetBandwidth() const{ return m_bandwidth; }
|
|
|
|
/**
|
|
* <p>The bandwidth of the connection.</p>
|
|
*/
|
|
inline bool BandwidthHasBeenSet() const { return m_bandwidthHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The bandwidth of the connection.</p>
|
|
*/
|
|
inline void SetBandwidth(const Aws::String& value) { m_bandwidthHasBeenSet = true; m_bandwidth = value; }
|
|
|
|
/**
|
|
* <p>The bandwidth of the connection.</p>
|
|
*/
|
|
inline void SetBandwidth(Aws::String&& value) { m_bandwidthHasBeenSet = true; m_bandwidth = std::move(value); }
|
|
|
|
/**
|
|
* <p>The bandwidth of the connection.</p>
|
|
*/
|
|
inline void SetBandwidth(const char* value) { m_bandwidthHasBeenSet = true; m_bandwidth.assign(value); }
|
|
|
|
/**
|
|
* <p>The bandwidth of the connection.</p>
|
|
*/
|
|
inline CreateConnectionRequest& WithBandwidth(const Aws::String& value) { SetBandwidth(value); return *this;}
|
|
|
|
/**
|
|
* <p>The bandwidth of the connection.</p>
|
|
*/
|
|
inline CreateConnectionRequest& WithBandwidth(Aws::String&& value) { SetBandwidth(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The bandwidth of the connection.</p>
|
|
*/
|
|
inline CreateConnectionRequest& WithBandwidth(const char* value) { SetBandwidth(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The name of the connection.</p>
|
|
*/
|
|
inline const Aws::String& GetConnectionName() const{ return m_connectionName; }
|
|
|
|
/**
|
|
* <p>The name of the connection.</p>
|
|
*/
|
|
inline bool ConnectionNameHasBeenSet() const { return m_connectionNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the connection.</p>
|
|
*/
|
|
inline void SetConnectionName(const Aws::String& value) { m_connectionNameHasBeenSet = true; m_connectionName = value; }
|
|
|
|
/**
|
|
* <p>The name of the connection.</p>
|
|
*/
|
|
inline void SetConnectionName(Aws::String&& value) { m_connectionNameHasBeenSet = true; m_connectionName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the connection.</p>
|
|
*/
|
|
inline void SetConnectionName(const char* value) { m_connectionNameHasBeenSet = true; m_connectionName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the connection.</p>
|
|
*/
|
|
inline CreateConnectionRequest& WithConnectionName(const Aws::String& value) { SetConnectionName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the connection.</p>
|
|
*/
|
|
inline CreateConnectionRequest& WithConnectionName(Aws::String&& value) { SetConnectionName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the connection.</p>
|
|
*/
|
|
inline CreateConnectionRequest& WithConnectionName(const char* value) { SetConnectionName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The ID of the LAG.</p>
|
|
*/
|
|
inline const Aws::String& GetLagId() const{ return m_lagId; }
|
|
|
|
/**
|
|
* <p>The ID of the LAG.</p>
|
|
*/
|
|
inline bool LagIdHasBeenSet() const { return m_lagIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The ID of the LAG.</p>
|
|
*/
|
|
inline void SetLagId(const Aws::String& value) { m_lagIdHasBeenSet = true; m_lagId = value; }
|
|
|
|
/**
|
|
* <p>The ID of the LAG.</p>
|
|
*/
|
|
inline void SetLagId(Aws::String&& value) { m_lagIdHasBeenSet = true; m_lagId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The ID of the LAG.</p>
|
|
*/
|
|
inline void SetLagId(const char* value) { m_lagIdHasBeenSet = true; m_lagId.assign(value); }
|
|
|
|
/**
|
|
* <p>The ID of the LAG.</p>
|
|
*/
|
|
inline CreateConnectionRequest& WithLagId(const Aws::String& value) { SetLagId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the LAG.</p>
|
|
*/
|
|
inline CreateConnectionRequest& WithLagId(Aws::String&& value) { SetLagId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the LAG.</p>
|
|
*/
|
|
inline CreateConnectionRequest& WithLagId(const char* value) { SetLagId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The tags to associate with the lag.</p>
|
|
*/
|
|
inline const Aws::Vector<Tag>& GetTags() const{ return m_tags; }
|
|
|
|
/**
|
|
* <p>The tags to associate with the lag.</p>
|
|
*/
|
|
inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The tags to associate with the lag.</p>
|
|
*/
|
|
inline void SetTags(const Aws::Vector<Tag>& value) { m_tagsHasBeenSet = true; m_tags = value; }
|
|
|
|
/**
|
|
* <p>The tags to associate with the lag.</p>
|
|
*/
|
|
inline void SetTags(Aws::Vector<Tag>&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); }
|
|
|
|
/**
|
|
* <p>The tags to associate with the lag.</p>
|
|
*/
|
|
inline CreateConnectionRequest& WithTags(const Aws::Vector<Tag>& value) { SetTags(value); return *this;}
|
|
|
|
/**
|
|
* <p>The tags to associate with the lag.</p>
|
|
*/
|
|
inline CreateConnectionRequest& WithTags(Aws::Vector<Tag>&& value) { SetTags(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The tags to associate with the lag.</p>
|
|
*/
|
|
inline CreateConnectionRequest& AddTags(const Tag& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>The tags to associate with the lag.</p>
|
|
*/
|
|
inline CreateConnectionRequest& AddTags(Tag&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; }
|
|
|
|
|
|
/**
|
|
* <p>The name of the service provider associated with the requested
|
|
* connection.</p>
|
|
*/
|
|
inline const Aws::String& GetProviderName() const{ return m_providerName; }
|
|
|
|
/**
|
|
* <p>The name of the service provider associated with the requested
|
|
* connection.</p>
|
|
*/
|
|
inline bool ProviderNameHasBeenSet() const { return m_providerNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the service provider associated with the requested
|
|
* connection.</p>
|
|
*/
|
|
inline void SetProviderName(const Aws::String& value) { m_providerNameHasBeenSet = true; m_providerName = value; }
|
|
|
|
/**
|
|
* <p>The name of the service provider associated with the requested
|
|
* connection.</p>
|
|
*/
|
|
inline void SetProviderName(Aws::String&& value) { m_providerNameHasBeenSet = true; m_providerName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the service provider associated with the requested
|
|
* connection.</p>
|
|
*/
|
|
inline void SetProviderName(const char* value) { m_providerNameHasBeenSet = true; m_providerName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the service provider associated with the requested
|
|
* connection.</p>
|
|
*/
|
|
inline CreateConnectionRequest& WithProviderName(const Aws::String& value) { SetProviderName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the service provider associated with the requested
|
|
* connection.</p>
|
|
*/
|
|
inline CreateConnectionRequest& WithProviderName(Aws::String&& value) { SetProviderName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the service provider associated with the requested
|
|
* connection.</p>
|
|
*/
|
|
inline CreateConnectionRequest& WithProviderName(const char* value) { SetProviderName(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_location;
|
|
bool m_locationHasBeenSet;
|
|
|
|
Aws::String m_bandwidth;
|
|
bool m_bandwidthHasBeenSet;
|
|
|
|
Aws::String m_connectionName;
|
|
bool m_connectionNameHasBeenSet;
|
|
|
|
Aws::String m_lagId;
|
|
bool m_lagIdHasBeenSet;
|
|
|
|
Aws::Vector<Tag> m_tags;
|
|
bool m_tagsHasBeenSet;
|
|
|
|
Aws::String m_providerName;
|
|
bool m_providerNameHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace DirectConnect
|
|
} // namespace Aws
|