/* * 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; /** *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class DescribeContactResult extends com.amazonaws.AmazonWebServiceResult* UUID of a contact. *
*/ private String contactId; /** ** Status of a contact. *
*/ private String contactStatus; /** ** List describing source and destination details for each dataflow edge. *
*/ private java.util.List* End time of a contact in UTC. *
*/ private java.util.Date endTime; /** ** Error message for a contact. *
*/ private String errorMessage; /** ** Ground station for a contact. *
*/ private String groundStation; /** ** Maximum elevation angle of a contact. *
*/ private Elevation maximumElevation; /** ** ARN of a mission profile. *
*/ private String missionProfileArn; /** ** Amount of time after a contact ends that you’d like to receive a CloudWatch event indicating the pass has * finished. *
*/ private java.util.Date postPassEndTime; /** ** Amount of time prior to contact start you’d like to receive a CloudWatch event indicating an upcoming pass. *
*/ private java.util.Date prePassStartTime; /** ** Region of a contact. *
*/ private String region; /** ** 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* UUID of a contact. *
* * @param contactId * UUID of a contact. */ public void setContactId(String contactId) { this.contactId = contactId; } /** ** UUID of a contact. *
* * @return UUID of a contact. */ public String getContactId() { return this.contactId; } /** ** UUID of a contact. *
* * @param contactId * UUID of a contact. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeContactResult withContactId(String contactId) { setContactId(contactId); return this; } /** ** Status of a contact. *
* * @param contactStatus * Status of a contact. * @see ContactStatus */ public void setContactStatus(String contactStatus) { this.contactStatus = contactStatus; } /** ** Status of a contact. *
* * @return Status of a contact. * @see ContactStatus */ public String getContactStatus() { return this.contactStatus; } /** ** Status of a contact. *
* * @param contactStatus * Status of a contact. * @return Returns a reference to this object so that method calls can be chained together. * @see ContactStatus */ public DescribeContactResult withContactStatus(String contactStatus) { setContactStatus(contactStatus); return this; } /** ** Status of a contact. *
* * @param contactStatus * Status of a contact. * @return Returns a reference to this object so that method calls can be chained together. * @see ContactStatus */ public DescribeContactResult withContactStatus(ContactStatus contactStatus) { this.contactStatus = contactStatus.toString(); return this; } /** ** List describing source and destination details for each dataflow edge. *
* * @return List describing source and destination details for each dataflow edge. */ public java.util.List* List describing source and destination details for each dataflow edge. *
* * @param dataflowList * List describing source and destination details for each dataflow edge. */ public void setDataflowList(java.util.Collection* List describing source and destination details for each dataflow edge. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setDataflowList(java.util.Collection)} or {@link #withDataflowList(java.util.Collection)} if you want to * override the existing values. *
* * @param dataflowList * List describing source and destination details for each dataflow edge. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeContactResult withDataflowList(DataflowDetail... dataflowList) { if (this.dataflowList == null) { setDataflowList(new java.util.ArrayList* List describing source and destination details for each dataflow edge. *
* * @param dataflowList * List describing source and destination details for each dataflow edge. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeContactResult withDataflowList(java.util.Collection* 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 DescribeContactResult withEndTime(java.util.Date endTime) { setEndTime(endTime); return this; } /** ** Error message for a contact. *
* * @param errorMessage * Error message for a contact. */ public void setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; } /** ** Error message for a contact. *
* * @return Error message for a contact. */ public String getErrorMessage() { return this.errorMessage; } /** ** Error message for a contact. *
* * @param errorMessage * Error message for a contact. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeContactResult withErrorMessage(String errorMessage) { setErrorMessage(errorMessage); return this; } /** ** Ground station for a contact. *
* * @param groundStation * Ground station for a contact. */ public void setGroundStation(String groundStation) { this.groundStation = groundStation; } /** ** Ground station for a contact. *
* * @return Ground station for a contact. */ public String getGroundStation() { return this.groundStation; } /** ** Ground station for a contact. *
* * @param groundStation * Ground station for a contact. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeContactResult withGroundStation(String groundStation) { setGroundStation(groundStation); return this; } /** ** Maximum elevation angle of a contact. *
* * @param maximumElevation * Maximum elevation angle of a contact. */ public void setMaximumElevation(Elevation maximumElevation) { this.maximumElevation = maximumElevation; } /** ** Maximum elevation angle of a contact. *
* * @return Maximum elevation angle of a contact. */ public Elevation getMaximumElevation() { return this.maximumElevation; } /** ** Maximum elevation angle of a contact. *
* * @param maximumElevation * Maximum elevation angle of a contact. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeContactResult withMaximumElevation(Elevation maximumElevation) { setMaximumElevation(maximumElevation); 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 DescribeContactResult withMissionProfileArn(String missionProfileArn) { setMissionProfileArn(missionProfileArn); return this; } /** ** Amount of time after a contact ends that you’d like to receive a CloudWatch event indicating the pass has * finished. *
* * @param postPassEndTime * Amount of time after a contact ends that you’d like to receive a CloudWatch event indicating the pass has * finished. */ public void setPostPassEndTime(java.util.Date postPassEndTime) { this.postPassEndTime = postPassEndTime; } /** ** Amount of time after a contact ends that you’d like to receive a CloudWatch event indicating the pass has * finished. *
* * @return Amount of time after a contact ends that you’d like to receive a CloudWatch event indicating the pass has * finished. */ public java.util.Date getPostPassEndTime() { return this.postPassEndTime; } /** ** Amount of time after a contact ends that you’d like to receive a CloudWatch event indicating the pass has * finished. *
* * @param postPassEndTime * Amount of time after a contact ends that you’d like to receive a CloudWatch event indicating the pass has * finished. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeContactResult withPostPassEndTime(java.util.Date postPassEndTime) { setPostPassEndTime(postPassEndTime); return this; } /** ** Amount of time prior to contact start you’d like to receive a CloudWatch event indicating an upcoming pass. *
* * @param prePassStartTime * Amount of time prior to contact start you’d like to receive a CloudWatch event indicating an upcoming * pass. */ public void setPrePassStartTime(java.util.Date prePassStartTime) { this.prePassStartTime = prePassStartTime; } /** ** Amount of time prior to contact start you’d like to receive a CloudWatch event indicating an upcoming pass. *
* * @return Amount of time prior to contact start you’d like to receive a CloudWatch event indicating an upcoming * pass. */ public java.util.Date getPrePassStartTime() { return this.prePassStartTime; } /** ** Amount of time prior to contact start you’d like to receive a CloudWatch event indicating an upcoming pass. *
* * @param prePassStartTime * Amount of time prior to contact start you’d like to receive a CloudWatch event indicating an upcoming * pass. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeContactResult withPrePassStartTime(java.util.Date prePassStartTime) { setPrePassStartTime(prePassStartTime); return this; } /** ** Region of a contact. *
* * @param region * Region of a contact. */ public void setRegion(String region) { this.region = region; } /** ** Region of a contact. *
* * @return Region of a contact. */ public String getRegion() { return this.region; } /** ** Region of a contact. *
* * @param region * Region of a contact. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeContactResult withRegion(String region) { setRegion(region); 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 DescribeContactResult 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 DescribeContactResult 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 DescribeContactResult withTags(java.util.Map