Interface ExtensionProps
- All Superinterfaces:
ExtensionOptions
,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ExtensionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:03.817Z")
@Stability(Stable)
public interface ExtensionProps
extends software.amazon.jsii.JsiiSerializable, ExtensionOptions
Properties for the Extension construct.
Example:
Function fn; Extension.Builder.create(this, "MyExtension") .actions(List.of( Action.Builder.create() .actionPoints(List.of(ActionPoint.ON_DEPLOYMENT_START)) .eventDestination(new LambdaDestination(fn)) .build())) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forExtensionProps
static final class
An implementation forExtensionProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic ExtensionProps.Builder
builder()
The actions for the extension.Methods inherited from interface software.amazon.awscdk.services.appconfig.ExtensionOptions
getDescription, getExtensionName, getLatestVersionNumber, getParameters
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getActions
The actions for the extension. -
builder
- Returns:
- a
ExtensionProps.Builder
ofExtensionProps
-