Interface CfnApprovalTeamProps

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

@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)", date="2025-07-16T11:43:18.547Z") @Stability(Stable) public interface CfnApprovalTeamProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnApprovalTeam.

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.*;
 CfnApprovalTeamProps cfnApprovalTeamProps = CfnApprovalTeamProps.builder()
         .approvalStrategy(ApprovalStrategyProperty.builder()
                 .mofN(MofNApprovalStrategyProperty.builder()
                         .minApprovalsRequired(123)
                         .build())
                 .build())
         .approvers(List.of(ApproverProperty.builder()
                 .primaryIdentityId("primaryIdentityId")
                 .primaryIdentitySourceArn("primaryIdentitySourceArn")
                 // the properties below are optional
                 .approverId("approverId")
                 .primaryIdentityStatus("primaryIdentityStatus")
                 .responseTime("responseTime")
                 .build()))
         .description("description")
         .name("name")
         .policies(List.of(PolicyProperty.builder()
                 .policyArn("policyArn")
                 .build()))
         // the properties below are optional
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: