com.pepperize.cdk.apigateway_swagger_ui.SwaggerUiProps Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdk-apigateway-swagger-ui Show documentation
Show all versions of cdk-apigateway-swagger-ui Show documentation
Add SwaggerUI to your AWS Apigateway RestApi
package com.pepperize.cdk.apigateway_swagger_ui;
/**
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.99.0 (build 8f757e4)", date = "2024-06-12T06:52:18.095Z")
@software.amazon.jsii.Jsii(module = com.pepperize.cdk.apigateway_swagger_ui.$Module.class, fqn = "@pepperize/cdk-apigateway-swagger-ui.SwaggerUiProps")
@software.amazon.jsii.Jsii.Proxy(SwaggerUiProps.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public interface SwaggerUiProps extends software.amazon.jsii.JsiiSerializable {
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@org.jetbrains.annotations.NotNull software.amazon.awscdk.services.apigateway.IResource getResource();
/**
* @return a {@link Builder} of {@link SwaggerUiProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link SwaggerUiProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public static final class Builder implements software.amazon.jsii.Builder {
software.amazon.awscdk.services.apigateway.IResource resource;
/**
* Sets the value of {@link SwaggerUiProps#getResource}
* @param resource the value to be set. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder resource(software.amazon.awscdk.services.apigateway.IResource resource) {
this.resource = resource;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link SwaggerUiProps}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@Override
public SwaggerUiProps build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link SwaggerUiProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements SwaggerUiProps {
private final software.amazon.awscdk.services.apigateway.IResource resource;
/**
* 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.resource = software.amazon.jsii.Kernel.get(this, "resource", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.apigateway.IResource.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.resource = java.util.Objects.requireNonNull(builder.resource, "resource is required");
}
@Override
public final software.amazon.awscdk.services.apigateway.IResource getResource() {
return this.resource;
}
@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();
data.set("resource", om.valueToTree(this.getResource()));
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("@pepperize/cdk-apigateway-swagger-ui.SwaggerUiProps"));
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;
SwaggerUiProps.Jsii$Proxy that = (SwaggerUiProps.Jsii$Proxy) o;
return this.resource.equals(that.resource);
}
@Override
public final int hashCode() {
int result = this.resource.hashCode();
return result;
}
}
}