/** * 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 EC2 { namespace Model { /** */ class ModifyTrafficMirrorSessionRequest : public EC2Request { public: AWS_EC2_API ModifyTrafficMirrorSessionRequest(); // 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 "ModifyTrafficMirrorSession"; } 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 Traffic Mirror session.

*/ inline const Aws::String& GetTrafficMirrorSessionId() const{ return m_trafficMirrorSessionId; } /** *

The ID of the Traffic Mirror session.

*/ inline bool TrafficMirrorSessionIdHasBeenSet() const { return m_trafficMirrorSessionIdHasBeenSet; } /** *

The ID of the Traffic Mirror session.

*/ inline void SetTrafficMirrorSessionId(const Aws::String& value) { m_trafficMirrorSessionIdHasBeenSet = true; m_trafficMirrorSessionId = value; } /** *

The ID of the Traffic Mirror session.

*/ inline void SetTrafficMirrorSessionId(Aws::String&& value) { m_trafficMirrorSessionIdHasBeenSet = true; m_trafficMirrorSessionId = std::move(value); } /** *

The ID of the Traffic Mirror session.

*/ inline void SetTrafficMirrorSessionId(const char* value) { m_trafficMirrorSessionIdHasBeenSet = true; m_trafficMirrorSessionId.assign(value); } /** *

The ID of the Traffic Mirror session.

*/ inline ModifyTrafficMirrorSessionRequest& WithTrafficMirrorSessionId(const Aws::String& value) { SetTrafficMirrorSessionId(value); return *this;} /** *

The ID of the Traffic Mirror session.

*/ inline ModifyTrafficMirrorSessionRequest& WithTrafficMirrorSessionId(Aws::String&& value) { SetTrafficMirrorSessionId(std::move(value)); return *this;} /** *

The ID of the Traffic Mirror session.

*/ inline ModifyTrafficMirrorSessionRequest& WithTrafficMirrorSessionId(const char* value) { SetTrafficMirrorSessionId(value); return *this;} /** *

The Traffic Mirror target. The target must be in the same VPC as the source, * or have a VPC peering connection with the source.

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

The Traffic Mirror target. The target must be in the same VPC as the source, * or have a VPC peering connection with the source.

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

The Traffic Mirror target. The target must be in the same VPC as the source, * or have a VPC peering connection with the source.

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

The Traffic Mirror target. The target must be in the same VPC as the source, * or have a VPC peering connection with the source.

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

The Traffic Mirror target. The target must be in the same VPC as the source, * or have a VPC peering connection with the source.

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

The Traffic Mirror target. The target must be in the same VPC as the source, * or have a VPC peering connection with the source.

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

The Traffic Mirror target. The target must be in the same VPC as the source, * or have a VPC peering connection with the source.

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

The Traffic Mirror target. The target must be in the same VPC as the source, * or have a VPC peering connection with the source.

*/ inline ModifyTrafficMirrorSessionRequest& 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 ModifyTrafficMirrorSessionRequest& WithTrafficMirrorFilterId(const Aws::String& value) { SetTrafficMirrorFilterId(value); return *this;} /** *

The ID of the Traffic Mirror filter.

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

The ID of the Traffic Mirror filter.

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

The number of bytes in each packet to mirror. These are bytes after the VXLAN * header. To mirror a subset, set this to the length (in bytes) 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. Do not specify this parameter when you * want to mirror the entire packet.

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

The number of bytes in each packet to mirror. These are bytes after the VXLAN * header. To mirror a subset, set this to the length (in bytes) 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. Do not specify this parameter when you * want to mirror the entire packet.

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

The number of bytes in each packet to mirror. These are bytes after the VXLAN * header. To mirror a subset, set this to the length (in bytes) 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. Do not specify this parameter when you * want to mirror the entire packet.

*/ 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. To mirror a subset, set this to the length (in bytes) 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. Do not specify this parameter when you * want to mirror the entire packet.

*/ inline ModifyTrafficMirrorSessionRequest& 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 ModifyTrafficMirrorSessionRequest& WithSessionNumber(int value) { SetSessionNumber(value); return *this;} /** *

The virtual network ID of the Traffic Mirror session.

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

The virtual network ID of the Traffic Mirror session.

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

The virtual network ID of the Traffic Mirror session.

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

The virtual network ID of the Traffic Mirror session.

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

The description to assign to the Traffic Mirror session.

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

The description to assign to the Traffic Mirror session.

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

The description to assign to the Traffic Mirror session.

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

The description to assign to the Traffic Mirror session.

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

The description to assign to the Traffic Mirror session.

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

The description to assign to the Traffic Mirror session.

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

The description to assign to the Traffic Mirror session.

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

The description to assign to the Traffic Mirror session.

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

The properties that you want to remove from the Traffic Mirror session.

*

When you remove a property from a Traffic Mirror session, the property is set * to the default.

*/ inline const Aws::Vector& GetRemoveFields() const{ return m_removeFields; } /** *

The properties that you want to remove from the Traffic Mirror session.

*

When you remove a property from a Traffic Mirror session, the property is set * to the default.

*/ inline bool RemoveFieldsHasBeenSet() const { return m_removeFieldsHasBeenSet; } /** *

The properties that you want to remove from the Traffic Mirror session.

*

When you remove a property from a Traffic Mirror session, the property is set * to the default.

*/ inline void SetRemoveFields(const Aws::Vector& value) { m_removeFieldsHasBeenSet = true; m_removeFields = value; } /** *

The properties that you want to remove from the Traffic Mirror session.

*

When you remove a property from a Traffic Mirror session, the property is set * to the default.

*/ inline void SetRemoveFields(Aws::Vector&& value) { m_removeFieldsHasBeenSet = true; m_removeFields = std::move(value); } /** *

The properties that you want to remove from the Traffic Mirror session.

*

When you remove a property from a Traffic Mirror session, the property is set * to the default.

*/ inline ModifyTrafficMirrorSessionRequest& WithRemoveFields(const Aws::Vector& value) { SetRemoveFields(value); return *this;} /** *

The properties that you want to remove from the Traffic Mirror session.

*

When you remove a property from a Traffic Mirror session, the property is set * to the default.

*/ inline ModifyTrafficMirrorSessionRequest& WithRemoveFields(Aws::Vector&& value) { SetRemoveFields(std::move(value)); return *this;} /** *

The properties that you want to remove from the Traffic Mirror session.

*

When you remove a property from a Traffic Mirror session, the property is set * to the default.

*/ inline ModifyTrafficMirrorSessionRequest& AddRemoveFields(const TrafficMirrorSessionField& value) { m_removeFieldsHasBeenSet = true; m_removeFields.push_back(value); return *this; } /** *

The properties that you want to remove from the Traffic Mirror session.

*

When you remove a property from a Traffic Mirror session, the property is set * to the default.

*/ inline ModifyTrafficMirrorSessionRequest& AddRemoveFields(TrafficMirrorSessionField&& value) { m_removeFieldsHasBeenSet = true; m_removeFields.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 ModifyTrafficMirrorSessionRequest& WithDryRun(bool value) { SetDryRun(value); return *this;} private: Aws::String m_trafficMirrorSessionId; bool m_trafficMirrorSessionIdHasBeenSet = 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_removeFields; bool m_removeFieldsHasBeenSet = false; bool m_dryRun; bool m_dryRunHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws