/* * 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.appstream.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 CreateStreamingURLRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *
* The name of the stack. *
*/ private String stackName; /** ** The name of the fleet. *
*/ private String fleetName; /** ** The identifier of the user. *
*/ private String userId; /** ** The name of the application to launch after the session starts. This is the name that you specified as * Name in the Image Assistant. If your fleet is enabled for the Desktop stream view, you can also * choose to launch directly to the operating system desktop. To do so, specify Desktop. *
*/ private String applicationId; /** ** The time that the streaming URL will be valid, in seconds. Specify a value between 1 and 604800 seconds. The * default is 60 seconds. *
*/ private Long validity; /** ** The session context. For more information, see Session Context in the Amazon AppStream 2.0 Administration Guide. *
*/ private String sessionContext; /** ** The name of the stack. *
* * @param stackName * The name of the stack. */ public void setStackName(String stackName) { this.stackName = stackName; } /** ** The name of the stack. *
* * @return The name of the stack. */ public String getStackName() { return this.stackName; } /** ** The name of the stack. *
* * @param stackName * The name of the stack. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateStreamingURLRequest withStackName(String stackName) { setStackName(stackName); return this; } /** ** The name of the fleet. *
* * @param fleetName * The name of the fleet. */ public void setFleetName(String fleetName) { this.fleetName = fleetName; } /** ** The name of the fleet. *
* * @return The name of the fleet. */ public String getFleetName() { return this.fleetName; } /** ** The name of the fleet. *
* * @param fleetName * The name of the fleet. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateStreamingURLRequest withFleetName(String fleetName) { setFleetName(fleetName); return this; } /** ** The identifier of the user. *
* * @param userId * The identifier of the user. */ public void setUserId(String userId) { this.userId = userId; } /** ** The identifier of the user. *
* * @return The identifier of the user. */ public String getUserId() { return this.userId; } /** ** The identifier of the user. *
* * @param userId * The identifier of the user. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateStreamingURLRequest withUserId(String userId) { setUserId(userId); return this; } /** ** The name of the application to launch after the session starts. This is the name that you specified as * Name in the Image Assistant. If your fleet is enabled for the Desktop stream view, you can also * choose to launch directly to the operating system desktop. To do so, specify Desktop. *
* * @param applicationId * The name of the application to launch after the session starts. This is the name that you specified as * Name in the Image Assistant. If your fleet is enabled for the Desktop stream view, you can * also choose to launch directly to the operating system desktop. To do so, specify Desktop. */ public void setApplicationId(String applicationId) { this.applicationId = applicationId; } /** ** The name of the application to launch after the session starts. This is the name that you specified as * Name in the Image Assistant. If your fleet is enabled for the Desktop stream view, you can also * choose to launch directly to the operating system desktop. To do so, specify Desktop. *
* * @return The name of the application to launch after the session starts. This is the name that you specified as * Name in the Image Assistant. If your fleet is enabled for the Desktop stream view, you can * also choose to launch directly to the operating system desktop. To do so, specify Desktop. */ public String getApplicationId() { return this.applicationId; } /** ** The name of the application to launch after the session starts. This is the name that you specified as * Name in the Image Assistant. If your fleet is enabled for the Desktop stream view, you can also * choose to launch directly to the operating system desktop. To do so, specify Desktop. *
* * @param applicationId * The name of the application to launch after the session starts. This is the name that you specified as * Name in the Image Assistant. If your fleet is enabled for the Desktop stream view, you can * also choose to launch directly to the operating system desktop. To do so, specify Desktop. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateStreamingURLRequest withApplicationId(String applicationId) { setApplicationId(applicationId); return this; } /** ** The time that the streaming URL will be valid, in seconds. Specify a value between 1 and 604800 seconds. The * default is 60 seconds. *
* * @param validity * The time that the streaming URL will be valid, in seconds. Specify a value between 1 and 604800 seconds. * The default is 60 seconds. */ public void setValidity(Long validity) { this.validity = validity; } /** ** The time that the streaming URL will be valid, in seconds. Specify a value between 1 and 604800 seconds. The * default is 60 seconds. *
* * @return The time that the streaming URL will be valid, in seconds. Specify a value between 1 and 604800 seconds. * The default is 60 seconds. */ public Long getValidity() { return this.validity; } /** ** The time that the streaming URL will be valid, in seconds. Specify a value between 1 and 604800 seconds. The * default is 60 seconds. *
* * @param validity * The time that the streaming URL will be valid, in seconds. Specify a value between 1 and 604800 seconds. * The default is 60 seconds. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateStreamingURLRequest withValidity(Long validity) { setValidity(validity); return this; } /** ** The session context. For more information, see Session Context in the Amazon AppStream 2.0 Administration Guide. *
* * @param sessionContext * The session context. For more information, see Session Context in the Amazon AppStream 2.0 Administration Guide. */ public void setSessionContext(String sessionContext) { this.sessionContext = sessionContext; } /** ** The session context. For more information, see Session Context in the Amazon AppStream 2.0 Administration Guide. *
* * @return The session context. For more information, see Session Context in the Amazon AppStream 2.0 Administration Guide. */ public String getSessionContext() { return this.sessionContext; } /** ** The session context. For more information, see Session Context in the Amazon AppStream 2.0 Administration Guide. *
* * @param sessionContext * The session context. For more information, see Session Context in the Amazon AppStream 2.0 Administration Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateStreamingURLRequest withSessionContext(String sessionContext) { setSessionContext(sessionContext); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getStackName() != null) sb.append("StackName: ").append(getStackName()).append(","); if (getFleetName() != null) sb.append("FleetName: ").append(getFleetName()).append(","); if (getUserId() != null) sb.append("UserId: ").append(getUserId()).append(","); if (getApplicationId() != null) sb.append("ApplicationId: ").append(getApplicationId()).append(","); if (getValidity() != null) sb.append("Validity: ").append(getValidity()).append(","); if (getSessionContext() != null) sb.append("SessionContext: ").append(getSessionContext()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateStreamingURLRequest == false) return false; CreateStreamingURLRequest other = (CreateStreamingURLRequest) obj; if (other.getStackName() == null ^ this.getStackName() == null) return false; if (other.getStackName() != null && other.getStackName().equals(this.getStackName()) == false) return false; if (other.getFleetName() == null ^ this.getFleetName() == null) return false; if (other.getFleetName() != null && other.getFleetName().equals(this.getFleetName()) == false) return false; if (other.getUserId() == null ^ this.getUserId() == null) return false; if (other.getUserId() != null && other.getUserId().equals(this.getUserId()) == false) return false; if (other.getApplicationId() == null ^ this.getApplicationId() == null) return false; if (other.getApplicationId() != null && other.getApplicationId().equals(this.getApplicationId()) == false) return false; if (other.getValidity() == null ^ this.getValidity() == null) return false; if (other.getValidity() != null && other.getValidity().equals(this.getValidity()) == false) return false; if (other.getSessionContext() == null ^ this.getSessionContext() == null) return false; if (other.getSessionContext() != null && other.getSessionContext().equals(this.getSessionContext()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getStackName() == null) ? 0 : getStackName().hashCode()); hashCode = prime * hashCode + ((getFleetName() == null) ? 0 : getFleetName().hashCode()); hashCode = prime * hashCode + ((getUserId() == null) ? 0 : getUserId().hashCode()); hashCode = prime * hashCode + ((getApplicationId() == null) ? 0 : getApplicationId().hashCode()); hashCode = prime * hashCode + ((getValidity() == null) ? 0 : getValidity().hashCode()); hashCode = prime * hashCode + ((getSessionContext() == null) ? 0 : getSessionContext().hashCode()); return hashCode; } @Override public CreateStreamingURLRequest clone() { return (CreateStreamingURLRequest) super.clone(); } }