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

bxt.command.cloudformation.ValidatedTemplate Maven / Gradle / Ivy

package bxt.command.cloudformation;

public final class ValidatedTemplate extends NamedTemplate {
    ValidatedTemplate(String stackName, String templateBody) {
        super(stackName, templateBody);
    }

    public static ValidatedTemplate fromNamedTemplate(NamedTemplate namedTemplate) {
        return new ValidatedTemplate(namedTemplate.getStackName(), namedTemplate.getTemplateBody());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy