Interface CfnProject.PullRequestBuildPolicyProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnProject.PullRequestBuildPolicyProperty.Jsii$Proxy
- Enclosing class:
- CfnProject
@Stability(Stable)
public static interface CfnProject.PullRequestBuildPolicyProperty
extends software.amazon.jsii.JsiiSerializable
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.codebuild.*;
 PullRequestBuildPolicyProperty pullRequestBuildPolicyProperty = PullRequestBuildPolicyProperty.builder()
         .requiresCommentApproval("requiresCommentApproval")
         // the properties below are optional
         .approverRoles(List.of("approverRoles"))
         .build();
 - See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnProject.PullRequestBuildPolicyPropertystatic final classAn implementation forCfnProject.PullRequestBuildPolicyProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getRequiresCommentApproval- See Also:
 
- 
getApproverRoles- See Also:
 
- 
builder
 
-