
com.pulumi.aws.apprunner.outputs.ServiceHealthCheckConfiguration Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.apprunner.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ServiceHealthCheckConfiguration {
/**
* @return Number of consecutive checks that must succeed before App Runner decides that the service is healthy. Defaults to 1. Minimum value of 1. Maximum value of 20.
*
*/
private @Nullable Integer healthyThreshold;
/**
* @return Time interval, in seconds, between health checks. Defaults to 5. Minimum value of 1. Maximum value of 20.
*
*/
private @Nullable Integer interval;
/**
* @return URL to send requests to for health checks. Defaults to `/`. Minimum length of 0. Maximum length of 51200.
*
*/
private @Nullable String path;
/**
* @return IP protocol that App Runner uses to perform health checks for your service. Valid values: `TCP`, `HTTP`. Defaults to `TCP`. If you set protocol to `HTTP`, App Runner sends health check requests to the HTTP path specified by `path`.
*
*/
private @Nullable String protocol;
/**
* @return Time, in seconds, to wait for a health check response before deciding it failed. Defaults to 2. Minimum value of 1. Maximum value of 20.
*
*/
private @Nullable Integer timeout;
/**
* @return Number of consecutive checks that must fail before App Runner decides that the service is unhealthy. Defaults to 5. Minimum value of 1. Maximum value of 20.
*
*/
private @Nullable Integer unhealthyThreshold;
private ServiceHealthCheckConfiguration() {}
/**
* @return Number of consecutive checks that must succeed before App Runner decides that the service is healthy. Defaults to 1. Minimum value of 1. Maximum value of 20.
*
*/
public Optional healthyThreshold() {
return Optional.ofNullable(this.healthyThreshold);
}
/**
* @return Time interval, in seconds, between health checks. Defaults to 5. Minimum value of 1. Maximum value of 20.
*
*/
public Optional interval() {
return Optional.ofNullable(this.interval);
}
/**
* @return URL to send requests to for health checks. Defaults to `/`. Minimum length of 0. Maximum length of 51200.
*
*/
public Optional path() {
return Optional.ofNullable(this.path);
}
/**
* @return IP protocol that App Runner uses to perform health checks for your service. Valid values: `TCP`, `HTTP`. Defaults to `TCP`. If you set protocol to `HTTP`, App Runner sends health check requests to the HTTP path specified by `path`.
*
*/
public Optional protocol() {
return Optional.ofNullable(this.protocol);
}
/**
* @return Time, in seconds, to wait for a health check response before deciding it failed. Defaults to 2. Minimum value of 1. Maximum value of 20.
*
*/
public Optional timeout() {
return Optional.ofNullable(this.timeout);
}
/**
* @return Number of consecutive checks that must fail before App Runner decides that the service is unhealthy. Defaults to 5. Minimum value of 1. Maximum value of 20.
*
*/
public Optional unhealthyThreshold() {
return Optional.ofNullable(this.unhealthyThreshold);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ServiceHealthCheckConfiguration defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Integer healthyThreshold;
private @Nullable Integer interval;
private @Nullable String path;
private @Nullable String protocol;
private @Nullable Integer timeout;
private @Nullable Integer unhealthyThreshold;
public Builder() {}
public Builder(ServiceHealthCheckConfiguration defaults) {
Objects.requireNonNull(defaults);
this.healthyThreshold = defaults.healthyThreshold;
this.interval = defaults.interval;
this.path = defaults.path;
this.protocol = defaults.protocol;
this.timeout = defaults.timeout;
this.unhealthyThreshold = defaults.unhealthyThreshold;
}
@CustomType.Setter
public Builder healthyThreshold(@Nullable Integer healthyThreshold) {
this.healthyThreshold = healthyThreshold;
return this;
}
@CustomType.Setter
public Builder interval(@Nullable Integer interval) {
this.interval = interval;
return this;
}
@CustomType.Setter
public Builder path(@Nullable String path) {
this.path = path;
return this;
}
@CustomType.Setter
public Builder protocol(@Nullable String protocol) {
this.protocol = protocol;
return this;
}
@CustomType.Setter
public Builder timeout(@Nullable Integer timeout) {
this.timeout = timeout;
return this;
}
@CustomType.Setter
public Builder unhealthyThreshold(@Nullable Integer unhealthyThreshold) {
this.unhealthyThreshold = unhealthyThreshold;
return this;
}
public ServiceHealthCheckConfiguration build() {
final var _resultValue = new ServiceHealthCheckConfiguration();
_resultValue.healthyThreshold = healthyThreshold;
_resultValue.interval = interval;
_resultValue.path = path;
_resultValue.protocol = protocol;
_resultValue.timeout = timeout;
_resultValue.unhealthyThreshold = unhealthyThreshold;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy