/** * 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 { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace GroundStation { namespace Model { /** *

See Also:

AWS * API Reference

*/ class GetDataflowEndpointGroupResult { public: AWS_GROUNDSTATION_API GetDataflowEndpointGroupResult(); AWS_GROUNDSTATION_API GetDataflowEndpointGroupResult(const Aws::AmazonWebServiceResult& result); AWS_GROUNDSTATION_API GetDataflowEndpointGroupResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

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 void SetContactPostPassDurationSeconds(int value) { 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 GetDataflowEndpointGroupResult& 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 void SetContactPrePassDurationSeconds(int value) { 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 GetDataflowEndpointGroupResult& WithContactPrePassDurationSeconds(int value) { SetContactPrePassDurationSeconds(value); return *this;} /** *

ARN of a dataflow endpoint group.

*/ inline const Aws::String& GetDataflowEndpointGroupArn() const{ return m_dataflowEndpointGroupArn; } /** *

ARN of a dataflow endpoint group.

*/ inline void SetDataflowEndpointGroupArn(const Aws::String& value) { m_dataflowEndpointGroupArn = value; } /** *

ARN of a dataflow endpoint group.

*/ inline void SetDataflowEndpointGroupArn(Aws::String&& value) { m_dataflowEndpointGroupArn = std::move(value); } /** *

ARN of a dataflow endpoint group.

*/ inline void SetDataflowEndpointGroupArn(const char* value) { m_dataflowEndpointGroupArn.assign(value); } /** *

ARN of a dataflow endpoint group.

*/ inline GetDataflowEndpointGroupResult& WithDataflowEndpointGroupArn(const Aws::String& value) { SetDataflowEndpointGroupArn(value); return *this;} /** *

ARN of a dataflow endpoint group.

*/ inline GetDataflowEndpointGroupResult& WithDataflowEndpointGroupArn(Aws::String&& value) { SetDataflowEndpointGroupArn(std::move(value)); return *this;} /** *

ARN of a dataflow endpoint group.

*/ inline GetDataflowEndpointGroupResult& WithDataflowEndpointGroupArn(const char* value) { SetDataflowEndpointGroupArn(value); return *this;} /** *

UUID of a dataflow endpoint group.

*/ inline const Aws::String& GetDataflowEndpointGroupId() const{ return m_dataflowEndpointGroupId; } /** *

UUID of a dataflow endpoint group.

*/ inline void SetDataflowEndpointGroupId(const Aws::String& value) { m_dataflowEndpointGroupId = value; } /** *

UUID of a dataflow endpoint group.

*/ inline void SetDataflowEndpointGroupId(Aws::String&& value) { m_dataflowEndpointGroupId = std::move(value); } /** *

UUID of a dataflow endpoint group.

*/ inline void SetDataflowEndpointGroupId(const char* value) { m_dataflowEndpointGroupId.assign(value); } /** *

UUID of a dataflow endpoint group.

*/ inline GetDataflowEndpointGroupResult& WithDataflowEndpointGroupId(const Aws::String& value) { SetDataflowEndpointGroupId(value); return *this;} /** *

UUID of a dataflow endpoint group.

*/ inline GetDataflowEndpointGroupResult& WithDataflowEndpointGroupId(Aws::String&& value) { SetDataflowEndpointGroupId(std::move(value)); return *this;} /** *

UUID of a dataflow endpoint group.

*/ inline GetDataflowEndpointGroupResult& WithDataflowEndpointGroupId(const char* value) { SetDataflowEndpointGroupId(value); return *this;} /** *

Details of a dataflow endpoint.

*/ inline const Aws::Vector& GetEndpointsDetails() const{ return m_endpointsDetails; } /** *

Details of a dataflow endpoint.

*/ inline void SetEndpointsDetails(const Aws::Vector& value) { m_endpointsDetails = value; } /** *

Details of a dataflow endpoint.

*/ inline void SetEndpointsDetails(Aws::Vector&& value) { m_endpointsDetails = std::move(value); } /** *

Details of a dataflow endpoint.

*/ inline GetDataflowEndpointGroupResult& WithEndpointsDetails(const Aws::Vector& value) { SetEndpointsDetails(value); return *this;} /** *

Details of a dataflow endpoint.

*/ inline GetDataflowEndpointGroupResult& WithEndpointsDetails(Aws::Vector&& value) { SetEndpointsDetails(std::move(value)); return *this;} /** *

Details of a dataflow endpoint.

*/ inline GetDataflowEndpointGroupResult& AddEndpointsDetails(const EndpointDetails& value) { m_endpointsDetails.push_back(value); return *this; } /** *

Details of a dataflow endpoint.

*/ inline GetDataflowEndpointGroupResult& AddEndpointsDetails(EndpointDetails&& value) { m_endpointsDetails.push_back(std::move(value)); return *this; } /** *

Tags assigned to a dataflow endpoint group.

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

Tags assigned to a dataflow endpoint group.

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

Tags assigned to a dataflow endpoint group.

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

Tags assigned to a dataflow endpoint group.

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

Tags assigned to a dataflow endpoint group.

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

Tags assigned to a dataflow endpoint group.

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

Tags assigned to a dataflow endpoint group.

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

Tags assigned to a dataflow endpoint group.

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

Tags assigned to a dataflow endpoint group.

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

Tags assigned to a dataflow endpoint group.

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

Tags assigned to a dataflow endpoint group.

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

Tags assigned to a dataflow endpoint group.

*/ inline GetDataflowEndpointGroupResult& AddTags(const char* key, const char* value) { m_tags.emplace(key, value); return *this; } inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetDataflowEndpointGroupResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetDataflowEndpointGroupResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetDataflowEndpointGroupResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: int m_contactPostPassDurationSeconds; int m_contactPrePassDurationSeconds; Aws::String m_dataflowEndpointGroupArn; Aws::String m_dataflowEndpointGroupId; Aws::Vector m_endpointsDetails; Aws::Map m_tags; Aws::String m_requestId; }; } // namespace Model } // namespace GroundStation } // namespace Aws