All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.amazon.awssdk.eventstreamrpc.GreengrassEventStreamConnectMessage Maven / Gradle / Ivy

There is a newer version: 1.21.0
Show newest version
/**
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0.
 */

/* This file is part of greengrass-ipc project. */

package software.amazon.awssdk.eventstreamrpc;

/**
 * A Greengrass EventStream connection message
 */
public class GreengrassEventStreamConnectMessage {

    private String authToken;

    /**
     * Sets the authorization token in the connect message
     * @param authToken the authorization token to use
     */
    public void setAuthToken(String authToken) {
        this.authToken = authToken;
    }

    /**
     * Returns the authorization token in the connect message
     * @return authorization token in the connect message
     */
    public String getAuthToken() {
        return this.authToken;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy