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

See Also:

AWS * API Reference

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

Amount of time after a contact ends that you’d like to receive a CloudWatch * event indicating the pass has finished.

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

Amount of time after a contact ends that you’d like to receive a CloudWatch * event indicating the pass has finished.

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

Amount of time after a contact ends that you’d like to receive a CloudWatch * event indicating the pass has finished.

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

Amount of time after a contact ends that you’d like to receive a CloudWatch * event indicating the pass has finished.

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

Amount of time after a contact ends that you’d like to receive a CloudWatch * event indicating the pass has finished.

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

Amount of time after a contact ends that you’d like to receive a CloudWatch * event indicating the pass has finished.

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

Amount of time after a contact ends that you’d like to receive a CloudWatch * event indicating the pass has finished.

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

Amount of time after a contact ends that you’d like to receive a CloudWatch * event indicating the pass has finished.

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

A list of lists of ARNs. Each list of ARNs is an edge, with a from * Config and a to Config.

*/ inline const Aws::Vector>& GetDataflowEdges() const{ return m_dataflowEdges; } /** *

A list of lists of ARNs. Each list of ARNs is an edge, with a from * Config and a to Config.

*/ inline bool DataflowEdgesHasBeenSet() const { return m_dataflowEdgesHasBeenSet; } /** *

A list of lists of ARNs. Each list of ARNs is an edge, with a from * Config and a to Config.

*/ inline void SetDataflowEdges(const Aws::Vector>& value) { m_dataflowEdgesHasBeenSet = true; m_dataflowEdges = value; } /** *

A list of lists of ARNs. Each list of ARNs is an edge, with a from * Config and a to Config.

*/ inline void SetDataflowEdges(Aws::Vector>&& value) { m_dataflowEdgesHasBeenSet = true; m_dataflowEdges = std::move(value); } /** *

A list of lists of ARNs. Each list of ARNs is an edge, with a from * Config and a to Config.

*/ inline UpdateMissionProfileRequest& WithDataflowEdges(const Aws::Vector>& value) { SetDataflowEdges(value); return *this;} /** *

A list of lists of ARNs. Each list of ARNs is an edge, with a from * Config and a to Config.

*/ inline UpdateMissionProfileRequest& WithDataflowEdges(Aws::Vector>&& value) { SetDataflowEdges(std::move(value)); return *this;} /** *

A list of lists of ARNs. Each list of ARNs is an edge, with a from * Config and a to Config.

*/ inline UpdateMissionProfileRequest& AddDataflowEdges(const Aws::Vector& value) { m_dataflowEdgesHasBeenSet = true; m_dataflowEdges.push_back(value); return *this; } /** *

A list of lists of ARNs. Each list of ARNs is an edge, with a from * Config and a to Config.

*/ inline UpdateMissionProfileRequest& AddDataflowEdges(Aws::Vector&& value) { m_dataflowEdgesHasBeenSet = true; m_dataflowEdges.push_back(std::move(value)); return *this; } /** *

Smallest amount of time in seconds that you’d like to see for an available * contact. AWS Ground Station will not present you with contacts shorter than this * duration.

*/ inline int GetMinimumViableContactDurationSeconds() const{ return m_minimumViableContactDurationSeconds; } /** *

Smallest amount of time in seconds that you’d like to see for an available * contact. AWS Ground Station will not present you with contacts shorter than this * duration.

*/ inline bool MinimumViableContactDurationSecondsHasBeenSet() const { return m_minimumViableContactDurationSecondsHasBeenSet; } /** *

Smallest amount of time in seconds that you’d like to see for an available * contact. AWS Ground Station will not present you with contacts shorter than this * duration.

*/ inline void SetMinimumViableContactDurationSeconds(int value) { m_minimumViableContactDurationSecondsHasBeenSet = true; m_minimumViableContactDurationSeconds = value; } /** *

Smallest amount of time in seconds that you’d like to see for an available * contact. AWS Ground Station will not present you with contacts shorter than this * duration.

*/ inline UpdateMissionProfileRequest& WithMinimumViableContactDurationSeconds(int value) { SetMinimumViableContactDurationSeconds(value); return *this;} /** *

UUID of a mission profile.

*/ inline const Aws::String& GetMissionProfileId() const{ return m_missionProfileId; } /** *

UUID of a mission profile.

*/ inline bool MissionProfileIdHasBeenSet() const { return m_missionProfileIdHasBeenSet; } /** *

UUID of a mission profile.

*/ inline void SetMissionProfileId(const Aws::String& value) { m_missionProfileIdHasBeenSet = true; m_missionProfileId = value; } /** *

UUID of a mission profile.

*/ inline void SetMissionProfileId(Aws::String&& value) { m_missionProfileIdHasBeenSet = true; m_missionProfileId = std::move(value); } /** *

UUID of a mission profile.

*/ inline void SetMissionProfileId(const char* value) { m_missionProfileIdHasBeenSet = true; m_missionProfileId.assign(value); } /** *

UUID of a mission profile.

*/ inline UpdateMissionProfileRequest& WithMissionProfileId(const Aws::String& value) { SetMissionProfileId(value); return *this;} /** *

UUID of a mission profile.

*/ inline UpdateMissionProfileRequest& WithMissionProfileId(Aws::String&& value) { SetMissionProfileId(std::move(value)); return *this;} /** *

UUID of a mission profile.

*/ inline UpdateMissionProfileRequest& WithMissionProfileId(const char* value) { SetMissionProfileId(value); return *this;} /** *

Name of a mission profile.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

Name of a mission profile.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

Name of a mission profile.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

Name of a mission profile.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

Name of a mission profile.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

Name of a mission profile.

*/ inline UpdateMissionProfileRequest& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

Name of a mission profile.

*/ inline UpdateMissionProfileRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

Name of a mission profile.

*/ inline UpdateMissionProfileRequest& WithName(const char* value) { SetName(value); return *this;} /** *

KMS key to use for encrypting streams.

*/ inline const KmsKey& GetStreamsKmsKey() const{ return m_streamsKmsKey; } /** *

KMS key to use for encrypting streams.

*/ inline bool StreamsKmsKeyHasBeenSet() const { return m_streamsKmsKeyHasBeenSet; } /** *

KMS key to use for encrypting streams.

*/ inline void SetStreamsKmsKey(const KmsKey& value) { m_streamsKmsKeyHasBeenSet = true; m_streamsKmsKey = value; } /** *

KMS key to use for encrypting streams.

*/ inline void SetStreamsKmsKey(KmsKey&& value) { m_streamsKmsKeyHasBeenSet = true; m_streamsKmsKey = std::move(value); } /** *

KMS key to use for encrypting streams.

*/ inline UpdateMissionProfileRequest& WithStreamsKmsKey(const KmsKey& value) { SetStreamsKmsKey(value); return *this;} /** *

KMS key to use for encrypting streams.

*/ inline UpdateMissionProfileRequest& WithStreamsKmsKey(KmsKey&& value) { SetStreamsKmsKey(std::move(value)); return *this;} /** *

Role to use for encrypting streams with KMS key.

*/ inline const Aws::String& GetStreamsKmsRole() const{ return m_streamsKmsRole; } /** *

Role to use for encrypting streams with KMS key.

*/ inline bool StreamsKmsRoleHasBeenSet() const { return m_streamsKmsRoleHasBeenSet; } /** *

Role to use for encrypting streams with KMS key.

*/ inline void SetStreamsKmsRole(const Aws::String& value) { m_streamsKmsRoleHasBeenSet = true; m_streamsKmsRole = value; } /** *

Role to use for encrypting streams with KMS key.

*/ inline void SetStreamsKmsRole(Aws::String&& value) { m_streamsKmsRoleHasBeenSet = true; m_streamsKmsRole = std::move(value); } /** *

Role to use for encrypting streams with KMS key.

*/ inline void SetStreamsKmsRole(const char* value) { m_streamsKmsRoleHasBeenSet = true; m_streamsKmsRole.assign(value); } /** *

Role to use for encrypting streams with KMS key.

*/ inline UpdateMissionProfileRequest& WithStreamsKmsRole(const Aws::String& value) { SetStreamsKmsRole(value); return *this;} /** *

Role to use for encrypting streams with KMS key.

*/ inline UpdateMissionProfileRequest& WithStreamsKmsRole(Aws::String&& value) { SetStreamsKmsRole(std::move(value)); return *this;} /** *

Role to use for encrypting streams with KMS key.

*/ inline UpdateMissionProfileRequest& WithStreamsKmsRole(const char* value) { SetStreamsKmsRole(value); return *this;} /** *

ARN of a tracking Config.

*/ inline const Aws::String& GetTrackingConfigArn() const{ return m_trackingConfigArn; } /** *

ARN of a tracking Config.

*/ inline bool TrackingConfigArnHasBeenSet() const { return m_trackingConfigArnHasBeenSet; } /** *

ARN of a tracking Config.

*/ inline void SetTrackingConfigArn(const Aws::String& value) { m_trackingConfigArnHasBeenSet = true; m_trackingConfigArn = value; } /** *

ARN of a tracking Config.

*/ inline void SetTrackingConfigArn(Aws::String&& value) { m_trackingConfigArnHasBeenSet = true; m_trackingConfigArn = std::move(value); } /** *

ARN of a tracking Config.

*/ inline void SetTrackingConfigArn(const char* value) { m_trackingConfigArnHasBeenSet = true; m_trackingConfigArn.assign(value); } /** *

ARN of a tracking Config.

*/ inline UpdateMissionProfileRequest& WithTrackingConfigArn(const Aws::String& value) { SetTrackingConfigArn(value); return *this;} /** *

ARN of a tracking Config.

*/ inline UpdateMissionProfileRequest& WithTrackingConfigArn(Aws::String&& value) { SetTrackingConfigArn(std::move(value)); return *this;} /** *

ARN of a tracking Config.

*/ inline UpdateMissionProfileRequest& WithTrackingConfigArn(const char* value) { SetTrackingConfigArn(value); return *this;} private: int m_contactPostPassDurationSeconds; bool m_contactPostPassDurationSecondsHasBeenSet = false; int m_contactPrePassDurationSeconds; bool m_contactPrePassDurationSecondsHasBeenSet = false; Aws::Vector> m_dataflowEdges; bool m_dataflowEdgesHasBeenSet = false; int m_minimumViableContactDurationSeconds; bool m_minimumViableContactDurationSecondsHasBeenSet = false; Aws::String m_missionProfileId; bool m_missionProfileIdHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; KmsKey m_streamsKmsKey; bool m_streamsKmsKeyHasBeenSet = false; Aws::String m_streamsKmsRole; bool m_streamsKmsRoleHasBeenSet = false; Aws::String m_trackingConfigArn; bool m_trackingConfigArnHasBeenSet = false; }; } // namespace Model } // namespace GroundStation } // namespace Aws