Class ServiceCatalogDeployActionBeta1

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.ServiceCatalogDeployActionBeta1
All Implemented Interfaces:
IAction, software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:48.494Z") @Stability(Stable) public class ServiceCatalogDeployActionBeta1 extends Action
CodePipeline action to connect to an existing ServiceCatalog product.

Note: this class is still experimental, and may have breaking changes in the future!

Example:

 Artifact cdkBuildOutput = new Artifact();
 ServiceCatalogDeployActionBeta1 serviceCatalogDeployAction = ServiceCatalogDeployActionBeta1.Builder.create()
         .actionName("ServiceCatalogDeploy")
         .templatePath(cdkBuildOutput.atPath("Sample.template.json"))
         .productVersionName("Version - " + Date.getNow().getToString())
         .productVersionDescription("This is a version from the pipeline with a new description.")
         .productId("prod-XXXXXXXX")
         .build();
 
  • Constructor Details

    • ServiceCatalogDeployActionBeta1

      protected ServiceCatalogDeployActionBeta1(software.amazon.jsii.JsiiObjectRef objRef)
    • ServiceCatalogDeployActionBeta1

      protected ServiceCatalogDeployActionBeta1(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • ServiceCatalogDeployActionBeta1

      @Stability(Stable) public ServiceCatalogDeployActionBeta1(@NotNull ServiceCatalogDeployActionBeta1Props props)
      Parameters:
      props - This parameter is required.
  • Method Details

    • bound

      @Stability(Stable) @NotNull protected ActionConfig bound(@NotNull Construct _scope, @NotNull IStage _stage, @NotNull ActionBindOptions options)
      This is a renamed version of the
      invalid @link
      IAction.bind
      method.

      Specified by:
      bound in class Action
      Parameters:
      _scope - This parameter is required.
      _stage - This parameter is required.
      options - This parameter is required.