Interface ComponentDocumentStep

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

@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)", date="2025-11-20T23:37:34.442Z") @Stability(Experimental) public interface ComponentDocumentStep extends software.amazon.jsii.JsiiSerializable
(experimental) The step to run in a specific phase of the image build, which defines the step to execute to customize or test the instance.

Example:

 ComponentDocumentStep step = ComponentDocumentStep.builder()
         .name("configure-app")
         .action(ComponentAction.CREATE_FILE)
         .inputs(ComponentStepInputs.fromObject(Map.of(
                 "path", "/etc/myapp/config.json",
                 "content", "{\"env\": \"production\"}")))
         .build();