software.amazon.awscdk.cli.lib.alpha.CdkAppDirectoryProps Maven / Gradle / Ivy
Show all versions of cdk-cli-lib-alpha Show documentation
package software.amazon.awscdk.cli.lib.alpha;
/**
* (experimental) Configuration for creating a CLI from an AWS CDK App directory.
*
* Example:
*
*
* // The code below shows an example of how to instantiate this type.
* // The values are placeholders you should change.
* import software.amazon.awscdk.cli.lib.alpha.*;
* CdkAppDirectoryProps cdkAppDirectoryProps = CdkAppDirectoryProps.builder()
* .app("app")
* .output("output")
* .build();
*
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.103.1 (build bef2dea)", date = "2024-10-05T03:43:52.994Z")
@software.amazon.jsii.Jsii(module = software.amazon.awscdk.cli.lib.alpha.$Module.class, fqn = "@aws-cdk/cli-lib-alpha.CdkAppDirectoryProps")
@software.amazon.jsii.Jsii.Proxy(CdkAppDirectoryProps.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public interface CdkAppDirectoryProps extends software.amazon.jsii.JsiiSerializable {
/**
* (experimental) Command-line for executing your app or a cloud assembly directory e.g. "node bin/my-app.js" or "cdk.out".
*
* Default: - read from cdk.json
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable java.lang.String getApp() {
return null;
}
/**
* (experimental) Emits the synthesized cloud assembly into a directory.
*
* Default: cdk.out
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable java.lang.String getOutput() {
return null;
}
/**
* @return a {@link Builder} of {@link CdkAppDirectoryProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link CdkAppDirectoryProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public static final class Builder implements software.amazon.jsii.Builder {
java.lang.String app;
java.lang.String output;
/**
* Sets the value of {@link CdkAppDirectoryProps#getApp}
* @param app Command-line for executing your app or a cloud assembly directory e.g. "node bin/my-app.js" or "cdk.out".
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder app(java.lang.String app) {
this.app = app;
return this;
}
/**
* Sets the value of {@link CdkAppDirectoryProps#getOutput}
* @param output Emits the synthesized cloud assembly into a directory.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder output(java.lang.String output) {
this.output = output;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link CdkAppDirectoryProps}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@Override
public CdkAppDirectoryProps build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link CdkAppDirectoryProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements CdkAppDirectoryProps {
private final java.lang.String app;
private final java.lang.String output;
/**
* 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.app = software.amazon.jsii.Kernel.get(this, "app", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.output = software.amazon.jsii.Kernel.get(this, "output", software.amazon.jsii.NativeType.forClass(java.lang.String.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.app = builder.app;
this.output = builder.output;
}
@Override
public final java.lang.String getApp() {
return this.app;
}
@Override
public final java.lang.String getOutput() {
return this.output;
}
@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.getApp() != null) {
data.set("app", om.valueToTree(this.getApp()));
}
if (this.getOutput() != null) {
data.set("output", om.valueToTree(this.getOutput()));
}
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("@aws-cdk/cli-lib-alpha.CdkAppDirectoryProps"));
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;
CdkAppDirectoryProps.Jsii$Proxy that = (CdkAppDirectoryProps.Jsii$Proxy) o;
if (this.app != null ? !this.app.equals(that.app) : that.app != null) return false;
return this.output != null ? this.output.equals(that.output) : that.output == null;
}
@Override
public final int hashCode() {
int result = this.app != null ? this.app.hashCode() : 0;
result = 31 * result + (this.output != null ? this.output.hashCode() : 0);
return result;
}
}
}