@Generated(value="jsii-pacmak/1.30.0 (build adae23f)", date="2021-06-30T10:00:42.413Z") @Stability(value=Experimental) public enum BundlingOutput extends Enum<BundlingOutput>
| Enum Constant and Description |
|---|
ARCHIVED
(experimental) The bundling output directory includes a single .zip or .jar file which will be used as the final bundle.
|
AUTO_DISCOVER
(experimental) If the bundling output directory contains a single archive file (zip or jar) it will be used as the bundle output as-is.
|
NOT_ARCHIVED
(experimental) The bundling output directory contains one or more files which will be archived and uploaded as a .zip file to S3.
|
| Modifier and Type | Method and Description |
|---|---|
static BundlingOutput |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BundlingOutput[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Experimental) public static final BundlingOutput ARCHIVED
@Stability(value=Experimental) public static final BundlingOutput NOT_ARCHIVED
@Stability(value=Experimental) public static final BundlingOutput AUTO_DISCOVER
Otherwise all the files in the bundling output directory will be zipped.
public static BundlingOutput[] values()
for (BundlingOutput c : BundlingOutput.values()) System.out.println(c);
public static BundlingOutput valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021. All rights reserved.