Interface CfnApprovalTeam.ApproverProperty

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

@Stability(Stable) public static interface CfnApprovalTeam.ApproverProperty extends software.amazon.jsii.JsiiSerializable
Contains details for an approver.

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.*;
 ApproverProperty approverProperty = ApproverProperty.builder()
         .primaryIdentityId("primaryIdentityId")
         .primaryIdentitySourceArn("primaryIdentitySourceArn")
         // the properties below are optional
         .approverId("approverId")
         .primaryIdentityStatus("primaryIdentityStatus")
         .responseTime("responseTime")
         .build();
 

See Also: