/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include namespace Aws { namespace EC2 { namespace Model { /** */ class CreateTrafficMirrorSessionRequest : public EC2Request { public: AWS_EC2_API CreateTrafficMirrorSessionRequest(); // 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 "CreateTrafficMirrorSession"; } AWS_EC2_API Aws::String SerializePayload() const override; protected: AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

The ID of the source network interface.

*/ inline const Aws::String& GetNetworkInterfaceId() const{ return m_networkInterfaceId; } /** *

The ID of the source network interface.

*/ inline bool NetworkInterfaceIdHasBeenSet() const { return m_networkInterfaceIdHasBeenSet; } /** *

The ID of the source network interface.

*/ inline void SetNetworkInterfaceId(const Aws::String& value) { m_networkInterfaceIdHasBeenSet = true; m_networkInterfaceId = value; } /** *

The ID of the source network interface.

*/ inline void SetNetworkInterfaceId(Aws::String&& value) { m_networkInterfaceIdHasBeenSet = true; m_networkInterfaceId = std::move(value); } /** *

The ID of the source network interface.

*/ inline void SetNetworkInterfaceId(const char* value) { m_networkInterfaceIdHasBeenSet = true; m_networkInterfaceId.assign(value); } /** *

The ID of the source network interface.

*/ inline CreateTrafficMirrorSessionRequest& WithNetworkInterfaceId(const Aws::String& value) { SetNetworkInterfaceId(value); return *this;} /** *

The ID of the source network interface.

*/ inline CreateTrafficMirrorSessionRequest& WithNetworkInterfaceId(Aws::String&& value) { SetNetworkInterfaceId(std::move(value)); return *this;} /** *

The ID of the source network interface.

*/ inline CreateTrafficMirrorSessionRequest& WithNetworkInterfaceId(const char* value) { SetNetworkInterfaceId(value); return *this;} /** *

The ID of the Traffic Mirror target.

*/ inline const Aws::String& GetTrafficMirrorTargetId() const{ return m_trafficMirrorTargetId; } /** *

The ID of the Traffic Mirror target.

*/ inline bool TrafficMirrorTargetIdHasBeenSet() const { return m_trafficMirrorTargetIdHasBeenSet; } /** *

The ID of the Traffic Mirror target.

*/ inline void SetTrafficMirrorTargetId(const Aws::String& value) { m_trafficMirrorTargetIdHasBeenSet = true; m_trafficMirrorTargetId = value; } /** *

The ID of the Traffic Mirror target.

*/ inline void SetTrafficMirrorTargetId(Aws::String&& value) { m_trafficMirrorTargetIdHasBeenSet = true; m_trafficMirrorTargetId = std::move(value); } /** *

The ID of the Traffic Mirror target.

*/ inline void SetTrafficMirrorTargetId(const char* value) { m_trafficMirrorTargetIdHasBeenSet = true; m_trafficMirrorTargetId.assign(value); } /** *

The ID of the Traffic Mirror target.

*/ inline CreateTrafficMirrorSessionRequest& WithTrafficMirrorTargetId(const Aws::String& value) { SetTrafficMirrorTargetId(value); return *this;} /** *

The ID of the Traffic Mirror target.

*/ inline CreateTrafficMirrorSessionRequest& WithTrafficMirrorTargetId(Aws::String&& value) { SetTrafficMirrorTargetId(std::move(value)); return *this;} /** *

The ID of the Traffic Mirror target.

*/ inline CreateTrafficMirrorSessionRequest& WithTrafficMirrorTargetId(const char* value) { SetTrafficMirrorTargetId(value); return *this;} /** *

The ID of the Traffic Mirror filter.

*/ inline const Aws::String& GetTrafficMirrorFilterId() const{ return m_trafficMirrorFilterId; } /** *

The ID of the Traffic Mirror filter.

*/ inline bool TrafficMirrorFilterIdHasBeenSet() const { return m_trafficMirrorFilterIdHasBeenSet; } /** *

The ID of the Traffic Mirror filter.

*/ inline void SetTrafficMirrorFilterId(const Aws::String& value) { m_trafficMirrorFilterIdHasBeenSet = true; m_trafficMirrorFilterId = value; } /** *

The ID of the Traffic Mirror filter.

*/ inline void SetTrafficMirrorFilterId(Aws::String&& value) { m_trafficMirrorFilterIdHasBeenSet = true; m_trafficMirrorFilterId = std::move(value); } /** *

The ID of the Traffic Mirror filter.

*/ inline void SetTrafficMirrorFilterId(const char* value) { m_trafficMirrorFilterIdHasBeenSet = true; m_trafficMirrorFilterId.assign(value); } /** *

The ID of the Traffic Mirror filter.

*/ inline CreateTrafficMirrorSessionRequest& WithTrafficMirrorFilterId(const Aws::String& value) { SetTrafficMirrorFilterId(value); return *this;} /** *

The ID of the Traffic Mirror filter.

*/ inline CreateTrafficMirrorSessionRequest& WithTrafficMirrorFilterId(Aws::String&& value) { SetTrafficMirrorFilterId(std::move(value)); return *this;} /** *

The ID of the Traffic Mirror filter.

*/ inline CreateTrafficMirrorSessionRequest& WithTrafficMirrorFilterId(const char* value) { SetTrafficMirrorFilterId(value); return *this;} /** *

The number of bytes in each packet to mirror. These are bytes after the VXLAN * header. Do not specify this parameter when you want to mirror the entire packet. * To mirror a subset of the packet, set this to the length (in bytes) that you * want to mirror. For example, if you set this value to 100, then the first 100 * bytes that meet the filter criteria are copied to the target.

If you do * not want to mirror the entire packet, use the PacketLength * parameter to specify the number of bytes in each packet to mirror.

*/ inline int GetPacketLength() const{ return m_packetLength; } /** *

The number of bytes in each packet to mirror. These are bytes after the VXLAN * header. Do not specify this parameter when you want to mirror the entire packet. * To mirror a subset of the packet, set this to the length (in bytes) that you * want to mirror. For example, if you set this value to 100, then the first 100 * bytes that meet the filter criteria are copied to the target.

If you do * not want to mirror the entire packet, use the PacketLength * parameter to specify the number of bytes in each packet to mirror.

*/ inline bool PacketLengthHasBeenSet() const { return m_packetLengthHasBeenSet; } /** *

The number of bytes in each packet to mirror. These are bytes after the VXLAN * header. Do not specify this parameter when you want to mirror the entire packet. * To mirror a subset of the packet, set this to the length (in bytes) that you * want to mirror. For example, if you set this value to 100, then the first 100 * bytes that meet the filter criteria are copied to the target.

If you do * not want to mirror the entire packet, use the PacketLength * parameter to specify the number of bytes in each packet to mirror.

*/ inline void SetPacketLength(int value) { m_packetLengthHasBeenSet = true; m_packetLength = value; } /** *

The number of bytes in each packet to mirror. These are bytes after the VXLAN * header. Do not specify this parameter when you want to mirror the entire packet. * To mirror a subset of the packet, set this to the length (in bytes) that you * want to mirror. For example, if you set this value to 100, then the first 100 * bytes that meet the filter criteria are copied to the target.

If you do * not want to mirror the entire packet, use the PacketLength * parameter to specify the number of bytes in each packet to mirror.

*/ inline CreateTrafficMirrorSessionRequest& WithPacketLength(int value) { SetPacketLength(value); return *this;} /** *

The session number determines the order in which sessions are evaluated when * an interface is used by multiple sessions. The first session with a matching * filter is the one that mirrors the packets.

Valid values are 1-32766.

*/ inline int GetSessionNumber() const{ return m_sessionNumber; } /** *

The session number determines the order in which sessions are evaluated when * an interface is used by multiple sessions. The first session with a matching * filter is the one that mirrors the packets.

Valid values are 1-32766.

*/ inline bool SessionNumberHasBeenSet() const { return m_sessionNumberHasBeenSet; } /** *

The session number determines the order in which sessions are evaluated when * an interface is used by multiple sessions. The first session with a matching * filter is the one that mirrors the packets.

Valid values are 1-32766.

*/ inline void SetSessionNumber(int value) { m_sessionNumberHasBeenSet = true; m_sessionNumber = value; } /** *

The session number determines the order in which sessions are evaluated when * an interface is used by multiple sessions. The first session with a matching * filter is the one that mirrors the packets.

Valid values are 1-32766.

*/ inline CreateTrafficMirrorSessionRequest& WithSessionNumber(int value) { SetSessionNumber(value); return *this;} /** *

The VXLAN ID for the Traffic Mirror session. For more information about the * VXLAN protocol, see RFC 7348. * If you do not specify a VirtualNetworkId, an account-wide unique id * is chosen at random.

*/ inline int GetVirtualNetworkId() const{ return m_virtualNetworkId; } /** *

The VXLAN ID for the Traffic Mirror session. For more information about the * VXLAN protocol, see RFC 7348. * If you do not specify a VirtualNetworkId, an account-wide unique id * is chosen at random.

*/ inline bool VirtualNetworkIdHasBeenSet() const { return m_virtualNetworkIdHasBeenSet; } /** *

The VXLAN ID for the Traffic Mirror session. For more information about the * VXLAN protocol, see RFC 7348. * If you do not specify a VirtualNetworkId, an account-wide unique id * is chosen at random.

*/ inline void SetVirtualNetworkId(int value) { m_virtualNetworkIdHasBeenSet = true; m_virtualNetworkId = value; } /** *

The VXLAN ID for the Traffic Mirror session. For more information about the * VXLAN protocol, see RFC 7348. * If you do not specify a VirtualNetworkId, an account-wide unique id * is chosen at random.

*/ inline CreateTrafficMirrorSessionRequest& WithVirtualNetworkId(int value) { SetVirtualNetworkId(value); return *this;} /** *

The description of the Traffic Mirror session.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

The description of the Traffic Mirror session.

*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *

The description of the Traffic Mirror session.

*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *

The description of the Traffic Mirror session.

*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *

The description of the Traffic Mirror session.

*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *

The description of the Traffic Mirror session.

*/ inline CreateTrafficMirrorSessionRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

The description of the Traffic Mirror session.

*/ inline CreateTrafficMirrorSessionRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

The description of the Traffic Mirror session.

*/ inline CreateTrafficMirrorSessionRequest& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

The tags to assign to a Traffic Mirror session.

*/ inline const Aws::Vector& GetTagSpecifications() const{ return m_tagSpecifications; } /** *

The tags to assign to a Traffic Mirror session.

*/ inline bool TagSpecificationsHasBeenSet() const { return m_tagSpecificationsHasBeenSet; } /** *

The tags to assign to a Traffic Mirror session.

*/ inline void SetTagSpecifications(const Aws::Vector& value) { m_tagSpecificationsHasBeenSet = true; m_tagSpecifications = value; } /** *

The tags to assign to a Traffic Mirror session.

*/ inline void SetTagSpecifications(Aws::Vector&& value) { m_tagSpecificationsHasBeenSet = true; m_tagSpecifications = std::move(value); } /** *

The tags to assign to a Traffic Mirror session.

*/ inline CreateTrafficMirrorSessionRequest& WithTagSpecifications(const Aws::Vector& value) { SetTagSpecifications(value); return *this;} /** *

The tags to assign to a Traffic Mirror session.

*/ inline CreateTrafficMirrorSessionRequest& WithTagSpecifications(Aws::Vector&& value) { SetTagSpecifications(std::move(value)); return *this;} /** *

The tags to assign to a Traffic Mirror session.

*/ inline CreateTrafficMirrorSessionRequest& AddTagSpecifications(const TagSpecification& value) { m_tagSpecificationsHasBeenSet = true; m_tagSpecifications.push_back(value); return *this; } /** *

The tags to assign to a Traffic Mirror session.

*/ inline CreateTrafficMirrorSessionRequest& AddTagSpecifications(TagSpecification&& value) { m_tagSpecificationsHasBeenSet = true; m_tagSpecifications.push_back(std::move(value)); return *this; } /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline bool GetDryRun() const{ return m_dryRun; } /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; } /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; } /** *

Checks whether you have the required permissions for the action, without * actually making the request, and provides an error response. If you have the * required permissions, the error response is DryRunOperation. * Otherwise, it is UnauthorizedOperation.

*/ inline CreateTrafficMirrorSessionRequest& WithDryRun(bool value) { SetDryRun(value); return *this;} /** *

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. For more information, see How * to ensure idempotency.

*/ inline const Aws::String& GetClientToken() const{ return m_clientToken; } /** *

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. For more information, see How * to ensure idempotency.

*/ inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; } /** *

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. For more information, see How * to ensure idempotency.

*/ inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; } /** *

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. For more information, see How * to ensure idempotency.

*/ inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); } /** *

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. For more information, see How * to ensure idempotency.

*/ inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); } /** *

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. For more information, see How * to ensure idempotency.

*/ inline CreateTrafficMirrorSessionRequest& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;} /** *

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. For more information, see How * to ensure idempotency.

*/ inline CreateTrafficMirrorSessionRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;} /** *

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. For more information, see How * to ensure idempotency.

*/ inline CreateTrafficMirrorSessionRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;} private: Aws::String m_networkInterfaceId; bool m_networkInterfaceIdHasBeenSet = false; Aws::String m_trafficMirrorTargetId; bool m_trafficMirrorTargetIdHasBeenSet = false; Aws::String m_trafficMirrorFilterId; bool m_trafficMirrorFilterIdHasBeenSet = false; int m_packetLength; bool m_packetLengthHasBeenSet = false; int m_sessionNumber; bool m_sessionNumberHasBeenSet = false; int m_virtualNetworkId; bool m_virtualNetworkIdHasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; Aws::Vector m_tagSpecifications; bool m_tagSpecificationsHasBeenSet = false; bool m_dryRun; bool m_dryRunHasBeenSet = false; Aws::String m_clientToken; bool m_clientTokenHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws