Class RemoveUnusedShapes.Config
- java.lang.Object
-
- software.amazon.smithy.build.transforms.RemoveUnusedShapes.Config
-
- Enclosing class:
- RemoveUnusedShapes
public static final class RemoveUnusedShapes.Config extends java.lang.Object
removeUnusedShapes
configuration settings.
-
-
Constructor Summary
Constructors Constructor Description Config()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Set<java.lang.String>
getExportTagged()
Gets the set of tags that are used to export shapes.void
setExportTagged(java.util.Set<java.lang.String> exportByTags)
You can export shapes that are not connected to any service shape by applying specific tags to the shape and adding the list of export tags as an argument to the transformer.
-
-
-
Method Detail
-
setExportTagged
public void setExportTagged(java.util.Set<java.lang.String> exportByTags)
You can export shapes that are not connected to any service shape by applying specific tags to the shape and adding the list of export tags as an argument to the transformer.- Parameters:
exportByTags
- Tags that cause shapes to be exported.
-
getExportTagged
public java.util.Set<java.lang.String> getExportTagged()
Gets the set of tags that are used to export shapes.- Returns:
- the tags that are used to export shapes.
-
-