com.aliyun.iot20180120.models.GetEdgeInstanceMessageRoutingRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iot20180120 Show documentation
Show all versions of iot20180120 Show documentation
Alibaba Cloud IoT Platform (20180120) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iot20180120.models;
import com.aliyun.tea.*;
public class GetEdgeInstanceMessageRoutingRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 8jKxIuMVT9rX********
*/
@NameInMap("InstanceId")
public String instanceId;
/**
* example:
* iot_instc_pu****_c*-v64********
*/
@NameInMap("IotInstanceId")
public String iotInstanceId;
/**
* This parameter is required.
*
* example:
* 123456
*/
@NameInMap("RouteId")
public Long routeId;
public static GetEdgeInstanceMessageRoutingRequest build(java.util.Map map) throws Exception {
GetEdgeInstanceMessageRoutingRequest self = new GetEdgeInstanceMessageRoutingRequest();
return TeaModel.build(map, self);
}
public GetEdgeInstanceMessageRoutingRequest setInstanceId(String instanceId) {
this.instanceId = instanceId;
return this;
}
public String getInstanceId() {
return this.instanceId;
}
public GetEdgeInstanceMessageRoutingRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
public GetEdgeInstanceMessageRoutingRequest setRouteId(Long routeId) {
this.routeId = routeId;
return this;
}
public Long getRouteId() {
return this.routeId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy