我正在尝试使用适用于 java 的 aws sdk(而不是独立的 aws iot java sdk)创建规则。
到目前为止,我已经完成了这些
public class Application extends Controller {
static AWSIotClient awsIotClient;
private static void init() {
AWSCredentials credentials = null;
try {
credentials = new ProfileCredentialsProvider().getCredentials();
} catch (Exception e) {
throw new AmazonClientException(
"Cannot load the credentials from the credential profiles file. " +
"Please make sure that your credentials file is at the correct " +
"location (~/.aws/credentials), and is in valid format.",
e);
}
awsIotClient = new AWSIotClient(credentials);
Region usEast1 = Region.getRegion(Regions.US_EAST_1);
awsIotClient.setRegion(usEast1);
Logger.info("Creds init");
}
public static Result index() {
init();
CreateTopicRuleRequest another_test = new CreateTopicRuleRequest();
another_test.setRuleName("test");
TopicRulePayload topicRulePayload = new TopicRulePayload();
topicRulePayload.setDescription("A test rule");
topicRulePayload.setSql("SELECT state.reported.turbineStatus FROM '$aws/things/turbine1/shadow/update/accepted' WHERE state.reported.turbineStatus=true");
topicRulePayload.setActions(); // stuck here
another_test.setTopicRulePayload(topicRulePayload);
CreateTopicRuleResult test = awsIotClient.createTopicRule(another_test);
return ok(index.render("iot"));
}
}
在上面的代码中,我陷入了困境topicRulePayload.setActions();
我该如何设置动作呢?我查看了它的源代码,发现它正在使用集合。