software.aws.awsprototypingsdk.pdknag.AwsPrototypingChecks Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pdk-nag Show documentation
Show all versions of pdk-nag Show documentation
@aws-prototyping-sdk/pdk-nag
The newest version!
package software.aws.awsprototypingsdk.pdknag;
/**
* Check best practices for prototypes.
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.82.0 (build 2d2ddd7)", date = "2023-08-24T22:55:30.275Z")
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@software.amazon.jsii.Jsii(module = software.aws.awsprototypingsdk.pdknag.$Module.class, fqn = "@aws-prototyping-sdk/pdk-nag.AwsPrototypingChecks")
public class AwsPrototypingChecks extends io.github.cdklabs.cdknag.NagPack {
protected AwsPrototypingChecks(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
}
protected AwsPrototypingChecks(final software.amazon.jsii.JsiiObject.InitializationMode initializationMode) {
super(initializationMode);
}
/**
* @param props
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public AwsPrototypingChecks(final @org.jetbrains.annotations.Nullable io.github.cdklabs.cdknag.NagPackProps props) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
software.amazon.jsii.JsiiEngine.getInstance().createNewObject(this, new Object[] { props });
}
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public AwsPrototypingChecks() {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
software.amazon.jsii.JsiiEngine.getInstance().createNewObject(this);
}
/**
* Check if CfnResource and apply rules.
*
* @param node This parameter is required.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@Override
public void visit(final @org.jetbrains.annotations.NotNull software.constructs.IConstruct node) {
software.amazon.jsii.Kernel.call(this, "visit", software.amazon.jsii.NativeType.VOID, new Object[] { java.util.Objects.requireNonNull(node, "node is required") });
}
}