Interface AssetPublishingCommand

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
AssetPublishingCommand.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:49.750Z") @Stability(Deprecated) @Deprecated public interface AssetPublishingCommand extends software.amazon.jsii.JsiiSerializable
Deprecated.
This class is part of the old API. Use the API based on the CodePipeline class instead
(deprecated) Instructions to publish certain assets.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.pipelines.*;
 AssetPublishingCommand assetPublishingCommand = AssetPublishingCommand.builder()
         .assetId("assetId")
         .assetManifestPath("assetManifestPath")
         .assetPublishingRoleArn("assetPublishingRoleArn")
         .assetSelector("assetSelector")
         .assetType(AssetType.FILE)
         .build();
 

  • Method Details