/** * 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 GroundStation { namespace Model { /** *

See Also:

AWS * API Reference

*/ class CreateDataflowEndpointGroupRequest : public GroundStationRequest { public: AWS_GROUNDSTATION_API CreateDataflowEndpointGroupRequest(); // 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 "CreateDataflowEndpointGroup"; } AWS_GROUNDSTATION_API Aws::String SerializePayload() const override; /** *

Amount of time, in seconds, after a contact ends that the Ground Station * Dataflow Endpoint Group will be in a POSTPASS state. A Ground * Station Dataflow Endpoint Group State Change event will be emitted when the * Dataflow Endpoint Group enters and exits the POSTPASS state.

*/ inline int GetContactPostPassDurationSeconds() const{ return m_contactPostPassDurationSeconds; } /** *

Amount of time, in seconds, after a contact ends that the Ground Station * Dataflow Endpoint Group will be in a POSTPASS state. A Ground * Station Dataflow Endpoint Group State Change event will be emitted when the * Dataflow Endpoint Group enters and exits the POSTPASS state.

*/ inline bool ContactPostPassDurationSecondsHasBeenSet() const { return m_contactPostPassDurationSecondsHasBeenSet; } /** *

Amount of time, in seconds, after a contact ends that the Ground Station * Dataflow Endpoint Group will be in a POSTPASS state. A Ground * Station Dataflow Endpoint Group State Change event will be emitted when the * Dataflow Endpoint Group enters and exits the POSTPASS state.

*/ inline void SetContactPostPassDurationSeconds(int value) { m_contactPostPassDurationSecondsHasBeenSet = true; m_contactPostPassDurationSeconds = value; } /** *

Amount of time, in seconds, after a contact ends that the Ground Station * Dataflow Endpoint Group will be in a POSTPASS state. A Ground * Station Dataflow Endpoint Group State Change event will be emitted when the * Dataflow Endpoint Group enters and exits the POSTPASS state.

*/ inline CreateDataflowEndpointGroupRequest& WithContactPostPassDurationSeconds(int value) { SetContactPostPassDurationSeconds(value); return *this;} /** *

Amount of time, in seconds, before a contact starts that the Ground Station * Dataflow Endpoint Group will be in a PREPASS state. A Ground * Station Dataflow Endpoint Group State Change event will be emitted when the * Dataflow Endpoint Group enters and exits the PREPASS state.

*/ inline int GetContactPrePassDurationSeconds() const{ return m_contactPrePassDurationSeconds; } /** *

Amount of time, in seconds, before a contact starts that the Ground Station * Dataflow Endpoint Group will be in a PREPASS state. A Ground * Station Dataflow Endpoint Group State Change event will be emitted when the * Dataflow Endpoint Group enters and exits the PREPASS state.

*/ inline bool ContactPrePassDurationSecondsHasBeenSet() const { return m_contactPrePassDurationSecondsHasBeenSet; } /** *

Amount of time, in seconds, before a contact starts that the Ground Station * Dataflow Endpoint Group will be in a PREPASS state. A Ground * Station Dataflow Endpoint Group State Change event will be emitted when the * Dataflow Endpoint Group enters and exits the PREPASS state.

*/ inline void SetContactPrePassDurationSeconds(int value) { m_contactPrePassDurationSecondsHasBeenSet = true; m_contactPrePassDurationSeconds = value; } /** *

Amount of time, in seconds, before a contact starts that the Ground Station * Dataflow Endpoint Group will be in a PREPASS state. A Ground * Station Dataflow Endpoint Group State Change event will be emitted when the * Dataflow Endpoint Group enters and exits the PREPASS state.

*/ inline CreateDataflowEndpointGroupRequest& WithContactPrePassDurationSeconds(int value) { SetContactPrePassDurationSeconds(value); return *this;} /** *

Endpoint details of each endpoint in the dataflow endpoint group.

*/ inline const Aws::Vector& GetEndpointDetails() const{ return m_endpointDetails; } /** *

Endpoint details of each endpoint in the dataflow endpoint group.

*/ inline bool EndpointDetailsHasBeenSet() const { return m_endpointDetailsHasBeenSet; } /** *

Endpoint details of each endpoint in the dataflow endpoint group.

*/ inline void SetEndpointDetails(const Aws::Vector& value) { m_endpointDetailsHasBeenSet = true; m_endpointDetails = value; } /** *

Endpoint details of each endpoint in the dataflow endpoint group.

*/ inline void SetEndpointDetails(Aws::Vector&& value) { m_endpointDetailsHasBeenSet = true; m_endpointDetails = std::move(value); } /** *

Endpoint details of each endpoint in the dataflow endpoint group.

*/ inline CreateDataflowEndpointGroupRequest& WithEndpointDetails(const Aws::Vector& value) { SetEndpointDetails(value); return *this;} /** *

Endpoint details of each endpoint in the dataflow endpoint group.

*/ inline CreateDataflowEndpointGroupRequest& WithEndpointDetails(Aws::Vector&& value) { SetEndpointDetails(std::move(value)); return *this;} /** *

Endpoint details of each endpoint in the dataflow endpoint group.

*/ inline CreateDataflowEndpointGroupRequest& AddEndpointDetails(const EndpointDetails& value) { m_endpointDetailsHasBeenSet = true; m_endpointDetails.push_back(value); return *this; } /** *

Endpoint details of each endpoint in the dataflow endpoint group.

*/ inline CreateDataflowEndpointGroupRequest& AddEndpointDetails(EndpointDetails&& value) { m_endpointDetailsHasBeenSet = true; m_endpointDetails.push_back(std::move(value)); return *this; } /** *

Tags of a dataflow endpoint group.

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

Tags of a dataflow endpoint group.

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

Tags of a dataflow endpoint group.

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

Tags of a dataflow endpoint group.

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

Tags of a dataflow endpoint group.

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

Tags of a dataflow endpoint group.

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

Tags of a dataflow endpoint group.

*/ inline CreateDataflowEndpointGroupRequest& AddTags(const Aws::String& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; } /** *

Tags of a dataflow endpoint group.

*/ inline CreateDataflowEndpointGroupRequest& AddTags(Aws::String&& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; } /** *

Tags of a dataflow endpoint group.

*/ inline CreateDataflowEndpointGroupRequest& AddTags(const Aws::String& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; } /** *

Tags of a dataflow endpoint group.

*/ inline CreateDataflowEndpointGroupRequest& AddTags(Aws::String&& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), std::move(value)); return *this; } /** *

Tags of a dataflow endpoint group.

*/ inline CreateDataflowEndpointGroupRequest& AddTags(const char* key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; } /** *

Tags of a dataflow endpoint group.

*/ inline CreateDataflowEndpointGroupRequest& AddTags(Aws::String&& key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; } /** *

Tags of a dataflow endpoint group.

*/ inline CreateDataflowEndpointGroupRequest& AddTags(const char* key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; } private: int m_contactPostPassDurationSeconds; bool m_contactPostPassDurationSecondsHasBeenSet = false; int m_contactPrePassDurationSeconds; bool m_contactPrePassDurationSecondsHasBeenSet = false; Aws::Vector m_endpointDetails; bool m_endpointDetailsHasBeenSet = false; Aws::Map m_tags; bool m_tagsHasBeenSet = false; }; } // namespace Model } // namespace GroundStation } // namespace Aws