Package org.cdk8s
Class Include.Builder
- java.lang.Object
-
- org.cdk8s.Include.Builder
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Include
build()
static Include.Builder
create(software.constructs.Construct scope, String id)
Include.Builder
url(String url)
Local file path or URL which includes a Kubernetes YAML manifest.
-
-
-
Method Detail
-
create
@Stability(Stable) public static Include.Builder create(software.constructs.Construct scope, String id)
- Parameters:
scope
- This parameter is required.id
- This parameter is required.- Returns:
- a new instance of
Include.Builder
.
-
url
@Stability(Stable) public Include.Builder url(String url)
Local file path or URL which includes a Kubernetes YAML manifest.Example:
mymanifest.yaml
- Parameters:
url
- Local file path or URL which includes a Kubernetes YAML manifest. This parameter is required.- Returns:
this
-
-