/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.groundstation.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ReserveContactRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** ** End time of a contact in UTC. *
*/ private java.util.Date endTime; /** ** Name of a ground station. *
*/ private String groundStation; /** ** ARN of a mission profile. *
*/ private String missionProfileArn; /** ** ARN of a satellite *
*/ private String satelliteArn; /** ** Start time of a contact in UTC. *
*/ private java.util.Date startTime; /** ** Tags assigned to a contact. *
*/ private java.util.Map* End time of a contact in UTC. *
* * @param endTime * End time of a contact in UTC. */ public void setEndTime(java.util.Date endTime) { this.endTime = endTime; } /** ** End time of a contact in UTC. *
* * @return End time of a contact in UTC. */ public java.util.Date getEndTime() { return this.endTime; } /** ** End time of a contact in UTC. *
* * @param endTime * End time of a contact in UTC. * @return Returns a reference to this object so that method calls can be chained together. */ public ReserveContactRequest withEndTime(java.util.Date endTime) { setEndTime(endTime); return this; } /** ** Name of a ground station. *
* * @param groundStation * Name of a ground station. */ public void setGroundStation(String groundStation) { this.groundStation = groundStation; } /** ** Name of a ground station. *
* * @return Name of a ground station. */ public String getGroundStation() { return this.groundStation; } /** ** Name of a ground station. *
* * @param groundStation * Name of a ground station. * @return Returns a reference to this object so that method calls can be chained together. */ public ReserveContactRequest withGroundStation(String groundStation) { setGroundStation(groundStation); return this; } /** ** ARN of a mission profile. *
* * @param missionProfileArn * ARN of a mission profile. */ public void setMissionProfileArn(String missionProfileArn) { this.missionProfileArn = missionProfileArn; } /** ** ARN of a mission profile. *
* * @return ARN of a mission profile. */ public String getMissionProfileArn() { return this.missionProfileArn; } /** ** ARN of a mission profile. *
* * @param missionProfileArn * ARN of a mission profile. * @return Returns a reference to this object so that method calls can be chained together. */ public ReserveContactRequest withMissionProfileArn(String missionProfileArn) { setMissionProfileArn(missionProfileArn); return this; } /** ** ARN of a satellite *
* * @param satelliteArn * ARN of a satellite */ public void setSatelliteArn(String satelliteArn) { this.satelliteArn = satelliteArn; } /** ** ARN of a satellite *
* * @return ARN of a satellite */ public String getSatelliteArn() { return this.satelliteArn; } /** ** ARN of a satellite *
* * @param satelliteArn * ARN of a satellite * @return Returns a reference to this object so that method calls can be chained together. */ public ReserveContactRequest withSatelliteArn(String satelliteArn) { setSatelliteArn(satelliteArn); return this; } /** ** Start time of a contact in UTC. *
* * @param startTime * Start time of a contact in UTC. */ public void setStartTime(java.util.Date startTime) { this.startTime = startTime; } /** ** Start time of a contact in UTC. *
* * @return Start time of a contact in UTC. */ public java.util.Date getStartTime() { return this.startTime; } /** ** Start time of a contact in UTC. *
* * @param startTime * Start time of a contact in UTC. * @return Returns a reference to this object so that method calls can be chained together. */ public ReserveContactRequest withStartTime(java.util.Date startTime) { setStartTime(startTime); return this; } /** ** Tags assigned to a contact. *
* * @return Tags assigned to a contact. */ public java.util.Map* Tags assigned to a contact. *
* * @param tags * Tags assigned to a contact. */ public void setTags(java.util.Map* Tags assigned to a contact. *
* * @param tags * Tags assigned to a contact. * @return Returns a reference to this object so that method calls can be chained together. */ public ReserveContactRequest withTags(java.util.Map