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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApprovalTeamProps
static final class
An implementation forCfnApprovalTeamProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnApprovalTeamProps.Builder
builder()
Contains details for how an approval team grants approval.Contains details for an approver.Description for the team.getName()
Name of the team.Contains details for a policy.getTags()
Tags that you have added to the specified resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApprovalStrategy
Contains details for how an approval team grants approval.- See Also:
-
getApprovers
Contains details for an approver.- See Also:
-
getDescription
Description for the team.- See Also:
-
getName
Name of the team.- See Also:
-
getPolicies
Contains details for a policy.Policies define what operations a team that define the permissions for team resources.
- See Also:
-
getTags
Tags that you have added to the specified resource.- See Also:
-
builder
- Returns:
- a
CfnApprovalTeamProps.Builder
ofCfnApprovalTeamProps
-