software.aws.awsprototypingsdk.openapigateway.ApiGatewayIntegrationTlsConfig Maven / Gradle / Ivy
Show all versions of open-api-gateway Show documentation
package software.aws.awsprototypingsdk.openapigateway;
/**
* (experimental) Specifies the TLS configuration for an integration.
*
* @see https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-extensions-integration-tls-config.html
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.82.0 (build 2d2ddd7)", date = "2023-08-15T05:38:04.561Z")
@software.amazon.jsii.Jsii(module = software.aws.awsprototypingsdk.openapigateway.$Module.class, fqn = "@aws-prototyping-sdk/open-api-gateway.ApiGatewayIntegrationTlsConfig")
@software.amazon.jsii.Jsii.Proxy(ApiGatewayIntegrationTlsConfig.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public interface ApiGatewayIntegrationTlsConfig extends software.amazon.jsii.JsiiSerializable {
/**
* (experimental) Specifies whether or not API Gateway skips verification that the certificate for an integration endpoint is issued by a supported certificate authority.
*
* This isn’t recommended, but it enables you to use certificates that are
* signed by private certificate authorities, or certificates that are self-signed. If enabled, API Gateway still
* performs basic certificate validation, which includes checking the certificate's expiration date, hostname, and
* presence of a root certificate authority. Supported only for HTTP and HTTP_PROXY integrations.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable java.lang.Boolean getInsecureSkipVerification() {
return null;
}
/**
* @return a {@link Builder} of {@link ApiGatewayIntegrationTlsConfig}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link ApiGatewayIntegrationTlsConfig}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public static final class Builder implements software.amazon.jsii.Builder {
java.lang.Boolean insecureSkipVerification;
/**
* Sets the value of {@link ApiGatewayIntegrationTlsConfig#getInsecureSkipVerification}
* @param insecureSkipVerification Specifies whether or not API Gateway skips verification that the certificate for an integration endpoint is issued by a supported certificate authority.
* This isn’t recommended, but it enables you to use certificates that are
* signed by private certificate authorities, or certificates that are self-signed. If enabled, API Gateway still
* performs basic certificate validation, which includes checking the certificate's expiration date, hostname, and
* presence of a root certificate authority. Supported only for HTTP and HTTP_PROXY integrations.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder insecureSkipVerification(java.lang.Boolean insecureSkipVerification) {
this.insecureSkipVerification = insecureSkipVerification;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link ApiGatewayIntegrationTlsConfig}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@Override
public ApiGatewayIntegrationTlsConfig build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link ApiGatewayIntegrationTlsConfig}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements ApiGatewayIntegrationTlsConfig {
private final java.lang.Boolean insecureSkipVerification;
/**
* Constructor that initializes the object based on values retrieved from the JsiiObject.
* @param objRef Reference to the JSII managed object.
*/
protected Jsii$Proxy(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
this.insecureSkipVerification = software.amazon.jsii.Kernel.get(this, "insecureSkipVerification", software.amazon.jsii.NativeType.forClass(java.lang.Boolean.class));
}
/**
* Constructor that initializes the object based on literal property values passed by the {@link Builder}.
*/
protected Jsii$Proxy(final Builder builder) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
this.insecureSkipVerification = builder.insecureSkipVerification;
}
@Override
public final java.lang.Boolean getInsecureSkipVerification() {
return this.insecureSkipVerification;
}
@Override
@software.amazon.jsii.Internal
public com.fasterxml.jackson.databind.JsonNode $jsii$toJson() {
final com.fasterxml.jackson.databind.ObjectMapper om = software.amazon.jsii.JsiiObjectMapper.INSTANCE;
final com.fasterxml.jackson.databind.node.ObjectNode data = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
if (this.getInsecureSkipVerification() != null) {
data.set("insecureSkipVerification", om.valueToTree(this.getInsecureSkipVerification()));
}
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("@aws-prototyping-sdk/open-api-gateway.ApiGatewayIntegrationTlsConfig"));
struct.set("data", data);
final com.fasterxml.jackson.databind.node.ObjectNode obj = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
obj.set("$jsii.struct", struct);
return obj;
}
@Override
public final boolean equals(final Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ApiGatewayIntegrationTlsConfig.Jsii$Proxy that = (ApiGatewayIntegrationTlsConfig.Jsii$Proxy) o;
return this.insecureSkipVerification != null ? this.insecureSkipVerification.equals(that.insecureSkipVerification) : that.insecureSkipVerification == null;
}
@Override
public final int hashCode() {
int result = this.insecureSkipVerification != null ? this.insecureSkipVerification.hashCode() : 0;
return result;
}
}
}