Interface CfnPipeline.RuleTypeIdProperty

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

@Stability(Stable) public static interface CfnPipeline.RuleTypeIdProperty extends software.amazon.jsii.JsiiSerializable
The ID for the rule type, which is made up of the combined values for category, owner, provider, and version.

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.*;
 RuleTypeIdProperty ruleTypeIdProperty = RuleTypeIdProperty.builder()
         .category("category")
         .owner("owner")
         .provider("provider")
         .version("version")
         .build();
 

See Also: