All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.amazon.awscdk.IDependable Maven / Gradle / Ivy

There is a newer version: 0.36.1
Show newest version
package software.amazon.awscdk;

/**
 * A set of constructs that can be depended upon.
 * 
 * This interface can be used to take an (ordering) dependency on a set of
 * constructs. An ordering dependency implies that the resources represented by
 * those constructs are deployed before the resources depending ON them are
 * deployed.
 */
@javax.annotation.Generated(value = "jsii-pacmak/0.10.5 (build 46bc9b0)", date = "2019-05-06T20:49:40.952Z")
public interface IDependable extends software.amazon.jsii.JsiiSerializable {
    /**
     * The set of constructs that form the root of this dependable.
     * 
     * All resources under all returned constructs are included in the ordering
     * dependency.
     */
    java.util.List getDependencyRoots();

    /**
     * A proxy class which represents a concrete javascript instance of this type.
     */
    final static class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements software.amazon.awscdk.IDependable {
        protected Jsii$Proxy(final software.amazon.jsii.JsiiObject.InitializationMode mode) {
            super(mode);
        }

        /**
         * The set of constructs that form the root of this dependable.
         * 
         * All resources under all returned constructs are included in the ordering
         * dependency.
         */
        @Override
        public java.util.List getDependencyRoots() {
            return this.jsiiGet("dependencyRoots", java.util.List.class);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy