com.aliyun.datalake20200710.models.CancelQueryRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datalake20200710 Show documentation
Show all versions of datalake20200710 Show documentation
Alibaba Cloud DataLake (20200710) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.datalake20200710.models;
import com.aliyun.tea.*;
public class CancelQueryRequest extends TeaModel {
@NameInMap("QueryId")
public String queryId;
public static CancelQueryRequest build(java.util.Map map) throws Exception {
CancelQueryRequest self = new CancelQueryRequest();
return TeaModel.build(map, self);
}
public CancelQueryRequest setQueryId(String queryId) {
this.queryId = queryId;
return this;
}
public String getQueryId() {
return this.queryId;
}
}