Example usage for com.amazonaws.services.iotdata AWSIotDataClient AWSIotDataClient

List of usage examples for com.amazonaws.services.iotdata AWSIotDataClient AWSIotDataClient

Introduction

In this page you can find the example usage for com.amazonaws.services.iotdata AWSIotDataClient AWSIotDataClient.

Prototype

@Deprecated
public AWSIotDataClient() 

Source Link

Document

Constructs a new client to invoke service methods on AWS IoT Data Plane.

Usage

From source file:io.klerch.alexa.state.handler.AWSIotStateHandler.java

License:Open Source License

public AWSIotStateHandler(final Session session) {
    this(session, new AWSIotClient(), new AWSIotDataClient());
}

From source file:io.klerch.alexa.state.handler.AWSIotStateHandlerIT.java

License:Open Source License

@Override
public AWSIotStateHandler givenHandler() {
    // credentials need to be set in local environment
    // see http://docs.aws.amazon.com/sdk-for-java/v1/developer-guide/credentials.html
    return new AWSIotStateHandler(session, new AWSIotClient(), new AWSIotDataClient());
}