Interface CfnApprovalTeam.ApprovalStrategyProperty

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

@Stability(Stable) public static interface CfnApprovalTeam.ApprovalStrategyProperty extends software.amazon.jsii.JsiiSerializable
Strategy for how an approval team grants approval.

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.mpa.*;
 ApprovalStrategyProperty approvalStrategyProperty = ApprovalStrategyProperty.builder()
         .mofN(MofNApprovalStrategyProperty.builder()
                 .minApprovalsRequired(123)
                 .build())
         .build();
 

See Also: