Interface ComponentDocumentStep

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

@Generated(value="jsii-pacmak/1.125.0 (build fdbe357)", date="2026-01-08T14:57:17.769Z") @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();