com.aliyun.sdk.service.ess20220222.models.CreateLifecycleHookResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-ess20220222 Show documentation
Show all versions of alibabacloud-ess20220222 Show documentation
Alibaba Cloud Ess (20220222) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ess20220222.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link CreateLifecycleHookResponseBody} extends {@link TeaModel}
*
* CreateLifecycleHookResponseBody
*/
public class CreateLifecycleHookResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("LifecycleHookId")
private String lifecycleHookId;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
private CreateLifecycleHookResponseBody(Builder builder) {
this.lifecycleHookId = builder.lifecycleHookId;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static CreateLifecycleHookResponseBody create() {
return builder().build();
}
/**
* @return lifecycleHookId
*/
public String getLifecycleHookId() {
return this.lifecycleHookId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String lifecycleHookId;
private String requestId;
/**
* The ID of the lifecycle hook.
*
* example:
* ash-bp1at9ufhmcf9cmy****
*/
public Builder lifecycleHookId(String lifecycleHookId) {
this.lifecycleHookId = lifecycleHookId;
return this;
}
/**
* The ID of the request.
*
* example:
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public CreateLifecycleHookResponseBody build() {
return new CreateLifecycleHookResponseBody(this);
}
}
}