/* * 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.connectwisdom.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* Information about the session. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class SessionData implements Serializable, Cloneable, StructuredPojo { /** ** The description of the session. *
*/ private String description; /** ** The configuration information for the session integration. *
*/ private SessionIntegrationConfiguration integrationConfiguration; /** ** The name of the session. *
*/ private String name; /** ** The Amazon Resource Name (ARN) of the session. *
*/ private String sessionArn; /** ** The identifier of the session. *
*/ private String sessionId; /** ** The tags used to organize, track, or control access for this resource. *
*/ private java.util.Map* The description of the session. *
* * @param description * The description of the session. */ public void setDescription(String description) { this.description = description; } /** ** The description of the session. *
* * @return The description of the session. */ public String getDescription() { return this.description; } /** ** The description of the session. *
* * @param description * The description of the session. * @return Returns a reference to this object so that method calls can be chained together. */ public SessionData withDescription(String description) { setDescription(description); return this; } /** ** The configuration information for the session integration. *
* * @param integrationConfiguration * The configuration information for the session integration. */ public void setIntegrationConfiguration(SessionIntegrationConfiguration integrationConfiguration) { this.integrationConfiguration = integrationConfiguration; } /** ** The configuration information for the session integration. *
* * @return The configuration information for the session integration. */ public SessionIntegrationConfiguration getIntegrationConfiguration() { return this.integrationConfiguration; } /** ** The configuration information for the session integration. *
* * @param integrationConfiguration * The configuration information for the session integration. * @return Returns a reference to this object so that method calls can be chained together. */ public SessionData withIntegrationConfiguration(SessionIntegrationConfiguration integrationConfiguration) { setIntegrationConfiguration(integrationConfiguration); return this; } /** ** The name of the session. *
* * @param name * The name of the session. */ public void setName(String name) { this.name = name; } /** ** The name of the session. *
* * @return The name of the session. */ public String getName() { return this.name; } /** ** The name of the session. *
* * @param name * The name of the session. * @return Returns a reference to this object so that method calls can be chained together. */ public SessionData withName(String name) { setName(name); return this; } /** ** The Amazon Resource Name (ARN) of the session. *
* * @param sessionArn * The Amazon Resource Name (ARN) of the session. */ public void setSessionArn(String sessionArn) { this.sessionArn = sessionArn; } /** ** The Amazon Resource Name (ARN) of the session. *
* * @return The Amazon Resource Name (ARN) of the session. */ public String getSessionArn() { return this.sessionArn; } /** ** The Amazon Resource Name (ARN) of the session. *
* * @param sessionArn * The Amazon Resource Name (ARN) of the session. * @return Returns a reference to this object so that method calls can be chained together. */ public SessionData withSessionArn(String sessionArn) { setSessionArn(sessionArn); return this; } /** ** The identifier of the session. *
* * @param sessionId * The identifier of the session. */ public void setSessionId(String sessionId) { this.sessionId = sessionId; } /** ** The identifier of the session. *
* * @return The identifier of the session. */ public String getSessionId() { return this.sessionId; } /** ** The identifier of the session. *
* * @param sessionId * The identifier of the session. * @return Returns a reference to this object so that method calls can be chained together. */ public SessionData withSessionId(String sessionId) { setSessionId(sessionId); return this; } /** ** The tags used to organize, track, or control access for this resource. *
* * @return The tags used to organize, track, or control access for this resource. */ public java.util.Map* The tags used to organize, track, or control access for this resource. *
* * @param tags * The tags used to organize, track, or control access for this resource. */ public void setTags(java.util.Map* The tags used to organize, track, or control access for this resource. *
* * @param tags * The tags used to organize, track, or control access for this resource. * @return Returns a reference to this object so that method calls can be chained together. */ public SessionData withTags(java.util.Map