public class DeployResult
Information about an API that has been deployed.
| Constructor and Description |
|---|
DeployResult(boolean stackCreated,
java.lang.String apiId,
java.lang.String lambdaVersionArn,
java.lang.String keepAliveLambdaArn)
Information about an API that has been deployed.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getApiId()
The ID of the API that was updated or created.
|
java.lang.String |
getKeepAliveLambdaArn()
The ARN of the lambda function that sends keep-alive messages;
|
java.lang.String |
getLambdaVersionArn()
The ARN of the lambda function version.
|
boolean |
getStackCreated()
true if a new stack was created,
|
public DeployResult(boolean stackCreated,
java.lang.String apiId,
java.lang.String lambdaVersionArn,
java.lang.String keepAliveLambdaArn)
Information about an API that has been deployed.
stackCreated - true if a new stack was created, false if an existing stack was updated.apiId - The ID of the API that was updated or created.lambdaVersionArn - The ARN of the lambda function version.keepAliveLambdaArn - The ARN of the lambda function that sends keep-alive messages; null if keep-alive is disabled.public boolean getStackCreated()
true if a new stack was created,
false if an existing stack was updated.
public java.lang.String getApiId()
The ID of the API that was updated or created.
public java.lang.String getLambdaVersionArn()
The ARN of the lambda function version.
public java.lang.String getKeepAliveLambdaArn()
The ARN of the lambda function that sends keep-alive messages;
null if keep-alive is disabled.