Interface CfnBlueprintMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBlueprintMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-08-10T14:51:20.138Z")
@Stability(Stable)
public interface CfnBlueprintMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnBlueprintPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.glue.*;
CfnBlueprintMixinProps cfnBlueprintMixinProps = CfnBlueprintMixinProps.builder()
.blueprintLocation("blueprintLocation")
.description("description")
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBlueprintMixinPropsstatic final classAn implementation forCfnBlueprintMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBlueprintLocation
Specifies a path in Amazon S3 where the blueprint is published.- See Also:
-
getDescription
A description of the blueprint.- See Also:
-
getName
The name of the blueprint.- See Also:
-
getTags
The tags to be applied to this blueprint.- See Also:
-
builder
- Returns:
- a
CfnBlueprintMixinProps.BuilderofCfnBlueprintMixinProps
-