Interface CfnPipeline.ActionTypeIdProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPipeline.ActionTypeIdProperty.Jsii$Proxy
Enclosing class:
CfnPipeline

@Stability(Stable) public static interface CfnPipeline.ActionTypeIdProperty extends software.amazon.jsii.JsiiSerializable
Represents information about an action type.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.codepipeline.*;
 ActionTypeIdProperty actionTypeIdProperty = ActionTypeIdProperty.builder()
         .category("category")
         .owner("owner")
         .provider("provider")
         .version("version")
         .build();
 

See Also: