Class ElasticBeanstalkDeployAction
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.codepipeline.Action
software.amazon.awscdk.services.codepipeline.actions.Action
software.amazon.awscdk.services.codepipeline.actions.ElasticBeanstalkDeployAction
- All Implemented Interfaces:
IAction
,software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-15T21:09:16.493Z")
@Stability(Stable)
public class ElasticBeanstalkDeployAction
extends Action
CodePipeline action to deploy an AWS ElasticBeanstalk Application.
Example:
Artifact sourceOutput = new Artifact(); Bucket targetBucket = new Bucket(this, "MyBucket"); Pipeline pipeline = new Pipeline(this, "MyPipeline"); ElasticBeanstalkDeployAction deployAction = ElasticBeanstalkDeployAction.Builder.create() .actionName("ElasticBeanstalkDeploy") .input(sourceOutput) .environmentName("envName") .applicationName("appName") .build(); IStage deployStage = pipeline.addStage(StageOptions.builder() .stageName("Deploy") .actions(List.of(deployAction)) .build());
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
A fluent builder forElasticBeanstalkDeployAction
.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.amazon.awscdk.services.codepipeline.IAction
IAction.Jsii$Default
-
Constructor Summary
ModifierConstructorDescriptionprotected
ElasticBeanstalkDeployAction
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
ElasticBeanstalkDeployAction
(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionprotected ActionConfig
bound
(software.constructs.Construct _scope, IStage _stage, ActionBindOptions options) This is a renamed version of theIAction.bind
method.Methods inherited from class software.amazon.awscdk.services.codepipeline.actions.Action
getProvidedActionProperties
Methods inherited from class software.amazon.awscdk.services.codepipeline.Action
bind, getActionProperties, onStateChange, onStateChange, onStateChange, variableExpression
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
ElasticBeanstalkDeployAction
protected ElasticBeanstalkDeployAction(software.amazon.jsii.JsiiObjectRef objRef) -
ElasticBeanstalkDeployAction
protected ElasticBeanstalkDeployAction(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
ElasticBeanstalkDeployAction
@Stability(Stable) public ElasticBeanstalkDeployAction(@NotNull ElasticBeanstalkDeployActionProps props) - Parameters:
props
- This parameter is required.
-
-
Method Details
-
bound
@Stability(Stable) @NotNull protected ActionConfig bound(@NotNull software.constructs.Construct _scope, @NotNull IStage _stage, @NotNull ActionBindOptions options) This is a renamed version of theIAction.bind
method.
-